[factory] Remove dead code in NewOffHeapTrampolineFor
.. and restructure a bit. The V8_EXTERNAL_CODE_SPACE case is fully handled in the initial code section (thus dead code further down can be removed). Also, no need to guard both through an #ifdef and an `if`. Change-Id: Ibc56bc5922908e7a73f26a2799ac29287336cb3a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4136721 Auto-Submit: Jakob Linke <jgruber@chromium.org> Reviewed-by: Dominik Inführ <dinfuehr@chromium.org> Commit-Queue: Dominik Inführ <dinfuehr@chromium.org> Cr-Commit-Position: refs/heads/main@{#85137}
This commit is contained in:
parent
3172b30fe4
commit
302892032c
@ -2504,7 +2504,6 @@ Handle<CodeT> Factory::NewOffHeapTrampolineFor(Handle<CodeT> code,
|
|||||||
CHECK(Builtins::IsIsolateIndependentBuiltin(*code));
|
CHECK(Builtins::IsIsolateIndependentBuiltin(*code));
|
||||||
|
|
||||||
#ifdef V8_EXTERNAL_CODE_SPACE
|
#ifdef V8_EXTERNAL_CODE_SPACE
|
||||||
if (V8_EXTERNAL_CODE_SPACE_BOOL) {
|
|
||||||
const int no_flags = 0;
|
const int no_flags = 0;
|
||||||
Handle<CodeDataContainer> code_data_container =
|
Handle<CodeDataContainer> code_data_container =
|
||||||
NewCodeDataContainer(no_flags, AllocationType::kOld);
|
NewCodeDataContainer(no_flags, AllocationType::kOld);
|
||||||
@ -2518,9 +2517,7 @@ Handle<CodeT> Factory::NewOffHeapTrampolineFor(Handle<CodeT> code,
|
|||||||
code_data_container->set_code_entry_point(isolate(),
|
code_data_container->set_code_entry_point(isolate(),
|
||||||
code->code_entry_point());
|
code->code_entry_point());
|
||||||
return Handle<CodeT>::cast(code_data_container);
|
return Handle<CodeT>::cast(code_data_container);
|
||||||
}
|
#else
|
||||||
#endif // V8_EXTERNAL_CODE_SPACE
|
|
||||||
|
|
||||||
bool generate_jump_to_instruction_stream =
|
bool generate_jump_to_instruction_stream =
|
||||||
Builtins::CodeObjectIsExecutable(code->builtin_id());
|
Builtins::CodeObjectIsExecutable(code->builtin_id());
|
||||||
Handle<Code> result = Builtins::GenerateOffHeapTrampolineFor(
|
Handle<Code> result = Builtins::GenerateOffHeapTrampolineFor(
|
||||||
@ -2569,20 +2566,10 @@ Handle<CodeT> Factory::NewOffHeapTrampolineFor(Handle<CodeT> code,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
raw_result.set_relocation_info(canonical_reloc_info);
|
raw_result.set_relocation_info(canonical_reloc_info);
|
||||||
if (V8_EXTERNAL_CODE_SPACE_BOOL) {
|
|
||||||
CodeDataContainer code_data_container =
|
|
||||||
raw_result.code_data_container(kAcquireLoad);
|
|
||||||
// Updating flags (in particular is_off_heap_trampoline one) might change
|
|
||||||
// the value of the instruction start, so update it here.
|
|
||||||
code_data_container.UpdateCodeEntryPoint(isolate(), raw_result);
|
|
||||||
// Also update flag values cached on the code data container.
|
|
||||||
code_data_container.initialize_flags(
|
|
||||||
raw_code.kind(), raw_code.builtin_id(), raw_code.is_turbofanned(),
|
|
||||||
set_is_off_heap_trampoline);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ToCodeT(result, isolate());
|
return ToCodeT(result, isolate());
|
||||||
|
#endif // V8_EXTERNAL_CODE_SPACE
|
||||||
}
|
}
|
||||||
|
|
||||||
Handle<BytecodeArray> Factory::CopyBytecodeArray(Handle<BytecodeArray> source) {
|
Handle<BytecodeArray> Factory::CopyBytecodeArray(Handle<BytecodeArray> source) {
|
||||||
|
Loading…
Reference in New Issue
Block a user