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

Side by Side Diff: src/ia32/assembler-ia32-inl.h

Issue 1759873002: Assembler changes for enabling GrowHeap in Wasm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 *p += delta; // Relocate entry. 74 *p += delta; // Relocate entry.
75 } 75 }
76 } 76 }
77 77
78 78
79 Address RelocInfo::target_address() { 79 Address RelocInfo::target_address() {
80 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_)); 80 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
81 return Assembler::target_address_at(pc_, host_); 81 return Assembler::target_address_at(pc_, host_);
82 } 82 }
83 83
84 Address RelocInfo::wasm_memory_reference() {
85 DCHECK(IsWasmMemoryReference(rmode_));
86 return Assembler::target_address_at(pc_, host_);
87 }
84 88
85 Address RelocInfo::target_address_address() { 89 Address RelocInfo::target_address_address() {
86 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_) 90 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_)
87 || rmode_ == EMBEDDED_OBJECT 91 || rmode_ == EMBEDDED_OBJECT
88 || rmode_ == EXTERNAL_REFERENCE); 92 || rmode_ == EXTERNAL_REFERENCE);
89 return reinterpret_cast<Address>(pc_); 93 return reinterpret_cast<Address>(pc_);
90 } 94 }
91 95
92 96
93 Address RelocInfo::constant_pool_entry_address() { 97 Address RelocInfo::constant_pool_entry_address() {
(...skipping 14 matching lines...) Expand all
108 icache_flush_mode); 112 icache_flush_mode);
109 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_)); 113 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
110 if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL && 114 if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL &&
111 IsCodeTarget(rmode_)) { 115 IsCodeTarget(rmode_)) {
112 Object* target_code = Code::GetCodeFromTargetAddress(target); 116 Object* target_code = Code::GetCodeFromTargetAddress(target);
113 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode( 117 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
114 host(), this, HeapObject::cast(target_code)); 118 host(), this, HeapObject::cast(target_code));
115 } 119 }
116 } 120 }
117 121
122 void RelocInfo::update_wasm_memory_reference(
123 Address reference, ICacheFlushMode icache_flush_mode) {
124 DCHECK(IsWasmMemoryReference(rmode_));
125 Assembler::set_target_address_at(isolate_, pc_, host_, reference,
126 icache_flush_mode);
127 }
118 128
119 Object* RelocInfo::target_object() { 129 Object* RelocInfo::target_object() {
120 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); 130 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
121 return Memory::Object_at(pc_); 131 return Memory::Object_at(pc_);
122 } 132 }
123 133
124 134
125 Handle<Object> RelocInfo::target_object_handle(Assembler* origin) { 135 Handle<Object> RelocInfo::target_object_handle(Assembler* origin) {
126 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT); 136 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
127 return Memory::Object_Handle_at(pc_); 137 return Memory::Object_Handle_at(pc_);
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 } 324 }
315 } 325 }
316 326
317 327
318 328
319 Immediate::Immediate(int x) { 329 Immediate::Immediate(int x) {
320 x_ = x; 330 x_ = x;
321 rmode_ = RelocInfo::NONE32; 331 rmode_ = RelocInfo::NONE32;
322 } 332 }
323 333
334 Immediate::Immediate(Address x, RelocInfo::Mode rmode) {
335 x_ = reinterpret_cast<int32_t>(x);
336 rmode_ = rmode;
337 }
324 338
325 Immediate::Immediate(const ExternalReference& ext) { 339 Immediate::Immediate(const ExternalReference& ext) {
326 x_ = reinterpret_cast<int32_t>(ext.address()); 340 x_ = reinterpret_cast<int32_t>(ext.address());
327 rmode_ = RelocInfo::EXTERNAL_REFERENCE; 341 rmode_ = RelocInfo::EXTERNAL_REFERENCE;
328 } 342 }
329 343
330 344
331 Immediate::Immediate(Label* internal_offset) { 345 Immediate::Immediate(Label* internal_offset) {
332 x_ = reinterpret_cast<int32_t>(internal_offset); 346 x_ = reinterpret_cast<int32_t>(internal_offset);
333 rmode_ = RelocInfo::INTERNAL_REFERENCE; 347 rmode_ = RelocInfo::INTERNAL_REFERENCE;
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 560
547 Operand::Operand(Immediate imm) { 561 Operand::Operand(Immediate imm) {
548 // [disp/r] 562 // [disp/r]
549 set_modrm(0, ebp); 563 set_modrm(0, ebp);
550 set_dispr(imm.x_, imm.rmode_); 564 set_dispr(imm.x_, imm.rmode_);
551 } 565 }
552 } // namespace internal 566 } // namespace internal
553 } // namespace v8 567 } // namespace v8
554 568
555 #endif // V8_IA32_ASSEMBLER_IA32_INL_H_ 569 #endif // V8_IA32_ASSEMBLER_IA32_INL_H_
OLDNEW
« src/assembler.h ('K') | « src/ia32/assembler-ia32.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698