Searched defs:tf (Results 26 - 29 of 29) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp4199 const TypeFunc* tf = C->last_tf(method); // check cache local
4200 if (tf != NULL) return tf; // The hit rate here is almost 50%.
4208 tf = TypeFunc::make(domain, range);
4209 C->set_last_tf(method, tf); // fill cache
4210 return tf;
H A Dcompile.hpp486 const TypeFunc* tf() const { assert(_tf!=NULL, ""); return _tf; } function in class:Compile
487 void init_tf(const TypeFunc* tf) { assert(_tf==NULL, ""); _tf = tf; } argument
759 void set_last_tf(ciMethod* m, const TypeFunc* tf) { argument
760 assert(m != NULL || tf == NULL, "");
762 _last_tf = tf;
777 JVMState* build_start_state(StartNode* start, const TypeFunc* tf);
941 void Generate_Compiled_To_Interpreter_Graph(const TypeFunc *tf, address interpreter_entry);
945 void Generate_Interpreter_To_Compiled_Graph(const TypeFunc *tf);
H A DgraphKit.cpp2007 const TypeFunc* tf = TypeFunc::make(dest_method); local
2008 int nargs = tf->_domain->_cnt - TypeFunc::Parms;
2010 const Type *targ = tf->_domain->field_at(j + TypeFunc::Parms);
2879 const TypeFunc *tf = LockNode::lock_type(); local
2880 LockNode *lock = new (C) LockNode(C, tf);
2933 const TypeFunc *tf = OptoRuntime::complete_monitor_exit_Type(); local
2934 UnlockNode *unlock = new (C) UnlockNode(C, tf);
3629 const TypeFunc *tf = OptoRuntime::g1_wb_pre_Type(); local
3630 __ make_leaf_call(tf, CAST_FROM_FN_PTR(address, SharedRuntime::g1_wb_pre), "g1_wb_pre", pre_val, tls);
3649 const TypeFunc* tf) {
3642 g1_mark_card(IdealKit& ideal, Node* card_adr, Node* oop_store, uint oop_alias_idx, Node* index, Node* index_adr, Node* buffer, const TypeFunc* tf) argument
3710 const TypeFunc *tf = OptoRuntime::g1_wb_post_Type(); local
[all...]
H A Dlibrary_call.cpp2923 const TypeFunc* tf = OptoRuntime::void_long_Type(); local
2925 Node* time = make_runtime_call(RC_LEAF, tf, funcAddr, funcName, no_memory_effects);
3668 const TypeFunc* tf = TypeFunc::make(method); local
3672 slow_call = new(C) CallStaticJavaNode(tf,
3686 slow_call = new(C) CallDynamicJavaNode(tf,
3691 slow_call = new(C) CallStaticJavaNode(tf,

Completed in 71 milliseconds

12