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

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

Issue 304153016: Use full include paths everywhere (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/arm64/regexp-macro-assembler-arm64.cc ('k') | src/arm64/simulator-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_SIMULATOR_ARM64_H_ 5 #ifndef V8_ARM64_SIMULATOR_ARM64_H_
6 #define V8_ARM64_SIMULATOR_ARM64_H_ 6 #define V8_ARM64_SIMULATOR_ARM64_H_
7 7
8 #include <stdarg.h> 8 #include <stdarg.h>
9 #include <vector> 9 #include <vector>
10 10
11 #include "v8.h" 11 #include "src/v8.h"
12 12
13 #include "globals.h" 13 #include "src/globals.h"
14 #include "utils.h" 14 #include "src/utils.h"
15 #include "allocation.h" 15 #include "src/allocation.h"
16 #include "assembler.h" 16 #include "src/assembler.h"
17 #include "arm64/assembler-arm64.h" 17 #include "src/arm64/assembler-arm64.h"
18 #include "arm64/decoder-arm64.h" 18 #include "src/arm64/decoder-arm64.h"
19 #include "arm64/disasm-arm64.h" 19 #include "src/arm64/disasm-arm64.h"
20 #include "arm64/instrument-arm64.h" 20 #include "src/arm64/instrument-arm64.h"
21 21
22 #define REGISTER_CODE_LIST(R) \ 22 #define REGISTER_CODE_LIST(R) \
23 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ 23 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \
24 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \ 24 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \
25 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \ 25 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \
26 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31) 26 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31)
27 27
28 namespace v8 { 28 namespace v8 {
29 namespace internal { 29 namespace internal {
30 30
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 static void UnregisterCTryCatch() { 873 static void UnregisterCTryCatch() {
874 Simulator::current(Isolate::Current())->PopAddress(); 874 Simulator::current(Isolate::Current())->PopAddress();
875 } 875 }
876 }; 876 };
877 877
878 #endif // !defined(USE_SIMULATOR) 878 #endif // !defined(USE_SIMULATOR)
879 879
880 } } // namespace v8::internal 880 } } // namespace v8::internal
881 881
882 #endif // V8_ARM64_SIMULATOR_ARM64_H_ 882 #endif // V8_ARM64_SIMULATOR_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/regexp-macro-assembler-arm64.cc ('k') | src/arm64/simulator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698