Author: [email protected]
Date: Mon May 25 11:57:25 2009
New Revision: 2047

Modified:
    branches/bleeding_edge/src/x64/assembler-x64.cc
    branches/bleeding_edge/src/x64/codegen-x64.h

Log:
Fix 64-bit after in-loop patch.
Review URL: http://codereview.chromium.org/115764

Modified: branches/bleeding_edge/src/x64/assembler-x64.cc
==============================================================================
--- branches/bleeding_edge/src/x64/assembler-x64.cc     (original)
+++ branches/bleeding_edge/src/x64/assembler-x64.cc     Mon May 25 11:57:25 2009
@@ -457,7 +457,8 @@
  Object* CallStubCompiler::CompileCallConstant(Object* a,
                                                JSObject* b,
                                                JSFunction* c,
-                                              StubCompiler::CheckType d) {
+                                              StubCompiler::CheckType d,
+                                              Code::Flags flags) {
    UNIMPLEMENTED();
    return NULL;
  }
@@ -465,7 +466,8 @@
  Object* CallStubCompiler::CompileCallField(Object* a,
                                             JSObject* b,
                                             int c,
-                                           String* d) {
+                                           String* d,
+                                           Code::Flags flags) {
    UNIMPLEMENTED();
    return NULL;
  }

Modified: branches/bleeding_edge/src/x64/codegen-x64.h
==============================================================================
--- branches/bleeding_edge/src/x64/codegen-x64.h        (original)
+++ branches/bleeding_edge/src/x64/codegen-x64.h        Mon May 25 11:57:25 2009
@@ -486,8 +486,7 @@
    Handle<JSFunction> BuildBoilerplate(FunctionLiteral* node);
    void ProcessDeclarations(ZoneList<Declaration*>* declarations);

-  Handle<Code> ComputeCallInitialize(int argc);
-  Handle<Code> ComputeCallInitializeInLoop(int argc);
+  Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop);

    // Declare global variables and functions in the given array of
    // name/value pairs.

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to