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

Side by Side Diff: src/x64/assembler-x64.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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 kRoundToZero = 0x3 327 kRoundToZero = 0x3
328 }; 328 };
329 329
330 330
331 // ----------------------------------------------------------------------------- 331 // -----------------------------------------------------------------------------
332 // Machine instruction Immediates 332 // Machine instruction Immediates
333 333
334 class Immediate BASE_EMBEDDED { 334 class Immediate BASE_EMBEDDED {
335 public: 335 public:
336 explicit Immediate(int32_t value) : value_(value) {} 336 explicit Immediate(int32_t value) : value_(value) {}
337 explicit Immediate(Address value, RelocInfo::Mode rmode) {
338 value_ = static_cast<int32_t>(reinterpret_cast<intptr_t>(value));
339 rmode_ = rmode;
340 }
337 explicit Immediate(Smi* value) { 341 explicit Immediate(Smi* value) {
338 DCHECK(SmiValuesAre31Bits()); // Only available for 31-bit SMI. 342 DCHECK(SmiValuesAre31Bits()); // Only available for 31-bit SMI.
339 value_ = static_cast<int32_t>(reinterpret_cast<intptr_t>(value)); 343 value_ = static_cast<int32_t>(reinterpret_cast<intptr_t>(value));
340 } 344 }
341 345
346 RelocInfo::Mode rmode() { return rmode_; }
347
342 private: 348 private:
343 int32_t value_; 349 int32_t value_;
350 RelocInfo::Mode rmode_ = RelocInfo::NONE32;
344 351
345 friend class Assembler; 352 friend class Assembler;
346 }; 353 };
347 354
348 355
349 // ----------------------------------------------------------------------------- 356 // -----------------------------------------------------------------------------
350 // Machine instruction Operands 357 // Machine instruction Operands
351 358
352 enum ScaleFactor { 359 enum ScaleFactor {
353 times_1 = 0, 360 times_1 = 0,
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 void movw(const Operand& dst, Immediate imm); 699 void movw(const Operand& dst, Immediate imm);
693 700
694 // Move the offset of the label location relative to the current 701 // Move the offset of the label location relative to the current
695 // position (after the move) to the destination. 702 // position (after the move) to the destination.
696 void movl(const Operand& dst, Label* src); 703 void movl(const Operand& dst, Label* src);
697 704
698 // Loads a pointer into a register with a relocation mode. 705 // Loads a pointer into a register with a relocation mode.
699 void movp(Register dst, void* ptr, RelocInfo::Mode rmode); 706 void movp(Register dst, void* ptr, RelocInfo::Mode rmode);
700 707
701 // Loads a 64-bit immediate into a register. 708 // Loads a 64-bit immediate into a register.
702 void movq(Register dst, int64_t value); 709 void movq(Register dst, int64_t value,
703 void movq(Register dst, uint64_t value); 710 RelocInfo::Mode rmode = RelocInfo::NONE64);
711 void movq(Register dst, uint64_t value,
712 RelocInfo::Mode rmode = RelocInfo::NONE64);
704 713
705 void movsxbl(Register dst, Register src); 714 void movsxbl(Register dst, Register src);
706 void movsxbl(Register dst, const Operand& src); 715 void movsxbl(Register dst, const Operand& src);
707 void movsxbq(Register dst, const Operand& src); 716 void movsxbq(Register dst, const Operand& src);
708 void movsxwl(Register dst, Register src); 717 void movsxwl(Register dst, Register src);
709 void movsxwl(Register dst, const Operand& src); 718 void movsxwl(Register dst, const Operand& src);
710 void movsxwq(Register dst, const Operand& src); 719 void movsxwq(Register dst, const Operand& src);
711 void movsxlq(Register dst, Register src); 720 void movsxlq(Register dst, Register src);
712 void movsxlq(Register dst, const Operand& src); 721 void movsxlq(Register dst, const Operand& src);
713 722
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 1746
1738 void emit(byte x) { *pc_++ = x; } 1747 void emit(byte x) { *pc_++ = x; }
1739 inline void emitl(uint32_t x); 1748 inline void emitl(uint32_t x);
1740 inline void emitp(void* x, RelocInfo::Mode rmode); 1749 inline void emitp(void* x, RelocInfo::Mode rmode);
1741 inline void emitq(uint64_t x); 1750 inline void emitq(uint64_t x);
1742 inline void emitw(uint16_t x); 1751 inline void emitw(uint16_t x);
1743 inline void emit_code_target(Handle<Code> target, 1752 inline void emit_code_target(Handle<Code> target,
1744 RelocInfo::Mode rmode, 1753 RelocInfo::Mode rmode,
1745 TypeFeedbackId ast_id = TypeFeedbackId::None()); 1754 TypeFeedbackId ast_id = TypeFeedbackId::None());
1746 inline void emit_runtime_entry(Address entry, RelocInfo::Mode rmode); 1755 inline void emit_runtime_entry(Address entry, RelocInfo::Mode rmode);
1747 void emit(Immediate x) { emitl(x.value_); } 1756 void emit(Immediate x) {
1757 if (!RelocInfo::IsNone(x.rmode_)) {
1758 RecordRelocInfo(x.rmode_);
1759 }
1760 emitl(x.value_);
1761 }
1748 1762
1749 // Emits a REX prefix that encodes a 64-bit operand size and 1763 // Emits a REX prefix that encodes a 64-bit operand size and
1750 // the top bit of both register codes. 1764 // the top bit of both register codes.
1751 // High bit of reg goes to REX.R, high bit of rm_reg goes to REX.B. 1765 // High bit of reg goes to REX.R, high bit of rm_reg goes to REX.B.
1752 // REX.W is set. 1766 // REX.W is set.
1753 inline void emit_rex_64(XMMRegister reg, Register rm_reg); 1767 inline void emit_rex_64(XMMRegister reg, Register rm_reg);
1754 inline void emit_rex_64(Register reg, XMMRegister rm_reg); 1768 inline void emit_rex_64(Register reg, XMMRegister rm_reg);
1755 inline void emit_rex_64(Register reg, Register rm_reg); 1769 inline void emit_rex_64(Register reg, Register rm_reg);
1756 1770
1757 // Emits a REX prefix that encodes a 64-bit operand size and 1771 // Emits a REX prefix that encodes a 64-bit operand size and
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 Assembler* assembler_; 2223 Assembler* assembler_;
2210 #ifdef DEBUG 2224 #ifdef DEBUG
2211 int space_before_; 2225 int space_before_;
2212 #endif 2226 #endif
2213 }; 2227 };
2214 2228
2215 } // namespace internal 2229 } // namespace internal
2216 } // namespace v8 2230 } // namespace v8
2217 2231
2218 #endif // V8_X64_ASSEMBLER_X64_H_ 2232 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« src/assembler.h ('K') | « src/ia32/assembler-ia32-inl.h ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698