Searched refs:do_field_access (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp230 do_field_access(true, false);
233 do_field_access(true, true);
236 do_field_access(false, false);
239 do_field_access(false, true);
241 void do_field_access(bool is_get, bool is_field);
H A DsharkInliner.cpp126 return do_field_access(true, false);
129 return do_field_access(true, true);
132 return do_field_access(false, true);
134 bool do_field_access(bool is_get, bool is_field);
695 bool SharkInlinerHelper::do_field_access(bool is_get, bool is_field) { function in class:SharkInlinerHelper
H A DsharkBlock.cpp1015 void SharkBlock::do_field_access(bool is_get, bool is_field) { function in class:SharkBlock
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp500 void do_getstatic() { do_field_access(true, false); }
501 void do_getfield () { do_field_access(true, true); }
502 void do_putstatic() { do_field_access(false, false); }
503 void do_putfield () { do_field_access(false, true); }
506 void do_field_access(bool is_get, bool is_field);
H A Dparse3.cpp79 void Parse::do_field_access(bool is_get, bool is_field) { function in class:Parse

Completed in 53 milliseconds