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

Side by Side Diff: src/arm64/assembler-arm64.h

Issue 484643002: Version 3.28.71.3 (merged r23081) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/lithium-arm.h ('k') | src/arm64/instrument-arm64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_ 5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_
6 #define V8_ARM64_ASSEMBLER_ARM64_H_ 6 #define V8_ARM64_ASSEMBLER_ARM64_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 Register reg_; 690 Register reg_;
691 Shift shift_; 691 Shift shift_;
692 Extend extend_; 692 Extend extend_;
693 unsigned shift_amount_; 693 unsigned shift_amount_;
694 }; 694 };
695 695
696 696
697 // MemOperand represents a memory operand in a load or store instruction. 697 // MemOperand represents a memory operand in a load or store instruction.
698 class MemOperand { 698 class MemOperand {
699 public: 699 public:
700 inline explicit MemOperand(); 700 inline MemOperand();
701 inline explicit MemOperand(Register base, 701 inline explicit MemOperand(Register base,
702 ptrdiff_t offset = 0, 702 ptrdiff_t offset = 0,
703 AddrMode addrmode = Offset); 703 AddrMode addrmode = Offset);
704 inline explicit MemOperand(Register base, 704 inline explicit MemOperand(Register base,
705 Register regoffset, 705 Register regoffset,
706 Shift shift = LSL, 706 Shift shift = LSL,
707 unsigned shift_amount = 0); 707 unsigned shift_amount = 0);
708 inline explicit MemOperand(Register base, 708 inline explicit MemOperand(Register base,
709 Register regoffset, 709 Register regoffset,
710 Extend extend, 710 Extend extend,
(...skipping 1588 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 class EnsureSpace BASE_EMBEDDED { 2299 class EnsureSpace BASE_EMBEDDED {
2300 public: 2300 public:
2301 explicit EnsureSpace(Assembler* assembler) { 2301 explicit EnsureSpace(Assembler* assembler) {
2302 assembler->CheckBufferSpace(); 2302 assembler->CheckBufferSpace();
2303 } 2303 }
2304 }; 2304 };
2305 2305
2306 } } // namespace v8::internal 2306 } } // namespace v8::internal
2307 2307
2308 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ 2308 #endif // V8_ARM64_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.h ('k') | src/arm64/instrument-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698