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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DScopeDesc.java44 private boolean reexecute; field in class:ScopeDesc
54 private ScopeDesc(NMethod code, int decodeOffset, List objects, boolean reexecute) { argument
58 this.reexecute = reexecute;
72 public ScopeDesc(NMethod code, int decodeOffset, int objectDecodeOffset, boolean reexecute) { argument
76 this.reexecute = reexecute;
93 public boolean getReexecute() { return reexecute;}
156 tty.println(" reexecute=" + reexecute);
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.hpp63 ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool return_oop);
68 ScopeDesc(const nmethod* code, int decode_offset, bool reexecute, bool return_oop);
H A DscopeDesc.cpp34 ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool return_oop) { argument
38 _reexecute = reexecute;
43 ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset, bool reexecute, bool return_oop) { argument
47 _reexecute = reexecute;
57 _reexecute = false; //reexecute only applies to the first scope
185 st->print_cr(" reexecute: %s", should_reexecute() ? "true" : "false");
H A DdebugInfoRec.hpp103 bool reexecute,
H A DdebugInfoRec.cpp285 bool reexecute,
300 last_pd->set_should_reexecute(reexecute);
282 describe_scope(int pc_offset, ciMethod* method, int bci, bool reexecute, bool is_method_handle_invoke, bool return_oop, DebugToken* locals, DebugToken* expressions, DebugToken* monitors) argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp229 //Whether we should reexecute this bytecode for deopt
240 // reexecute allowed only for the topmost frame
241 bool reexecute = topmost ? should_reexecute() : false; local
243 recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1334 // If the callee got deoptimized then reexecute in the interpreter
1335 BasicBlock *reexecute = function()->CreateBlock("reexecute"); local
1339 reexecute, call_completed);
1341 builder()->SetInsertPoint(reexecute);

Completed in 66 milliseconds