Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index beaff831a6c27721b074ede9348824c06d12f3a0..d0904a6d84e215576f65c35b2b872c024aa0f6d8 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -504,17 +504,6 @@ void FullCodeGenerator::EmitReturnSequence() { |
} |
-void FullCodeGenerator::EffectContext::Plug(Variable* var) const { |
- DCHECK(var->IsStackAllocated() || var->IsContextSlot()); |
-} |
- |
- |
-void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { |
- DCHECK(var->IsStackAllocated() || var->IsContextSlot()); |
- codegen()->GetVar(result_register(), var); |
-} |
- |
- |
void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { |
DCHECK(var->IsStackAllocated() || var->IsContextSlot()); |
codegen()->GetVar(result_register(), var); |
@@ -522,14 +511,6 @@ void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { |
} |
-void FullCodeGenerator::TestContext::Plug(Variable* var) const { |
- // For simplicity we always test the accumulator register. |
- codegen()->GetVar(result_register(), var); |
- codegen()->PrepareForBailoutBeforeSplit(condition(), false, NULL, NULL); |
- codegen()->DoTest(this); |
-} |
- |
- |
void FullCodeGenerator::EffectContext::Plug(Heap::RootListIndex index) const { |
} |
@@ -690,10 +671,6 @@ void FullCodeGenerator::TestContext::Plug(Label* materialize_true, |
} |
-void FullCodeGenerator::EffectContext::Plug(bool flag) const { |
-} |
- |
- |
void FullCodeGenerator::AccumulatorValueContext::Plug(bool flag) const { |
Heap::RootListIndex value_root_index = |
flag ? Heap::kTrueValueRootIndex : Heap::kFalseValueRootIndex; |
@@ -966,35 +943,6 @@ void FullCodeGenerator::VisitFunctionDeclaration( |
} |
-void FullCodeGenerator::VisitImportDeclaration(ImportDeclaration* declaration) { |
- VariableProxy* proxy = declaration->proxy(); |
- Variable* variable = proxy->var(); |
- switch (variable->location()) { |
- case VariableLocation::GLOBAL: |
- case VariableLocation::UNALLOCATED: |
- // TODO(rossberg) |
- break; |
- |
- case VariableLocation::CONTEXT: { |
- Comment cmnt(masm_, "[ ImportDeclaration"); |
- EmitDebugCheckDeclarationContext(variable); |
- // TODO(rossberg) |
- break; |
- } |
- |
- case VariableLocation::PARAMETER: |
- case VariableLocation::LOCAL: |
- case VariableLocation::LOOKUP: |
- UNREACHABLE(); |
- } |
-} |
- |
- |
-void FullCodeGenerator::VisitExportDeclaration(ExportDeclaration* declaration) { |
- // TODO(rossberg) |
-} |
- |
- |
void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) { |
// Call the runtime to declare the globals. |
// The context is the first argument. |
@@ -1320,12 +1268,6 @@ void FullCodeGenerator::EmitNewClosure(Handle<SharedFunctionInfo> info, |
} |
-void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) { |
- Comment cmnt(masm_, "[ VariableProxy"); |
- EmitVariableLoad(expr); |
-} |
- |
- |
void FullCodeGenerator::EmitSetHomeObjectIfNeeded(Expression* initializer, |
int offset, |
FeedbackVectorICSlot slot) { |
@@ -3893,33 +3835,6 @@ void FullCodeGenerator::EmitClassOf(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitSubString(CallRuntime* expr) { |
- // Load the arguments on the stack and call the stub. |
- SubStringStub stub(isolate()); |
- ZoneList<Expression*>* args = expr->arguments(); |
- DCHECK(args->length() == 3); |
- VisitForStackValue(args->at(0)); |
- VisitForStackValue(args->at(1)); |
- VisitForStackValue(args->at(2)); |
- __ CallStub(&stub); |
- context()->Plug(v0); |
-} |
- |
- |
-void FullCodeGenerator::EmitRegExpExec(CallRuntime* expr) { |
- // Load the arguments on the stack and call the stub. |
- RegExpExecStub stub(isolate()); |
- ZoneList<Expression*>* args = expr->arguments(); |
- DCHECK(args->length() == 4); |
- VisitForStackValue(args->at(0)); |
- VisitForStackValue(args->at(1)); |
- VisitForStackValue(args->at(2)); |
- VisitForStackValue(args->at(3)); |
- __ CallStub(&stub); |
- context()->Plug(v0); |
-} |
- |
- |
void FullCodeGenerator::EmitValueOf(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
DCHECK(args->length() == 1); |
@@ -4075,18 +3990,6 @@ void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathPow(CallRuntime* expr) { |
- // Load the arguments on the stack and call the runtime function. |
- ZoneList<Expression*>* args = expr->arguments(); |
- DCHECK(args->length() == 2); |
- VisitForStackValue(args->at(0)); |
- VisitForStackValue(args->at(1)); |
- MathPowStub stub(isolate(), MathPowStub::ON_STACK); |
- __ CallStub(&stub); |
- context()->Plug(v0); |
-} |
- |
- |
void FullCodeGenerator::EmitSetValueOf(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
DCHECK(args->length() == 2); |
@@ -4259,19 +4162,6 @@ void FullCodeGenerator::EmitStringAdd(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitStringCompare(CallRuntime* expr) { |
- ZoneList<Expression*>* args = expr->arguments(); |
- DCHECK_EQ(2, args->length()); |
- |
- VisitForStackValue(args->at(0)); |
- VisitForStackValue(args->at(1)); |
- |
- StringCompareStub stub(isolate()); |
- __ CallStub(&stub); |
- context()->Plug(v0); |
-} |
- |
- |
void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) { |
ZoneList<Expression*>* args = expr->arguments(); |
DCHECK(args->length() >= 2); |