Index: src/arm/ic-arm.cc |
diff --git a/src/arm/ic-arm.cc b/src/arm/ic-arm.cc |
index dea875bad4bd2788531497ac952e97eb507d7376..6038153a1a76bb200a7d7bd8eadd7746c8f3fb49 100644 |
--- a/src/arm/ic-arm.cc |
+++ b/src/arm/ic-arm.cc |
@@ -212,101 +212,6 @@ static void GenerateDictionaryStore(MacroAssembler* masm, |
} |
-static void GenerateNumberDictionaryLoad(MacroAssembler* masm, |
- Label* miss, |
- Register elements, |
- Register key, |
- Register result, |
- Register t0, |
- Register t1, |
- Register t2) { |
- // Register use: |
- // |
- // elements - holds the slow-case elements of the receiver on entry. |
- // Unchanged unless 'result' is the same register. |
- // |
- // key - holds the smi key on entry. |
- // Unchanged unless 'result' is the same register. |
- // |
- // result - holds the result on exit if the load succeeded. |
- // Allowed to be the same as 'key' or 'result'. |
- // Unchanged on bailout so 'key' or 'result' can be used |
- // in further computation. |
- // |
- // Scratch registers: |
- // |
- // t0 - holds the untagged key on entry and holds the hash once computed. |
- // |
- // t1 - used to hold the capacity mask of the dictionary |
- // |
- // t2 - used for the index into the dictionary. |
- Label done; |
- |
- // Compute the hash code from the untagged key. This must be kept in sync |
- // with ComputeIntegerHash in utils.h. |
- // |
- // hash = ~hash + (hash << 15); |
- __ mvn(t1, Operand(t0)); |
- __ add(t0, t1, Operand(t0, LSL, 15)); |
- // hash = hash ^ (hash >> 12); |
- __ eor(t0, t0, Operand(t0, LSR, 12)); |
- // hash = hash + (hash << 2); |
- __ add(t0, t0, Operand(t0, LSL, 2)); |
- // hash = hash ^ (hash >> 4); |
- __ eor(t0, t0, Operand(t0, LSR, 4)); |
- // hash = hash * 2057; |
- __ mov(t1, Operand(2057)); |
- __ mul(t0, t0, t1); |
- // hash = hash ^ (hash >> 16); |
- __ eor(t0, t0, Operand(t0, LSR, 16)); |
- |
- // Compute the capacity mask. |
- __ ldr(t1, FieldMemOperand(elements, NumberDictionary::kCapacityOffset)); |
- __ mov(t1, Operand(t1, ASR, kSmiTagSize)); // convert smi to int |
- __ sub(t1, t1, Operand(1)); |
- |
- // Generate an unrolled loop that performs a few probes before giving up. |
- static const int kProbes = 4; |
- for (int i = 0; i < kProbes; i++) { |
- // Use t2 for index calculations and keep the hash intact in t0. |
- __ mov(t2, t0); |
- // Compute the masked index: (hash + i + i * i) & mask. |
- if (i > 0) { |
- __ add(t2, t2, Operand(NumberDictionary::GetProbeOffset(i))); |
- } |
- __ and_(t2, t2, Operand(t1)); |
- |
- // Scale the index by multiplying by the element size. |
- ASSERT(NumberDictionary::kEntrySize == 3); |
- __ add(t2, t2, Operand(t2, LSL, 1)); // t2 = t2 * 3 |
- |
- // Check if the key is identical to the name. |
- __ add(t2, elements, Operand(t2, LSL, kPointerSizeLog2)); |
- __ ldr(ip, FieldMemOperand(t2, NumberDictionary::kElementsStartOffset)); |
- __ cmp(key, Operand(ip)); |
- if (i != kProbes - 1) { |
- __ b(eq, &done); |
- } else { |
- __ b(ne, miss); |
- } |
- } |
- |
- __ bind(&done); |
- // Check that the value is a normal property. |
- // t2: elements + (index * kPointerSize) |
- const int kDetailsOffset = |
- NumberDictionary::kElementsStartOffset + 2 * kPointerSize; |
- __ ldr(t1, FieldMemOperand(t2, kDetailsOffset)); |
- __ tst(t1, Operand(Smi::FromInt(PropertyDetails::TypeField::mask()))); |
- __ b(ne, miss); |
- |
- // Get the value at the masked, scaled index and return. |
- const int kValueOffset = |
- NumberDictionary::kElementsStartOffset + kPointerSize; |
- __ ldr(result, FieldMemOperand(t2, kValueOffset)); |
-} |
- |
- |
void LoadIC::GenerateArrayLength(MacroAssembler* masm) { |
// ----------- S t a t e ------------- |
// -- r2 : name |
@@ -738,7 +643,7 @@ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) { |
__ b(ne, &slow_load); |
__ mov(r0, Operand(r2, ASR, kSmiTagSize)); |
// r0: untagged index |
- GenerateNumberDictionaryLoad(masm, &slow_load, r4, r2, r1, r0, r3, r5); |
+ __ LoadFromNumberDictionary(&slow_load, r4, r2, r1, r0, r3, r5); |
__ IncrementCounter(counters->keyed_call_generic_smi_dict(), 1, r0, r3); |
__ jmp(&do_call); |
@@ -1127,7 +1032,7 @@ void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) { |
__ cmp(r3, ip); |
__ b(ne, &slow); |
__ mov(r2, Operand(r0, ASR, kSmiTagSize)); |
- GenerateNumberDictionaryLoad(masm, &slow, r4, r0, r0, r2, r3, r5); |
+ __ LoadFromNumberDictionary(&slow, r4, r0, r0, r2, r3, r5); |
__ Ret(); |
// Slow case, key and receiver still in r0 and r1. |