Index: src/crankshaft/ppc/lithium-codegen-ppc.h |
diff --git a/src/crankshaft/ppc/lithium-codegen-ppc.h b/src/crankshaft/ppc/lithium-codegen-ppc.h |
index 3a49592140e843998e3152d7c97bd4de75dcc437..934caab61bcd48d41c2d25d72fa84cb95f258380 100644 |
--- a/src/crankshaft/ppc/lithium-codegen-ppc.h |
+++ b/src/crankshaft/ppc/lithium-codegen-ppc.h |
@@ -24,13 +24,9 @@ class LCodeGen : public LCodeGenBase { |
public: |
LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) |
: LCodeGenBase(chunk, assembler, info), |
- deoptimizations_(4, info->zone()), |
jump_table_(4, info->zone()), |
- inlined_function_count_(0), |
scope_(info->scope()), |
- translations_(info->zone()), |
deferred_(8, info->zone()), |
- osr_pc_offset_(-1), |
frame_is_built_(false), |
safepoints_(info->zone()), |
resolver_(this), |
@@ -208,9 +204,6 @@ class LCodeGen : public LCodeGenBase { |
LOperand* op, bool is_tagged, bool is_uint32, |
int* object_index_pointer, |
int* dematerialized_index_pointer); |
- void PopulateDeoptimizationData(Handle<Code> code); |
- |
- void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
Register ToRegister(int index) const; |
DoubleRegister ToDoubleRegister(int index) const; |
@@ -277,13 +270,9 @@ class LCodeGen : public LCodeGenBase { |
template <class T> |
void EmitVectorStoreICRegisters(T* instr); |
- ZoneList<LEnvironment*> deoptimizations_; |
ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
- int inlined_function_count_; |
Scope* const scope_; |
- TranslationBuffer translations_; |
ZoneList<LDeferredCode*> deferred_; |
- int osr_pc_offset_; |
bool frame_is_built_; |
// Builder that keeps track of safepoints in the code. The table |