Revision: 16498
Author: [email protected]
Date: Tue Sep 3 10:11:10 2013 UTC
Log: MIPS: thread isolate for files starting with 'b' and 'c'.
Port r16489 (bde75fe)
BUG=
Review URL: https://codereview.chromium.org/23814003
Patch from Balazs Kilvady <[email protected]>.
http://code.google.com/p/v8/source/detail?r=16498
Modified:
/branches/bleeding_edge/src/mips/codegen-mips.h
/branches/bleeding_edge/src/mips/full-codegen-mips.cc
=======================================
--- /branches/bleeding_edge/src/mips/codegen-mips.h Mon Sep 2 09:27:27
2013 UTC
+++ /branches/bleeding_edge/src/mips/codegen-mips.h Tue Sep 3 10:11:10
2013 UTC
@@ -63,7 +63,7 @@
// Print the code after compiling it.
static void PrintCode(Handle<Code> code, CompilationInfo* info);
- static bool ShouldGenerateLog(Expression* type);
+ static bool ShouldGenerateLog(Isolate* isolate, Expression* type);
static void SetFunctionInfo(Handle<JSFunction> fun,
FunctionLiteral* lit,
=======================================
--- /branches/bleeding_edge/src/mips/full-codegen-mips.cc Fri Aug 30
11:24:58 2013 UTC
+++ /branches/bleeding_edge/src/mips/full-codegen-mips.cc Tue Sep 3
10:11:10 2013 UTC
@@ -3331,7 +3331,7 @@
// 2 (array): Arguments to the format string.
ZoneList<Expression*>* args = expr->arguments();
ASSERT_EQ(args->length(), 3);
- if (CodeGenerator::ShouldGenerateLog(args->at(0))) {
+ if (CodeGenerator::ShouldGenerateLog(isolate(), args->at(0))) {
VisitForStackValue(args->at(1));
VisitForStackValue(args->at(2));
__ CallRuntime(Runtime::kLog, 2);
--
--
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/groups/opt_out.