OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 __ CompareObjectType(key, map, hash, LAST_UNIQUE_NAME_TYPE); | 314 __ CompareObjectType(key, map, hash, LAST_UNIQUE_NAME_TYPE); |
315 __ b(hi, not_unique); | 315 __ b(hi, not_unique); |
316 STATIC_ASSERT(LAST_UNIQUE_NAME_TYPE == FIRST_NONSTRING_TYPE); | 316 STATIC_ASSERT(LAST_UNIQUE_NAME_TYPE == FIRST_NONSTRING_TYPE); |
317 __ b(eq, &unique); | 317 __ b(eq, &unique); |
318 | 318 |
319 // Is the string an array index, with cached numeric value? | 319 // Is the string an array index, with cached numeric value? |
320 __ ldr(hash, FieldMemOperand(key, Name::kHashFieldOffset)); | 320 __ ldr(hash, FieldMemOperand(key, Name::kHashFieldOffset)); |
321 __ tst(hash, Operand(Name::kContainsCachedArrayIndexMask)); | 321 __ tst(hash, Operand(Name::kContainsCachedArrayIndexMask)); |
322 __ b(eq, index_string); | 322 __ b(eq, index_string); |
323 | 323 |
324 // Is the string internalized? | 324 // Is the string internalized? We know it's a string, so a single |
| 325 // bit test is enough. |
325 // map: key map | 326 // map: key map |
326 __ ldrb(hash, FieldMemOperand(map, Map::kInstanceTypeOffset)); | 327 __ ldrb(hash, FieldMemOperand(map, Map::kInstanceTypeOffset)); |
327 STATIC_ASSERT(kInternalizedTag != 0); | 328 STATIC_ASSERT(kInternalizedTag != 0); |
328 __ tst(hash, Operand(kIsInternalizedMask)); | 329 __ tst(hash, Operand(kIsInternalizedMask)); |
329 __ b(eq, not_unique); | 330 __ b(eq, not_unique); |
330 | 331 |
331 __ bind(&unique); | 332 __ bind(&unique); |
332 } | 333 } |
333 | 334 |
334 | 335 |
(...skipping 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1696 } else { | 1697 } else { |
1697 ASSERT(Assembler::GetCondition(branch_instr) == ne); | 1698 ASSERT(Assembler::GetCondition(branch_instr) == ne); |
1698 patcher.EmitCondition(eq); | 1699 patcher.EmitCondition(eq); |
1699 } | 1700 } |
1700 } | 1701 } |
1701 | 1702 |
1702 | 1703 |
1703 } } // namespace v8::internal | 1704 } } // namespace v8::internal |
1704 | 1705 |
1705 #endif // V8_TARGET_ARCH_ARM | 1706 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |