| Index: src/crankshaft/mips64/lithium-codegen-mips64.h
|
| diff --git a/src/crankshaft/mips64/lithium-codegen-mips64.h b/src/crankshaft/mips64/lithium-codegen-mips64.h
|
| index c4048115d396a19d5252babdbfb15085ba4a12e8..940b26f2bb3e6dd679fb50309fea536cb1c68122 100644
|
| --- a/src/crankshaft/mips64/lithium-codegen-mips64.h
|
| +++ b/src/crankshaft/mips64/lithium-codegen-mips64.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;
|
| DoubleRegister ToDoubleRegister(int index) const;
|
| @@ -345,13 +338,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
|
|
|