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

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

Issue 2795803003: s390: exploit new mul in TF (Closed)
Patch Set: rebase Created 3 years, 8 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/s390/disasm-s390.cc ('k') | src/s390/simulator-s390.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 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
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
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_
OLDNEW
« no previous file with comments | « src/s390/disasm-s390.cc ('k') | src/s390/simulator-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698