Author: [email protected]
Date: Fri Jul  3 01:00:51 2009
New Revision: 2344

Modified:
    branches/bleeding_edge/src/arm/ic-arm.cc

Log:

M    ic-arm.cc


Modified: branches/bleeding_edge/src/arm/ic-arm.cc
==============================================================================
--- branches/bleeding_edge/src/arm/ic-arm.cc    (original)
+++ branches/bleeding_edge/src/arm/ic-arm.cc    Fri Jul  3 01:00:51 2009
@@ -217,7 +217,7 @@
    // Probe the stub cache.
    Code::Flags flags =
        Code::ComputeFlags(Code::CALL_IC, NOT_IN_LOOP, MONOMORPHIC, NORMAL,  
argc);
-  StubCache::GenerateProbe(masm, flags, r1, r2, r3);
+  StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);

    // If the stub cache probing failed, the receiver might be a value.
    // For value objects, we use the map of the prototype objects for
@@ -254,7 +254,7 @@

    // Probe the stub cache for the value object.
    __ bind(&probe);
-  StubCache::GenerateProbe(masm, flags, r1, r2, r3);
+  StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);

    // Cache miss: Jump to runtime.
    __ bind(&miss);
@@ -422,7 +422,7 @@
    Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
                                           NOT_IN_LOOP,
                                           MONOMORPHIC);
-  StubCache::GenerateProbe(masm, flags, r0, r2, r3);
+  StubCache::GenerateProbe(masm, flags, r0, r2, r3, no_reg);

    // Cache miss: Jump to runtime.
    Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
@@ -761,7 +761,7 @@
    Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
                                           NOT_IN_LOOP,
                                           MONOMORPHIC);
-  StubCache::GenerateProbe(masm, flags, r1, r2, r3);
+  StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);

    // Cache miss: Jump to runtime.
    Generate(masm, ExternalReference(IC_Utility(kStoreIC_Miss)));

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

Reply via email to