OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 2517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2528 ASSERT(result.is(cp)); | 2528 ASSERT(result.is(cp)); |
2529 } | 2529 } |
2530 } | 2530 } |
2531 | 2531 |
2532 | 2532 |
2533 void LCodeGen::DoCheckValue(LCheckValue* instr) { | 2533 void LCodeGen::DoCheckValue(LCheckValue* instr) { |
2534 Register reg = ToRegister(instr->value()); | 2534 Register reg = ToRegister(instr->value()); |
2535 Handle<HeapObject> object = instr->hydrogen()->object().handle(); | 2535 Handle<HeapObject> object = instr->hydrogen()->object().handle(); |
2536 AllowDeferredHandleDereference smi_check; | 2536 AllowDeferredHandleDereference smi_check; |
2537 if (isolate()->heap()->InNewSpace(*object)) { | 2537 if (isolate()->heap()->InNewSpace(*object)) { |
2538 Register temp = ToRegister(instr->temp()); | 2538 UseScratchRegisterScope temps(masm()); |
| 2539 Register temp = temps.AcquireX(); |
2539 Handle<Cell> cell = isolate()->factory()->NewCell(object); | 2540 Handle<Cell> cell = isolate()->factory()->NewCell(object); |
2540 __ Mov(temp, Operand(Handle<Object>(cell))); | 2541 __ Mov(temp, Operand(Handle<Object>(cell))); |
2541 __ Ldr(temp, FieldMemOperand(temp, Cell::kValueOffset)); | 2542 __ Ldr(temp, FieldMemOperand(temp, Cell::kValueOffset)); |
2542 __ Cmp(reg, temp); | 2543 __ Cmp(reg, temp); |
2543 } else { | 2544 } else { |
2544 __ Cmp(reg, Operand(object)); | 2545 __ Cmp(reg, Operand(object)); |
2545 } | 2546 } |
2546 DeoptimizeIf(ne, instr->environment()); | 2547 DeoptimizeIf(ne, instr->environment()); |
2547 } | 2548 } |
2548 | 2549 |
(...skipping 3287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5836 __ Bind(&out_of_object); | 5837 __ Bind(&out_of_object); |
5837 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); | 5838 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); |
5838 // Index is equal to negated out of object property index plus 1. | 5839 // Index is equal to negated out of object property index plus 1. |
5839 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); | 5840 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); |
5840 __ Ldr(result, FieldMemOperand(result, | 5841 __ Ldr(result, FieldMemOperand(result, |
5841 FixedArray::kHeaderSize - kPointerSize)); | 5842 FixedArray::kHeaderSize - kPointerSize)); |
5842 __ Bind(&done); | 5843 __ Bind(&done); |
5843 } | 5844 } |
5844 | 5845 |
5845 } } // namespace v8::internal | 5846 } } // namespace v8::internal |
OLD | NEW |