Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: src/mips/assembler-mips.cc

Issue 2045263002: [heap] Avoid the use of cells to point from code to new-space objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add comments. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 // ----------------------------------------------------------------------------- 229 // -----------------------------------------------------------------------------
230 // Implementation of Operand and MemOperand. 230 // Implementation of Operand and MemOperand.
231 // See assembler-mips-inl.h for inlined constructors. 231 // See assembler-mips-inl.h for inlined constructors.
232 232
233 Operand::Operand(Handle<Object> handle) { 233 Operand::Operand(Handle<Object> handle) {
234 AllowDeferredHandleDereference using_raw_address; 234 AllowDeferredHandleDereference using_raw_address;
235 rm_ = no_reg; 235 rm_ = no_reg;
236 // Verify all Objects referred by code are NOT in new space. 236 // Verify all Objects referred by code are NOT in new space.
237 Object* obj = *handle; 237 Object* obj = *handle;
238 if (obj->IsHeapObject()) { 238 if (obj->IsHeapObject()) {
239 DCHECK(!HeapObject::cast(obj)->GetHeap()->InNewSpace(obj));
240 imm32_ = reinterpret_cast<intptr_t>(handle.location()); 239 imm32_ = reinterpret_cast<intptr_t>(handle.location());
241 rmode_ = RelocInfo::EMBEDDED_OBJECT; 240 rmode_ = RelocInfo::EMBEDDED_OBJECT;
242 } else { 241 } else {
243 // No relocation needed. 242 // No relocation needed.
244 imm32_ = reinterpret_cast<intptr_t>(obj); 243 imm32_ = reinterpret_cast<intptr_t>(obj);
245 rmode_ = RelocInfo::NONE32; 244 rmode_ = RelocInfo::NONE32;
246 } 245 }
247 } 246 }
248 247
249 248
(...skipping 2955 matching lines...) Expand 10 before | Expand all | Expand 10 after
3205 3204
3206 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { 3205 if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
3207 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t)); 3206 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t));
3208 } 3207 }
3209 } 3208 }
3210 3209
3211 } // namespace internal 3210 } // namespace internal
3212 } // namespace v8 3211 } // namespace v8
3213 3212
3214 #endif // V8_TARGET_ARCH_MIPS 3213 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698