/openjdk7/hotspot/src/share/vm/opto/ |
H A D | rootnode.cpp | 63 HaltNode::HaltNode( Node *ctrl, Node *frameptr ) : Node(TypeFunc::Parms) { argument 65 init_req(TypeFunc::Control, ctrl );
|
H A D | locknode.hpp | 95 FastLockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) { argument 96 init_req(0,ctrl); 120 FastUnlockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) { argument 121 init_req(0,ctrl);
|
H A D | connode.hpp | 488 CastP2XNode( Node *ctrl, Node *n ) : Node(ctrl, n) {} argument
|
H A D | idealKit.hpp | 152 Node* ctrl() { return _cvstate->in(TypeFunc::Control); } function in class:IdealKit 153 void set_ctrl(Node* ctrl) { _cvstate->set_req(TypeFunc::Control, ctrl); } argument
|
H A D | cfgnode.hpp | 105 JProjNode( Node* ctrl, uint idx ) : ProjNode(ctrl,idx) {} argument 238 CProjNode( Node *ctrl, uint idx ) : ProjNode(ctrl,idx) {} argument 396 PCTableNode( Node *ctrl, Node *idx, uint size ) : MultiBranchNode(2), _size(size) { argument 398 init_req(0, ctrl); 453 CatchNode( Node *ctrl, Node *idx, uint size ) : PCTableNode(ctrl,idx,size){ argument 516 NeverBranchNode( Node *ctrl ) : MultiBranchNode(1) { init_req(0,ctrl); } [all...] |
H A D | loopPredicate.cpp | 118 // ctrl ctrl 308 Node* ctrl = iff->in(0); local 317 loop_phase->register_new_node(opq, ctrl); 318 loop_phase->register_new_node(bol, ctrl); 524 void clone_nodes(Node* n, Node* ctrl) { argument 534 _phase->register_new_node(n_cl, ctrl); 573 Node* clone(Node* n, Node* ctrl) { argument 574 assert(ctrl->is_CFG(), "must be"); 577 clone_nodes(n, ctrl); 645 rc_predicate(IdealLoopTree *loop, Node* ctrl, int scale, Node* offset, Node* init, Node* limit, Node* stride, Node* range, bool upper) argument 802 Node* ctrl = new_predicate_proj->in(0)->as_If()->in(0); local 850 Node *ctrl = lower_bound_proj->in(0)->as_If()->in(0); local [all...] |
H A D | parseHelper.cpp | 180 Node* ctrl= control(); local 187 set_control(ctrl); // Then Don't Do It, just fall into the normal checking
|
H A D | doCall.cpp | 642 Node* ctrl = _gvn.transform( new (C) CatchProjNode(catch_, i+1,handler_bci)); local 644 if (ctrl == top()) continue; 645 set_control(ctrl); 649 Node *ex_oop = _gvn.transform(new (C) CreateExNode(extypes->at(i), ctrl, i_o));
|
H A D | ifnode.cpp | 681 Node* ctrl = in(0); local 685 if (ctrl != NULL && ctrl->is_Proj() && ctrl->outcnt() == 1 && 686 ctrl->in(0)->is_If() && 687 ctrl->in(0)->outcnt() == 2 && 688 ctrl->in(0)->in(1)->is_Bool() && 689 ctrl->in(0)->in(1)->in(1)->Opcode() == Op_CmpI && 690 ctrl->in(0)->in(1)->in(1)->in(2)->is_Con() && 691 ctrl [all...] |
H A D | superword.hpp | 278 Node* ctrl(Node* n) const { return _phase->has_ctrl(n) ? _phase->get_ctrl(n) : n; } function in class:SuperWord 281 bool in_bb(Node* n) { return n != NULL && n->outcnt() > 0 && ctrl(n) == _bb; }
|
H A D | callnode.cpp | 1145 Node *ctrl, Node *mem, Node *abio, 1154 init_req( TypeFunc::Control , ctrl ); 1379 static Node *next_control(Node *ctrl) { argument 1380 if (ctrl == NULL) 1383 if (ctrl->is_Region()) { 1384 RegionNode *r = ctrl->as_Region(); 1389 ctrl = n; 1390 } else if (ctrl->is_Proj()) { 1391 Node *in0 = ctrl->in(0); 1393 ctrl 1144 AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio, Node *size, Node *klass_node, Node *initial_test) argument 1407 find_matching_unlock(const Node* ctrl, LockNode* lock, GrowableArray<AbstractLockNode*> &lock_ops) argument 1431 Node *ctrl = next_control(unlock->in(0)); local 1583 Node *ctrl = next_control(in(0)); local [all...] |
H A D | callnode.hpp | 772 AllocateNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio, 832 AllocateArrayNode(Compile* C, const TypeFunc *atype, Node *ctrl, Node *mem, Node *abio, argument 836 : AllocateNode(C, atype, ctrl, mem, abio, size, klass_node, 881 bool find_matching_unlock(const Node* ctrl, LockNode* lock,
|
H A D | graphKit.hpp | 808 Node* load_String_offset(Node* ctrl, Node* str); 809 Node* load_String_length(Node* ctrl, Node* str); 810 Node* load_String_value(Node* ctrl, Node* str); 811 void store_String_offset(Node* ctrl, Node* str, Node* value); 812 void store_String_length(Node* ctrl, Node* str, Node* value); 813 void store_String_value(Node* ctrl, Node* str, Node* value); 816 IfNode* create_and_map_if(Node* ctrl, Node* tst, float prob, float cnt) { argument 817 IfNode* iff = new (C) IfNode(ctrl, tst, prob, cnt);// New IfNode's 824 IfNode* create_and_xform_if(Node* ctrl, Node* tst, float prob, float cnt) { argument 825 IfNode* iff = new (C) IfNode(ctrl, ts [all...] |
H A D | loopnode.hpp | 412 // Returns true if ctrl is executed on every complete iteration 413 bool dominates_backedge(Node* ctrl); 595 Node *find_non_split_ctrl( Node *ctrl ) const { 596 if (ctrl != NULL) { 597 if (ctrl->is_MultiBranch()) { 598 ctrl = ctrl->in(0); 600 assert(ctrl->is_CFG(), "CFG"); 602 return ctrl; 613 void set_ctrl( Node *n, Node *ctrl ) { 620 set_ctrl_and_loop(Node* n, Node* ctrl) argument [all...] |
H A D | loopopts.cpp | 1757 // still dominate the same set of control nodes, that the ctrl() relation 2367 Node *ctrl = get_ctrl(iff->in(1)); local 2368 if (ctrl->is_top()) return false; // Dead test on live IF. 2370 if( loop->is_member(get_loop(ctrl)) &&
|
H A D | machnode.hpp | 539 MachNullCheckNode( Node *ctrl, Node *memop, uint vidx ) : MachBranchNode(), _vidx(vidx) { argument 541 add_req(ctrl);
|
H A D | memnode.hpp | 195 bool is_instance_field_load_with_local_phi(Node* ctrl); 782 ClearArrayNode( Node *ctrl, Node *arymem, Node *word_cnt, Node *base ) argument 783 : Node(ctrl,arymem,word_cnt,base) {
|
H A D | node.cpp | 1071 Node* Node::find_exact_control(Node* ctrl) { argument 1072 if (ctrl == NULL && this->is_Region()) 1073 ctrl = this->as_Region()->is_copy(); 1075 if (ctrl != NULL && ctrl->is_CatchProj()) { 1076 if (ctrl->as_CatchProj()->_con == CatchProjNode::fall_through_index) 1077 ctrl = ctrl->in(0); 1078 if (ctrl != NULL && !ctrl [all...] |
H A D | stringopts.cpp | 188 void add_control(Node* ctrl) { argument 189 assert(!_control.contains(ctrl), "only push once"); 190 _control.push(ctrl); 380 Node* ctrl = worklist.pop(); local 381 if (StringConcat::is_SB_toString(ctrl)) { 382 CallStaticJavaNode* csj = ctrl->as_CallStaticJava(); 385 if (ctrl->in(0) != NULL && !_visited.test_set(ctrl->in(0)->_idx)) { 386 worklist.push(ctrl->in(0)); 388 if (ctrl [all...] |
H A D | loopTransform.cpp | 280 Node *ctrl = phase->get_ctrl(test->in(1)); local 281 if (ctrl->is_top()) 286 if( !is_member(phase->get_loop(ctrl)) && 1168 Node *ctrl = loop_head->in(LoopNode::EntryControl); local 1177 assert( ctrl->Opcode() == Op_IfTrue || ctrl->Opcode() == Op_IfFalse, "" ); 1178 Node *iff = ctrl->in(0); 1302 register_new_node( adj_limit, ctrl ); // adjust amount 1304 register_new_node( adj_cmp, ctrl ); 1306 register_new_node( adj_bool, ctrl ); 1482 dominates_backedge(Node* ctrl) argument 1756 Node *ctrl = cl->in(LoopNode::EntryControl); local 1987 Node *ctrl = get_ctrl(main_limit); local [all...] |
H A D | loopnode.cpp | 525 // Update ctrl. 1083 assert(n_ctrl == NULL || n_ctrl == region, "ctrl parameter must be region"); 2458 if( has_ctrl(n) ) { // We have control; verify has loop or ctrl 2574 Node *ctrl = cl->in(LoopNode::EntryControl); local 2575 assert( ctrl->Opcode() == Op_IfTrue || ctrl->Opcode() == Op_IfFalse, "" ); 2576 Node *iff = ctrl->in(0); 3685 // any MultiBranch ctrl node), so apply a similar transform to 3703 tty->print_cr("*** BROKEN CTRL ACCESSOR! _nodes[k] is %p, ctrl is %p",
|
H A D | macro.cpp | 103 Node* PhaseMacroExpand::opt_bits_test(Node* ctrl, Node* region, int edge, Node* word, int mask, int bits, bool return_fast_path) { argument 112 IfNode* iff = new (C) IfNode( ctrl, bol, PROB_MIN, COUNT_UNKNOWN ); 131 void PhaseMacroExpand::copy_predefined_input_for_runtime_call(Node * ctrl, CallNode* oldcall, CallNode* call) { argument 133 call->init_req( TypeFunc::Control, ctrl ); 1090 Node* ctrl = alloc->in(TypeFunc::Control); local 1097 assert(ctrl != NULL, "must have control"); 1128 Node *toobig_false = ctrl; 1138 IfNode *toobig_iff = new (C) IfNode(ctrl, initial_slow_test, PROB_MIN, COUNT_UNKNOWN); 1147 toobig_false = ctrl; 1174 Node *eden_end = make_load(ctrl, me 1335 Node* ctrl = new (C) ProjNode(init,TypeFunc::Control); local 1980 Node* ctrl = alock->in(TypeFunc::Control); local 2037 Node* ctrl = lock->in(TypeFunc::Control); local 2274 Node* ctrl = unlock->in(TypeFunc::Control); local [all...] |
H A D | superword.cpp | 2140 Node *ctrl = cl->in(LoopNode::EntryControl); local 2141 if (!ctrl->is_IfTrue() && !ctrl->is_IfFalse()) return NULL; 2142 Node *iffm = ctrl->in(0);
|
/openjdk7/jdk/src/share/native/com/sun/media/sound/ |
H A D | PortMixer.c | 172 jobject ctrl = NULL; local 202 ctrl = (*creator->env)->NewObject(creator->env, creator->boolCtrlClass, creator->boolCtrlConstructor, 204 if (!ctrl) { 205 ERROR0("PORT_NewBooleanControl: ctrl is NULL\n"); 211 return (void*) ctrl; 216 jobject ctrl = NULL; local 253 ctrl = (*creator->env)->NewObject(creator->env, creator->compCtrlClass, creator->compCtrlConstructor, 255 if (!ctrl) { 256 ERROR0("PORT_NewCompoundControl: ctrl is NULL\n"); 262 return (void*) ctrl; 268 jobject ctrl = NULL; local [all...] |
/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | QuadCurve2D.java | 1060 double c1, double ctrl, double c2) { 1070 vals[j++] = c1*u*u + 2*ctrl*t*u + c2*t*t; 1056 evalQuadratic(double vals[], int num, boolean include0, boolean include1, double inflect[], double c1, double ctrl, double c2) argument
|