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

/external/v8/src/
H A Dobjects.cc7743 static bool IsCodeEquivalent(Code* code, Code* recompiled) { argument
7744 if (code->instruction_size() != recompiled->instruction_size()) return false;
7746 ByteArray* recompiled_relocation = recompiled->relocation_info();
7756 void SharedFunctionInfo::EnableDeoptimizationSupport(Code* recompiled) { argument
7760 if (IsCodeEquivalent(code, recompiled)) {
7761 // Copy the deoptimization data from the recompiled code.
7762 code->set_deoptimization_data(recompiled->deoptimization_data());
7765 // TODO(3025757): In case the recompiled isn't equivalent to the
7769 set_code(recompiled);

Completed in 51 milliseconds