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

Side by Side Diff: src/s390/assembler-s390.cc

Issue 2045943002: [compiler] [wasm] Introduce Word32/64ReverseBytes as TF Optional Opcode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update on store and some optimization on load Created 4 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
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 RRE_FORM_EMIT(flogr, FLOGR) 1423 RRE_FORM_EMIT(flogr, FLOGR)
1424 RRE_FORM_EMIT(lcgr, LCGR) 1424 RRE_FORM_EMIT(lcgr, LCGR)
1425 RR_FORM_EMIT(lcr, LCR) 1425 RR_FORM_EMIT(lcr, LCR)
1426 RX_FORM_EMIT(le_z, LE) 1426 RX_FORM_EMIT(le_z, LE)
1427 RXY_FORM_EMIT(ley, LEY) 1427 RXY_FORM_EMIT(ley, LEY)
1428 RIL1_FORM_EMIT(llihf, LLIHF) 1428 RIL1_FORM_EMIT(llihf, LLIHF)
1429 RIL1_FORM_EMIT(llilf, LLILF) 1429 RIL1_FORM_EMIT(llilf, LLILF)
1430 RRE_FORM_EMIT(lngr, LNGR) 1430 RRE_FORM_EMIT(lngr, LNGR)
1431 RR_FORM_EMIT(lnr, LNR) 1431 RR_FORM_EMIT(lnr, LNR)
1432 RSY1_FORM_EMIT(loc, LOC) 1432 RSY1_FORM_EMIT(loc, LOC)
1433 RRE_FORM_EMIT(lrvr, LRVR)
1434 RRE_FORM_EMIT(lrvgr, LRVGR)
1433 RXY_FORM_EMIT(lrv, LRV) 1435 RXY_FORM_EMIT(lrv, LRV)
1436 RXY_FORM_EMIT(lrvg, LRVG)
1434 RXY_FORM_EMIT(lrvh, LRVH) 1437 RXY_FORM_EMIT(lrvh, LRVH)
1435 SS1_FORM_EMIT(mvn, MVN) 1438 SS1_FORM_EMIT(mvn, MVN)
1436 SS1_FORM_EMIT(nc, NC) 1439 SS1_FORM_EMIT(nc, NC)
1437 SI_FORM_EMIT(ni, NI) 1440 SI_FORM_EMIT(ni, NI)
1438 RIL1_FORM_EMIT(nihf, NIHF) 1441 RIL1_FORM_EMIT(nihf, NIHF)
1439 RIL1_FORM_EMIT(nilf, NILF) 1442 RIL1_FORM_EMIT(nilf, NILF)
1440 RI1_FORM_EMIT(nilh, NILH) 1443 RI1_FORM_EMIT(nilh, NILH)
1441 RI1_FORM_EMIT(nill, NILL) 1444 RI1_FORM_EMIT(nill, NILL)
1442 RIL1_FORM_EMIT(oihf, OIHF) 1445 RIL1_FORM_EMIT(oihf, OIHF)
1443 RIL1_FORM_EMIT(oilf, OILF) 1446 RIL1_FORM_EMIT(oilf, OILF)
1444 RI1_FORM_EMIT(oill, OILL) 1447 RI1_FORM_EMIT(oill, OILL)
1445 RRE_FORM_EMIT(popcnt, POPCNT_Z) 1448 RRE_FORM_EMIT(popcnt, POPCNT_Z)
1446 RIL1_FORM_EMIT(slfi, SLFI) 1449 RIL1_FORM_EMIT(slfi, SLFI)
1447 RXY_FORM_EMIT(slgf, SLGF) 1450 RXY_FORM_EMIT(slgf, SLGF)
1448 RIL1_FORM_EMIT(slgfi, SLGFI) 1451 RIL1_FORM_EMIT(slgfi, SLGFI)
1452 RXY_FORM_EMIT(strvh, STRVH)
1449 RXY_FORM_EMIT(strv, STRV) 1453 RXY_FORM_EMIT(strv, STRV)
1454 RXY_FORM_EMIT(strvg, STRVG)
1450 RI1_FORM_EMIT(tmll, TMLL) 1455 RI1_FORM_EMIT(tmll, TMLL)
1451 SS1_FORM_EMIT(tr, TR) 1456 SS1_FORM_EMIT(tr, TR)
1452 S_FORM_EMIT(ts, TS) 1457 S_FORM_EMIT(ts, TS)
1453 RIL1_FORM_EMIT(xihf, XIHF) 1458 RIL1_FORM_EMIT(xihf, XIHF)
1454 RIL1_FORM_EMIT(xilf, XILF) 1459 RIL1_FORM_EMIT(xilf, XILF)
1455 1460
1456 // ------------------------- 1461 // -------------------------
1457 // Load Address Instructions 1462 // Load Address Instructions
1458 // ------------------------- 1463 // -------------------------
1459 // Load Address Register-Storage 1464 // Load Address Register-Storage
(...skipping 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after
3090 3095
3091 reloc_info_writer.Write(&rinfo); 3096 reloc_info_writer.Write(&rinfo);
3092 } 3097 }
3093 3098
3094 reloc_info_writer.Finish(); 3099 reloc_info_writer.Finish();
3095 } 3100 }
3096 3101
3097 } // namespace internal 3102 } // namespace internal
3098 } // namespace v8 3103 } // namespace v8
3099 #endif // V8_TARGET_ARCH_S390 3104 #endif // V8_TARGET_ARCH_S390
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698