Index: src/ppc/lithium-codegen-ppc.cc |
diff --git a/src/ppc/lithium-codegen-ppc.cc b/src/ppc/lithium-codegen-ppc.cc |
index c392b100c591de80ce118325ce21a88550339e8b..fea04e36f0b0a2746003f919b0422afa8b2da37f 100644 |
--- a/src/ppc/lithium-codegen-ppc.cc |
+++ b/src/ppc/lithium-codegen-ppc.cc |
@@ -566,85 +566,9 @@ void LCodeGen::WriteTranslation(LEnvironment* environment, |
// The translation includes one command per value in the environment. |
int translation_size = environment->translation_size(); |
- // The output frame height does not include the parameters. |
- int height = translation_size - environment->parameter_count(); |
WriteTranslation(environment->outer(), translation); |
- |
- switch (environment->frame_type()) { |
- case JS_FUNCTION: { |
- int shared_id = DefineDeoptimizationLiteral( |
- environment->entry() ? environment->entry()->shared() |
- : info()->shared_info()); |
- translation->BeginJSFrame(environment->ast_id(), shared_id, height); |
- if (info()->closure().is_identical_to(environment->closure())) { |
- translation->StoreJSFrameFunction(); |
- } else { |
- int closure_id = DefineDeoptimizationLiteral(environment->closure()); |
- translation->StoreLiteral(closure_id); |
- } |
- break; |
- } |
- case JS_CONSTRUCT: { |
- int shared_id = DefineDeoptimizationLiteral( |
- environment->entry() ? environment->entry()->shared() |
- : info()->shared_info()); |
- translation->BeginConstructStubFrame(shared_id, translation_size); |
- if (info()->closure().is_identical_to(environment->closure())) { |
- translation->StoreJSFrameFunction(); |
- } else { |
- int closure_id = DefineDeoptimizationLiteral(environment->closure()); |
- translation->StoreLiteral(closure_id); |
- } |
- break; |
- } |
- case JS_GETTER: { |
- DCHECK(translation_size == 1); |
- DCHECK(height == 0); |
- int shared_id = DefineDeoptimizationLiteral( |
- environment->entry() ? environment->entry()->shared() |
- : info()->shared_info()); |
- translation->BeginGetterStubFrame(shared_id); |
- if (info()->closure().is_identical_to(environment->closure())) { |
- translation->StoreJSFrameFunction(); |
- } else { |
- int closure_id = DefineDeoptimizationLiteral(environment->closure()); |
- translation->StoreLiteral(closure_id); |
- } |
- break; |
- } |
- case JS_SETTER: { |
- DCHECK(translation_size == 2); |
- DCHECK(height == 0); |
- int shared_id = DefineDeoptimizationLiteral( |
- environment->entry() ? environment->entry()->shared() |
- : info()->shared_info()); |
- translation->BeginSetterStubFrame(shared_id); |
- if (info()->closure().is_identical_to(environment->closure())) { |
- translation->StoreJSFrameFunction(); |
- } else { |
- int closure_id = DefineDeoptimizationLiteral(environment->closure()); |
- translation->StoreLiteral(closure_id); |
- } |
- break; |
- } |
- case ARGUMENTS_ADAPTOR: { |
- int shared_id = DefineDeoptimizationLiteral( |
- environment->entry() ? environment->entry()->shared() |
- : info()->shared_info()); |
- translation->BeginArgumentsAdaptorFrame(shared_id, translation_size); |
- if (info()->closure().is_identical_to(environment->closure())) { |
- translation->StoreJSFrameFunction(); |
- } else { |
- int closure_id = DefineDeoptimizationLiteral(environment->closure()); |
- translation->StoreLiteral(closure_id); |
- } |
- break; |
- } |
- case STUB: |
- translation->BeginCompiledStubFrame(translation_size); |
- break; |
- } |
+ WriteTranslationFrame(environment, translation); |
int object_index = 0; |
int dematerialized_index = 0; |
@@ -932,16 +856,6 @@ void LCodeGen::PopulateDeoptimizationData(Handle<Code> code) { |
} |
-int LCodeGen::DefineDeoptimizationLiteral(Handle<Object> literal) { |
- int result = deoptimization_literals_.length(); |
- for (int i = 0; i < deoptimization_literals_.length(); ++i) { |
- if (deoptimization_literals_[i].is_identical_to(literal)) return i; |
- } |
- deoptimization_literals_.Add(literal, zone()); |
- return result; |
-} |
- |
- |
void LCodeGen::PopulateDeoptimizationLiteralsWithInlinedFunctions() { |
DCHECK_EQ(0, deoptimization_literals_.length()); |
for (auto function : chunk()->inlined_functions()) { |