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

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

Issue 1380863004: Revert of Reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/arm64/utils-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_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 "src/allocation.h" 11 #include "src/allocation.h"
12 #include "src/arm64/assembler-arm64.h" 12 #include "src/arm64/assembler-arm64.h"
13 #include "src/arm64/decoder-arm64.h" 13 #include "src/arm64/decoder-arm64.h"
14 #include "src/arm64/disasm-arm64.h" 14 #include "src/arm64/disasm-arm64.h"
15 #include "src/arm64/instrument-arm64.h" 15 #include "src/arm64/instrument-arm64.h"
16 #include "src/assembler.h" 16 #include "src/assembler.h"
17 #include "src/globals.h" 17 #include "src/globals.h"
18 #include "src/utils.h" 18 #include "src/utils.h"
19 19
20 #define REGISTER_CODE_LIST(R) \
21 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \
22 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \
23 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \
24 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31)
25
20 namespace v8 { 26 namespace v8 {
21 namespace internal { 27 namespace internal {
22 28
23 #if !defined(USE_SIMULATOR) 29 #if !defined(USE_SIMULATOR)
24 30
25 // Running without a simulator on a native ARM64 platform. 31 // Running without a simulator on a native ARM64 platform.
26 // When running without a simulator we call the entry directly. 32 // When running without a simulator we call the entry directly.
27 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \ 33 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
28 (entry(p0, p1, p2, p3, p4)) 34 (entry(p0, p1, p2, p3, p4))
29 35
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 Simulator::current(Isolate::Current())->PopAddress(); 908 Simulator::current(Isolate::Current())->PopAddress();
903 } 909 }
904 }; 910 };
905 911
906 #endif // !defined(USE_SIMULATOR) 912 #endif // !defined(USE_SIMULATOR)
907 913
908 } // namespace internal 914 } // namespace internal
909 } // namespace v8 915 } // namespace v8
910 916
911 #endif // V8_ARM64_SIMULATOR_ARM64_H_ 917 #endif // V8_ARM64_SIMULATOR_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/arm64/utils-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698