Searched refs:needs_patching (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp1669 bool needs_patching = x->needs_patching(); local
1675 if (needs_patching) {
1693 if (is_volatile || needs_patching) {
1710 if (PrintNotLoaded && needs_patching) {
1717 (needs_patching ||
1724 if (needs_patching) {
1743 needs_patching, local
1747 if (is_volatile && !needs_patching) {
1750 LIR_PatchCode patch_code = needs_patching
1766 bool needs_patching = x->needs_patching(); local
[all...]
H A Dc1_ValueMap.hpp151 kill_field(x->field(), x->needs_patching());
H A Dc1_Instruction.hpp711 ValueStack* state_before, bool needs_patching)
720 set_flag(NeedsPatchingFlag, needs_patching);
733 bool needs_patching() const { return check_flag(NeedsPatchingFlag); }
738 bool is_init_point() const { return is_static() && (needs_patching() || !_field->holder()->is_initialized()); }
750 virtual bool can_trap() const { return needs_null_check() || needs_patching(); }
759 ValueStack* state_before, bool needs_patching)
760 : AccessField(obj, offset, field, is_static, state_before, needs_patching)
767 HASHING2(LoadField, !needs_patching() && !field()->is_volatile(), obj()->subst(), offset()) // cannot be eliminated if needs patching or if volatile
778 ValueStack* state_before, bool needs_patching)
779 : AccessField(obj, offset, field, is_static, state_before, needs_patching)
[all...]
H A Dc1_GraphBuilder.cpp1501 const bool needs_patching = !holder->is_loaded() ||
1506 if (!holder->is_initialized() || needs_patching) {
1526 const int offset = !needs_patching ? field->offset() : -1;
1553 state_before, needs_patching)));
1562 append(new StoreField(append(obj), offset, field, val, true, state_before, needs_patching));
1611 LoadField* load = new LoadField(obj, offset, field, false, state_before, needs_patching);
1612 Value replacement = !needs_patching ? _memory->load(load) : load;
1628 StoreField* store = new StoreField(obj, offset, field, val, false, state_before, needs_patching);
1629 if (!needs_patching) store = _memory->store(store);
H A Dc1_Canonicalizer.cpp217 x->state_before(), x->needs_patching()));
H A Dc1_Optimizer.cpp877 if (last_explicit_null_check_obj() == obj && !x->needs_patching()) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp1355 bool needs_patching = (patch_code != lir_patch_none); local
1362 if (needs_patching) {
1371 if (needs_patching) {
1501 bool needs_patching = (patch_code != lir_patch_none); local
1508 if (needs_patching) {
1517 if (needs_patching) {

Completed in 3853 milliseconds