Index: src/crankshaft/arm/lithium-codegen-arm.h |
diff --git a/src/crankshaft/arm/lithium-codegen-arm.h b/src/crankshaft/arm/lithium-codegen-arm.h |
index eeeb0eb56fd2dbcc24760a934338e5592ebb3922..e80fda4d37fc3884fd59b5143294220dee8afa2d 100644 |
--- a/src/crankshaft/arm/lithium-codegen-arm.h |
+++ b/src/crankshaft/arm/lithium-codegen-arm.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), |
@@ -237,9 +233,6 @@ class LCodeGen: public LCodeGenBase { |
bool is_uint32, |
int* object_index_pointer, |
int* dematerialized_index_pointer); |
- void PopulateDeoptimizationData(Handle<Code> code); |
- |
- void PopulateDeoptimizationLiteralsWithInlinedFunctions(); |
Register ToRegister(int index) const; |
DwVfpRegister ToDoubleRegister(int index) const; |
@@ -313,13 +306,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 |