Index: src/crankshaft/x64/lithium-codegen-x64.h |
diff --git a/src/crankshaft/x64/lithium-codegen-x64.h b/src/crankshaft/x64/lithium-codegen-x64.h |
index 78d930229ea52cc28525129cda2a65915d8123ff..dbd555641cd26eaa5eeafd6b14d1e41aaf9be449 100644 |
--- a/src/crankshaft/x64/lithium-codegen-x64.h |
+++ b/src/crankshaft/x64/lithium-codegen-x64.h |
@@ -26,13 +26,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), |
@@ -215,9 +211,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; |
@@ -306,13 +299,9 @@ 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_; |
- int osr_pc_offset_; |
bool frame_is_built_; |
// Builder that keeps track of safepoints in the code. The table |