| Index: src/crankshaft/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-codegen-ia32.h b/src/crankshaft/ia32/lithium-codegen-ia32.h
|
| index 102a579d318c45e04690bf3cfdeb9388b95eb6ca..e5e1f915dab14d2af4dcaeebf0c5ec210da7ebc2 100644
|
| --- a/src/crankshaft/ia32/lithium-codegen-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-codegen-ia32.h
|
| @@ -26,15 +26,11 @@ 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()),
|
| dynamic_frame_alignment_(false),
|
| support_aligned_spilled_doubles_(false),
|
| - osr_pc_offset_(-1),
|
| frame_is_built_(false),
|
| safepoints_(info->zone()),
|
| resolver_(this),
|
| @@ -216,9 +212,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;
|
| XMMRegister ToDoubleRegister(int index) const;
|
| @@ -314,15 +307,11 @@ class LCodeGen: public LCodeGenBase {
|
| void MakeSureStackPagesMapped(int offset);
|
| #endif
|
|
|
| - ZoneList<LEnvironment*> deoptimizations_;
|
| ZoneList<Deoptimizer::JumpTableEntry> jump_table_;
|
| - int inlined_function_count_;
|
| Scope* const scope_;
|
| - TranslationBuffer translations_;
|
| ZoneList<LDeferredCode*> deferred_;
|
| bool dynamic_frame_alignment_;
|
| bool support_aligned_spilled_doubles_;
|
| - int osr_pc_offset_;
|
| bool frame_is_built_;
|
|
|
| // Builder that keeps track of safepoints in the code. The table
|
|
|