Searched refs:deopt (Results 1 - 12 of 12) sorted by relevance
/third_party/node/deps/v8/tools/ |
H A D | gen-inlining-tests.py | 29 var deopt = undefined; // either true or false 75 if (deopt) %DeoptimizeFunction(f); 81 if (deopt) %DeoptimizeFunction(f); 87 if (deopt) %DeoptimizeFunction(f); 95 if (deopt) %DeoptimizeFunction(f); 137 if (deopt) %DeoptimizeFunction(f); 143 if (deopt) %DeoptimizeFunction(f); 153 if (deopt) %DeoptimizeFunction(f); 159 if (deopt) %DeoptimizeFunction(f); 235 deopt, # deop [all...] |
/third_party/node/deps/v8/tools/profview/ |
H A D | profile-utils.js | 577 if (code.deopt) { 578 if (code.deopt.bailoutType === "deopt-lazy" || code.deopt.bailoutType === "deopt-eager" || code.deopt.bailoutType === "deopt-lazy") { 581 if (code.deopt.tm >= timeStart && code.deopt.tm <= timeEnd) { 582 switch (code.deopt [all...] |
H A D | profview.js | 1051 if (code.deopt) { 1053 let x = timestampToX(code.deopt.tm); 1230 let deopt = instances[i].deopt; 1233 textCell.appendChild(document.createTextNode(deopt.posText)); 1237 document.createTextNode("Reason: " + deopt.reason));
|
/third_party/node/deps/v8/src/objects/ |
H A D | allocation-site-inl.h | 153 void AllocationSite::set_deopt_dependent_code(bool deopt) { in set_deopt_dependent_code() argument 155 set_pretenure_data(DeoptDependentCodeBit::update(value, deopt), in set_deopt_dependent_code()
|
H A D | allocation-site.h | 97 inline void set_deopt_dependent_code(bool deopt);
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | exceptions.js | 130 /^--deopt-every-n-times.*/,
|
/third_party/python/Tools/scripts/ |
H A D | generate_opcode_h.py | 137 for opt, deopt in sorted(deoptcodes.items()): 138 iobj.write(f" [{opt}] = {deopt},\n")
|
/third_party/node/deps/v8/src/compiler/ |
H A D | scheduler.cc | 588 void ConnectDeoptimize(Node* deopt) { in ConnectDeoptimize() argument 589 Node* deoptimize_control = NodeProperties::GetControlInput(deopt); in ConnectDeoptimize() 591 TraceConnect(deopt, deoptimize_block, nullptr); in ConnectDeoptimize() 592 schedule_->AddDeoptimize(deoptimize_block, deopt); in ConnectDeoptimize()
|
/third_party/python/Include/internal/ |
H A D | pycore_code.h | 273 uint64_t deopt; member
|
/third_party/python/Python/ |
H A D | specialize.c | 65 ADD_STAT_TO_DICT(res, deopt); in stats_to_dict() 154 PRINT_STAT(i, specialization.deopt); in print_spec_stats()
|
H A D | ceval.c | 5715 STAT_INC(opcode, deopt);
|
/third_party/node/deps/v8/src/heap/ |
H A D | heap.cc | 1183 // Currently we just need to deopt when we make a state transition to in MakePretenureDecision() 1203 bool deopt = false; in DigestPretenuringFeedback() local 1215 deopt = MakePretenureDecision(site, current_decision, ratio, in DigestPretenuringFeedback() 1229 return deopt; in DigestPretenuringFeedback() 1235 bool deopt = true; in PretenureAllocationSiteManually() local 1241 deopt = false; in PretenureAllocationSiteManually() 1253 return deopt; in PretenureAllocationSiteManually() 3141 // allocation sites may be the cause for that. We have to deopt all in EvaluateOldSpaceLocalPretenuring()
|
Completed in 31 milliseconds