Index: src/full-codegen/full-codegen.h |
diff --git a/src/full-codegen/full-codegen.h b/src/full-codegen/full-codegen.h |
index 558dae18ddd45d68e7a77cee76eda6f6fbc718cf..380691b4633e959120f644194aae7806963ac83f 100644 |
--- a/src/full-codegen/full-codegen.h |
+++ b/src/full-codegen/full-codegen.h |
@@ -467,7 +467,6 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
void EmitSuperCallWithLoadIC(Call* expr); |
void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); |
void EmitKeyedSuperCallWithLoadIC(Call* expr); |
- void EmitPossiblyEvalCall(Call* expr); |
#define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
F(IsSmi) \ |
@@ -506,20 +505,12 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
void RestoreContext(); |
// Platform-specific code for loading variables. |
- void EmitLoadGlobalCheckExtensions(VariableProxy* proxy, |
- TypeofMode typeof_mode, Label* slow); |
- MemOperand ContextSlotOperandCheckExtensions(Variable* var, Label* slow); |
- void EmitDynamicLookupFastCase(VariableProxy* proxy, TypeofMode typeof_mode, |
- Label* slow, Label* done); |
void EmitGlobalVariableLoad(VariableProxy* proxy, TypeofMode typeof_mode); |
void EmitVariableLoad(VariableProxy* proxy, |
TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
void EmitAccessor(ObjectLiteralProperty* property); |
- // Expects the arguments and the function already pushed. |
- void EmitResolvePossiblyDirectEval(Call* expr); |
- |
// Platform-specific support for allocating a new closure based on |
// the given function info. |
void EmitNewClosure(Handle<SharedFunctionInfo> info, bool pretenure); |
@@ -698,8 +689,6 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> { |
// and PushCatchContext. |
void PushFunctionArgumentForContextAllocation(); |
- void PushCalleeAndWithBaseObject(Call* expr); |
- |
// AST node visit functions. |
#define DECLARE_VISIT(type) void Visit##type(type* node); |
AST_NODE_LIST(DECLARE_VISIT) |