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

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

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/arm64/codegen-arm64.cc » ('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 10
11 #include "src/arm64/instructions-arm64.h"
12 #include "src/assembler.h"
11 #include "src/cpu.h" 13 #include "src/cpu.h"
12 #include "src/globals.h" 14 #include "src/globals.h"
15 #include "src/serialize.h"
13 #include "src/utils.h" 16 #include "src/utils.h"
14 #include "src/assembler.h"
15 #include "src/serialize.h"
16 #include "src/arm64/instructions-arm64.h"
17 17
18 18
19 namespace v8 { 19 namespace v8 {
20 namespace internal { 20 namespace internal {
21 21
22 22
23 // ----------------------------------------------------------------------------- 23 // -----------------------------------------------------------------------------
24 // Registers. 24 // Registers.
25 #define REGISTER_CODE_LIST(R) \ 25 #define REGISTER_CODE_LIST(R) \
26 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ 26 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \
(...skipping 2220 matching lines...) Expand 10 before | Expand all | Expand 10 after
2247 class EnsureSpace BASE_EMBEDDED { 2247 class EnsureSpace BASE_EMBEDDED {
2248 public: 2248 public:
2249 explicit EnsureSpace(Assembler* assembler) { 2249 explicit EnsureSpace(Assembler* assembler) {
2250 assembler->CheckBufferSpace(); 2250 assembler->CheckBufferSpace();
2251 } 2251 }
2252 }; 2252 };
2253 2253
2254 } } // namespace v8::internal 2254 } } // namespace v8::internal
2255 2255
2256 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ 2256 #endif // V8_ARM64_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/arm64/codegen-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698