Revision: 22024
Author: [email protected]
Date: Wed Jun 25 19:30:48 2014 UTC
Log: MIPS: Fix r22021 "The IC exposes a register definition." after
r22018.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/344543004
http://code.google.com/p/v8/source/detail?r=22024
Modified:
/branches/bleeding_edge/src/mips/code-stubs-mips.cc
=======================================
--- /branches/bleeding_edge/src/mips/code-stubs-mips.cc Wed Jun 25 18:43:06
2014 UTC
+++ /branches/bleeding_edge/src/mips/code-stubs-mips.cc Wed Jun 25 19:30:48
2014 UTC
@@ -21,7 +21,7 @@
Register registers[] = { a2 };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
-
Runtime::FunctionForId(Runtime::kHiddenNewClosureFromStubFailure)->entry);
+ Runtime::FunctionForId(Runtime::kNewClosureFromStubFailure)->entry);
}
@@ -44,7 +44,7 @@
Register registers[] = { a0 };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
- Runtime::FunctionForId(Runtime::kHiddenNumberToString)->entry);
+ Runtime::FunctionForId(Runtime::kNumberToStringRT)->entry);
}
@@ -57,8 +57,7 @@
Representation::Tagged() };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
- Runtime::FunctionForId(
- Runtime::kHiddenCreateArrayLiteralStubBailout)->entry,
+
Runtime::FunctionForId(Runtime::kCreateArrayLiteralStubBailout)->entry,
representations);
}
@@ -68,7 +67,7 @@
Register registers[] = { a3, a2, a1, a0 };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
- Runtime::FunctionForId(Runtime::kHiddenCreateObjectLiteral)->entry);
+ Runtime::FunctionForId(Runtime::kCreateObjectLiteral)->entry);
}
@@ -84,7 +83,7 @@
Register registers[] = { a2, a1, a0 };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
-
Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry);
+ Runtime::FunctionForId(Runtime::kRegExpConstructResult)->entry);
}
@@ -153,7 +152,7 @@
// a1 -- function
// a2 -- allocation site with elements kind
Address deopt_handler = Runtime::FunctionForId(
- Runtime::kHiddenArrayConstructor)->entry;
+ Runtime::kArrayConstructor)->entry;
if (constant_stack_parameter_count == 0) {
Register registers[] = { a1, a2 };
@@ -187,7 +186,7 @@
// a0 -- number of arguments
// a1 -- constructor function
Address deopt_handler = Runtime::FunctionForId(
- Runtime::kHiddenInternalArrayConstructor)->entry;
+ Runtime::kInternalArrayConstructor)->entry;
if (constant_stack_parameter_count == 0) {
Register registers[] = { a1 };
@@ -298,7 +297,7 @@
Register registers[] = { a1, a0 };
descriptor->Initialize(
ARRAY_SIZE(registers), registers,
- Runtime::FunctionForId(Runtime::kHiddenStringAdd)->entry);
+ Runtime::FunctionForId(Runtime::kStringAdd)->entry);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.