| Index: src/full-codegen/mips64/full-codegen-mips64.cc
|
| diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| index 020d385161e42a46e6b50d41c4f4ba697e580508..16af544b243690066313576161e5f1cec9058e36 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -3800,62 +3800,6 @@ void FullCodeGenerator::EmitToInteger(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitNumberToString(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(args->length(), 1);
|
| -
|
| - // Load the argument into a0 and call the stub.
|
| - VisitForAccumulatorValue(args->at(0));
|
| - __ mov(a0, result_register());
|
| -
|
| - NumberToStringStub stub(isolate());
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::EmitToLength(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(1, args->length());
|
| -
|
| - // Load the argument into a0 and convert it.
|
| - VisitForAccumulatorValue(args->at(0));
|
| - __ mov(a0, result_register());
|
| -
|
| - ToLengthStub stub(isolate());
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::EmitToString(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(1, args->length());
|
| -
|
| - // Load the argument into a0 and convert it.
|
| - VisitForAccumulatorValue(args->at(0));
|
| - __ mov(a0, result_register());
|
| -
|
| - ToStringStub stub(isolate());
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::EmitToNumber(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(1, args->length());
|
| -
|
| - // Load the argument into a0 and convert it.
|
| - VisitForAccumulatorValue(args->at(0));
|
| - __ mov(a0, result_register());
|
| -
|
| - ToNumberStub stub(isolate());
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitToName(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK_EQ(1, args->length());
|
| @@ -3876,20 +3820,6 @@ void FullCodeGenerator::EmitToName(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitToObject(CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK_EQ(1, args->length());
|
| -
|
| - // Load the argument into a0 and convert it.
|
| - VisitForAccumulatorValue(args->at(0));
|
| - __ mov(a0, result_register());
|
| -
|
| - ToObjectStub stub(isolate());
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitStringCharFromCode(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK(args->length() == 1);
|
| @@ -4128,21 +4058,6 @@ void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitRegExpConstructResult(CallRuntime* expr) {
|
| - RegExpConstructResultStub stub(isolate());
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK(args->length() == 3);
|
| - VisitForStackValue(args->at(0));
|
| - VisitForStackValue(args->at(1));
|
| - VisitForAccumulatorValue(args->at(2));
|
| - __ mov(a0, result_register());
|
| - __ pop(a1);
|
| - __ pop(a2);
|
| - __ CallStub(&stub);
|
| - context()->Plug(v0);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| VisitForAccumulatorValue(args->at(0));
|
|
|