Index: src/arm/ic-arm.cc |
=================================================================== |
--- src/arm/ic-arm.cc (revision 2034) |
+++ src/arm/ic-arm.cc (working copy) |
@@ -211,7 +211,7 @@ |
// Probe the stub cache. |
Code::Flags flags = |
- Code::ComputeFlags(Code::CALL_IC, MONOMORPHIC, NORMAL, argc); |
+ Code::ComputeFlags(Code::CALL_IC, NOT_IN_LOOP, MONOMORPHIC, NORMAL, argc); |
StubCache::GenerateProbe(masm, flags, r1, r2, r3); |
// If the stub cache probing failed, the receiver might be a value. |
@@ -422,7 +422,7 @@ |
__ ldr(r0, MemOperand(sp, 0)); |
// Probe the stub cache. |
- Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC, MONOMORPHIC); |
+ Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC, NOT_IN_LOOP, MONOMORPHIC); |
Kevin Millikin (Chromium)
2009/05/25 11:00:42
Long line?
|
StubCache::GenerateProbe(masm, flags, r0, r2, r3); |
// Cache miss: Jump to runtime. |
@@ -755,7 +755,7 @@ |
// Get the receiver from the stack and probe the stub cache. |
__ ldr(r1, MemOperand(sp)); |
- Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, MONOMORPHIC); |
+ Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, NOT_IN_LOOP, MONOMORPHIC); |
Kevin Millikin (Chromium)
2009/05/25 11:00:42
Long line?
|
StubCache::GenerateProbe(masm, flags, r1, r2, r3); |
// Cache miss: Jump to runtime. |