OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 // ----------------------------------------------------------------------------- | 279 // ----------------------------------------------------------------------------- |
280 // Implementation of Operand and MemOperand | 280 // Implementation of Operand and MemOperand |
281 // See assembler-arm-inl.h for inlined constructors | 281 // See assembler-arm-inl.h for inlined constructors |
282 | 282 |
283 Operand::Operand(Handle<Object> handle) { | 283 Operand::Operand(Handle<Object> handle) { |
284 AllowDeferredHandleDereference using_raw_address; | 284 AllowDeferredHandleDereference using_raw_address; |
285 rm_ = no_reg; | 285 rm_ = no_reg; |
286 // Verify all Objects referred by code are NOT in new space. | 286 // Verify all Objects referred by code are NOT in new space. |
287 Object* obj = *handle; | 287 Object* obj = *handle; |
288 if (obj->IsHeapObject()) { | 288 if (obj->IsHeapObject()) { |
289 DCHECK(!HeapObject::cast(obj)->GetHeap()->InNewSpace(obj)); | |
290 imm32_ = reinterpret_cast<intptr_t>(handle.location()); | 289 imm32_ = reinterpret_cast<intptr_t>(handle.location()); |
291 rmode_ = RelocInfo::EMBEDDED_OBJECT; | 290 rmode_ = RelocInfo::EMBEDDED_OBJECT; |
292 } else { | 291 } else { |
293 // no relocation needed | 292 // no relocation needed |
294 imm32_ = reinterpret_cast<intptr_t>(obj); | 293 imm32_ = reinterpret_cast<intptr_t>(obj); |
295 rmode_ = RelocInfo::NONE32; | 294 rmode_ = RelocInfo::NONE32; |
296 } | 295 } |
297 } | 296 } |
298 | 297 |
299 | 298 |
(...skipping 4000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4300 DCHECK(is_uint12(offset)); | 4299 DCHECK(is_uint12(offset)); |
4301 instr_at_put(pc, SetLdrRegisterImmediateOffset(instr, offset)); | 4300 instr_at_put(pc, SetLdrRegisterImmediateOffset(instr, offset)); |
4302 } | 4301 } |
4303 } | 4302 } |
4304 | 4303 |
4305 | 4304 |
4306 } // namespace internal | 4305 } // namespace internal |
4307 } // namespace v8 | 4306 } // namespace v8 |
4308 | 4307 |
4309 #endif // V8_TARGET_ARCH_ARM | 4308 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |