| 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 are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 // ----------------------------------------------------------------------------- | 197 // ----------------------------------------------------------------------------- |
| 198 // Implementation of Operand and MemOperand. | 198 // Implementation of Operand and MemOperand. |
| 199 // See assembler-mips-inl.h for inlined constructors. | 199 // See assembler-mips-inl.h for inlined constructors. |
| 200 | 200 |
| 201 Operand::Operand(Handle<Object> handle) { | 201 Operand::Operand(Handle<Object> handle) { |
| 202 AllowDeferredHandleDereference using_raw_address; | 202 AllowDeferredHandleDereference using_raw_address; |
| 203 rm_ = no_reg; | 203 rm_ = no_reg; |
| 204 // Verify all Objects referred by code are NOT in new space. | 204 // Verify all Objects referred by code are NOT in new space. |
| 205 Object* obj = *handle; | 205 Object* obj = *handle; |
| 206 if (obj->IsHeapObject()) { | 206 if (obj->IsHeapObject()) { |
| 207 DCHECK(!HeapObject::cast(obj)->GetHeap()->InNewSpace(obj)); | |
| 208 imm64_ = reinterpret_cast<intptr_t>(handle.location()); | 207 imm64_ = reinterpret_cast<intptr_t>(handle.location()); |
| 209 rmode_ = RelocInfo::EMBEDDED_OBJECT; | 208 rmode_ = RelocInfo::EMBEDDED_OBJECT; |
| 210 } else { | 209 } else { |
| 211 // No relocation needed. | 210 // No relocation needed. |
| 212 imm64_ = reinterpret_cast<intptr_t>(obj); | 211 imm64_ = reinterpret_cast<intptr_t>(obj); |
| 213 rmode_ = RelocInfo::NONE64; | 212 rmode_ = RelocInfo::NONE64; |
| 214 } | 213 } |
| 215 } | 214 } |
| 216 | 215 |
| 217 | 216 |
| (...skipping 3228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3446 | 3445 |
| 3447 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { | 3446 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { |
| 3448 Assembler::FlushICache(isolate, pc, 4 * Assembler::kInstrSize); | 3447 Assembler::FlushICache(isolate, pc, 4 * Assembler::kInstrSize); |
| 3449 } | 3448 } |
| 3450 } | 3449 } |
| 3451 | 3450 |
| 3452 } // namespace internal | 3451 } // namespace internal |
| 3453 } // namespace v8 | 3452 } // namespace v8 |
| 3454 | 3453 |
| 3455 #endif // V8_TARGET_ARCH_MIPS64 | 3454 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |