Revision: 22041
Author: [email protected]
Date: Thu Jun 26 13:48:22 2014 UTC
Log: Fix regexp=interpreted build.
[email protected]
Review URL: https://codereview.chromium.org/350633003
http://code.google.com/p/v8/source/detail?r=22041
Modified:
/branches/bleeding_edge/src/arm/code-stubs-arm.cc
/branches/bleeding_edge/src/arm64/code-stubs-arm64.cc
/branches/bleeding_edge/src/ia32/code-stubs-ia32.cc
/branches/bleeding_edge/src/mips/code-stubs-mips.cc
/branches/bleeding_edge/src/x64/code-stubs-x64.cc
/branches/bleeding_edge/src/x87/code-stubs-x87.cc
=======================================
--- /branches/bleeding_edge/src/arm/code-stubs-arm.cc Thu Jun 26 10:00:36
2014 UTC
+++ /branches/bleeding_edge/src/arm/code-stubs-arm.cc Thu Jun 26 13:48:22
2014 UTC
@@ -2268,7 +2268,7 @@
// time or if regexp entry in generated code is turned off runtime
switch or
// at compilation.
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on entry.
=======================================
--- /branches/bleeding_edge/src/arm64/code-stubs-arm64.cc Thu Jun 26
10:00:36 2014 UTC
+++ /branches/bleeding_edge/src/arm64/code-stubs-arm64.cc Thu Jun 26
13:48:22 2014 UTC
@@ -2425,7 +2425,7 @@
void RegExpExecStub::Generate(MacroAssembler* masm) {
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on entry.
=======================================
--- /branches/bleeding_edge/src/ia32/code-stubs-ia32.cc Thu Jun 26 10:00:36
2014 UTC
+++ /branches/bleeding_edge/src/ia32/code-stubs-ia32.cc Thu Jun 26 13:48:22
2014 UTC
@@ -1331,7 +1331,7 @@
// time or if regexp entry in generated code is turned off runtime
switch or
// at compilation.
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on entry.
=======================================
--- /branches/bleeding_edge/src/mips/code-stubs-mips.cc Wed Jun 25 19:30:48
2014 UTC
+++ /branches/bleeding_edge/src/mips/code-stubs-mips.cc Thu Jun 26 13:48:22
2014 UTC
@@ -2434,7 +2434,7 @@
// time or if regexp entry in generated code is turned off runtime
switch or
// at compilation.
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on entry.
=======================================
--- /branches/bleeding_edge/src/x64/code-stubs-x64.cc Thu Jun 26 10:00:36
2014 UTC
+++ /branches/bleeding_edge/src/x64/code-stubs-x64.cc Thu Jun 26 13:48:22
2014 UTC
@@ -1214,7 +1214,7 @@
// time or if regexp entry in generated code is turned off runtime
switch or
// at compilation.
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on entry.
=======================================
--- /branches/bleeding_edge/src/x87/code-stubs-x87.cc Thu Jun 26 07:32:17
2014 UTC
+++ /branches/bleeding_edge/src/x87/code-stubs-x87.cc Thu Jun 26 13:48:22
2014 UTC
@@ -1031,7 +1031,7 @@
// time or if regexp entry in generated code is turned off runtime
switch or
// at compilation.
#ifdef V8_INTERPRETED_REGEXP
- __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
+ __ TailCallRuntime(Runtime::kRegExpExecRT, 4, 1);
#else // V8_INTERPRETED_REGEXP
// Stack frame on 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.