OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 | 5 |
6 // Declares a Simulator for ARM instructions if we are not generating a native | 6 // Declares a Simulator for ARM instructions if we are not generating a native |
7 // ARM binary. This Simulator allows us to run and debug ARM code generation on | 7 // ARM binary. This Simulator allows us to run and debug ARM code generation on |
8 // regular desktop machines. | 8 // regular desktop machines. |
9 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro, | 9 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro, |
10 // which will start execution in the Simulator or forwards to the real entry | 10 // which will start execution in the Simulator or forwards to the real entry |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 static inline void UnregisterCTryCatch() { } | 55 static inline void UnregisterCTryCatch() { } |
56 }; | 56 }; |
57 | 57 |
58 } } // namespace v8::internal | 58 } } // namespace v8::internal |
59 | 59 |
60 #else // !defined(USE_SIMULATOR) | 60 #else // !defined(USE_SIMULATOR) |
61 // Running with a simulator. | 61 // Running with a simulator. |
62 | 62 |
63 #include "src/arm/constants-arm.h" | 63 #include "src/arm/constants-arm.h" |
| 64 #include "src/assembler.h" |
64 #include "src/hashmap.h" | 65 #include "src/hashmap.h" |
65 #include "src/assembler.h" | |
66 | 66 |
67 namespace v8 { | 67 namespace v8 { |
68 namespace internal { | 68 namespace internal { |
69 | 69 |
70 class CachePage { | 70 class CachePage { |
71 public: | 71 public: |
72 static const int LINE_VALID = 0; | 72 static const int LINE_VALID = 0; |
73 static const int LINE_INVALID = 1; | 73 static const int LINE_INVALID = 1; |
74 | 74 |
75 static const int kPageShift = 12; | 75 static const int kPageShift = 12; |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 453 |
454 static inline void UnregisterCTryCatch() { | 454 static inline void UnregisterCTryCatch() { |
455 Simulator::current(Isolate::Current())->PopAddress(); | 455 Simulator::current(Isolate::Current())->PopAddress(); |
456 } | 456 } |
457 }; | 457 }; |
458 | 458 |
459 } } // namespace v8::internal | 459 } } // namespace v8::internal |
460 | 460 |
461 #endif // !defined(USE_SIMULATOR) | 461 #endif // !defined(USE_SIMULATOR) |
462 #endif // V8_ARM_SIMULATOR_ARM_H_ | 462 #endif // V8_ARM_SIMULATOR_ARM_H_ |
OLD | NEW |