OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 // Declares a Simulator for S390 instructions if we are not generating a native | 5 // Declares a Simulator for S390 instructions if we are not generating a native |
6 // S390 binary. This Simulator allows us to run and debug S390 code generation | 6 // S390 binary. This Simulator allows us to run and debug S390 code generation |
7 // on regular desktop machines. | 7 // on regular desktop machines. |
8 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro, | 8 // V8 calls into generated code by "calling" the CALL_GENERATED_CODE macro, |
9 // which will start execution in the Simulator or forwards to the real entry | 9 // which will start execution in the Simulator or forwards to the real entry |
10 // on a S390 hardware platform. | 10 // on a S390 hardware platform. |
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1055 EVALUATE(CGF); | 1055 EVALUATE(CGF); |
1056 EVALUATE(CLGF); | 1056 EVALUATE(CLGF); |
1057 EVALUATE(LTGF); | 1057 EVALUATE(LTGF); |
1058 EVALUATE(CGH); | 1058 EVALUATE(CGH); |
1059 EVALUATE(PFD); | 1059 EVALUATE(PFD); |
1060 EVALUATE(STRV); | 1060 EVALUATE(STRV); |
1061 EVALUATE(STRVH); | 1061 EVALUATE(STRVH); |
1062 EVALUATE(BCTG); | 1062 EVALUATE(BCTG); |
1063 EVALUATE(STY); | 1063 EVALUATE(STY); |
1064 EVALUATE(MSY); | 1064 EVALUATE(MSY); |
| 1065 EVALUATE(MSC); |
1065 EVALUATE(NY); | 1066 EVALUATE(NY); |
1066 EVALUATE(CLY); | 1067 EVALUATE(CLY); |
1067 EVALUATE(OY); | 1068 EVALUATE(OY); |
1068 EVALUATE(XY); | 1069 EVALUATE(XY); |
1069 EVALUATE(LY); | 1070 EVALUATE(LY); |
1070 EVALUATE(CY); | 1071 EVALUATE(CY); |
1071 EVALUATE(AY); | 1072 EVALUATE(AY); |
1072 EVALUATE(SY); | 1073 EVALUATE(SY); |
1073 EVALUATE(MFY); | 1074 EVALUATE(MFY); |
1074 EVALUATE(ALY); | 1075 EVALUATE(ALY); |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1283 static inline void UnregisterCTryCatch(v8::internal::Isolate* isolate) { | 1284 static inline void UnregisterCTryCatch(v8::internal::Isolate* isolate) { |
1284 Simulator::current(isolate)->PopAddress(); | 1285 Simulator::current(isolate)->PopAddress(); |
1285 } | 1286 } |
1286 }; | 1287 }; |
1287 | 1288 |
1288 } // namespace internal | 1289 } // namespace internal |
1289 } // namespace v8 | 1290 } // namespace v8 |
1290 | 1291 |
1291 #endif // !defined(USE_SIMULATOR) | 1292 #endif // !defined(USE_SIMULATOR) |
1292 #endif // V8_S390_SIMULATOR_S390_H_ | 1293 #endif // V8_S390_SIMULATOR_S390_H_ |
OLD | NEW |