Searched defs:basic_plus_adr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp45 Node* basic_plus_adr(Node* base, int offset) { function in class:PhaseMacroExpand
46 return (offset == 0)? base: basic_plus_adr(base, MakeConX(offset));
48 Node* basic_plus_adr(Node* base, Node* ptr, int offset) { function in class:PhaseMacroExpand
49 return (offset == 0)? ptr: basic_plus_adr(base, ptr, MakeConX(offset));
51 Node* basic_plus_adr(Node* base, Node* offset) { function in class:PhaseMacroExpand
52 return basic_plus_adr(base, base, offset);
54 Node* basic_plus_adr(Node* base, Node* ptr, Node* offset) { function in class:PhaseMacroExpand
H A DgraphKit.hpp298 Node* basic_plus_adr(Node* base, Node* ptr, intptr_t offset) { function in class:GraphKit
299 return basic_plus_adr(base, ptr, MakeConX(offset));
301 Node* basic_plus_adr(Node* base, intptr_t offset) { function in class:GraphKit
302 return basic_plus_adr(base, base, MakeConX(offset));
305 Node* basic_plus_adr(Node* base, Node* offset) { function in class:GraphKit
306 return basic_plus_adr(base, base, offset);
308 Node* basic_plus_adr(Node* base, Node* ptr, Node* offset);
H A DgraphKit.cpp495 Node* adr = basic_plus_adr(top(), jthread, in_bytes(JavaThread::should_post_on_exceptions_flag_offset()));
596 Node *adr = basic_plus_adr(ex_node, ex_node, offset);
1108 //------------------------------basic_plus_adr---------------------------------
1109 Node* GraphKit::basic_plus_adr(Node* base, Node* ptr, Node* offset) { function in class:GraphKit
1137 Node* k_adr = basic_plus_adr(obj, oopDesc::klass_offset_in_bytes());
1147 Node *r_adr = basic_plus_adr(array, arrayOopDesc::length_offset_in_bytes());
1600 return basic_plus_adr(ary, offset);
1604 Node* base = basic_plus_adr(ary, header);
1622 return basic_plus_adr(ary, base, scale);
2346 Node *p1 = basic_plus_adr( superklas
[all...]

Completed in 43 milliseconds