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

Unified Diff: src/compiler/x64/instruction-scheduler-x64.cc

Issue 2130153003: [turbofan] Add instruction latency modeling for ia32 and x64 platform (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase on Oct. 8 Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/ia32/instruction-scheduler-ia32.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/x64/instruction-scheduler-x64.cc
diff --git a/src/compiler/x64/instruction-scheduler-x64.cc b/src/compiler/x64/instruction-scheduler-x64.cc
index 4208d8a5949c071c2c2d6b9895db31d43abe137e..ef0c3ad92c0338e908adbeed9a594cccde70a2c7 100644
--- a/src/compiler/x64/instruction-scheduler-x64.cc
+++ b/src/compiler/x64/instruction-scheduler-x64.cc
@@ -194,8 +194,77 @@ int InstructionScheduler::GetTargetInstructionFlags(
int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
- // TODO(all): Add instruction cost modeling.
- return 1;
+ // Basic latency modeling for x64 instructions. They have been determined
+ // in an empirical way.
+ switch (instr->arch_opcode()) {
+ case kCheckedLoadInt8:
+ case kCheckedLoadUint8:
+ case kCheckedLoadInt16:
+ case kCheckedLoadUint16:
+ case kCheckedLoadWord32:
+ case kCheckedLoadWord64:
+ case kCheckedLoadFloat32:
+ case kCheckedLoadFloat64:
+ case kCheckedStoreWord8:
+ case kCheckedStoreWord16:
+ case kCheckedStoreWord32:
+ case kCheckedStoreWord64:
+ case kCheckedStoreFloat32:
+ case kCheckedStoreFloat64:
+ case kSSEFloat64Mul:
+ return 5;
+ case kX64Imul:
+ case kX64Imul32:
+ case kX64ImulHigh32:
+ case kX64UmulHigh32:
+ case kSSEFloat32Cmp:
+ case kSSEFloat32Add:
+ case kSSEFloat32Sub:
+ case kSSEFloat32Abs:
+ case kSSEFloat32Neg:
+ case kSSEFloat64Cmp:
+ case kSSEFloat64Add:
+ case kSSEFloat64Sub:
+ case kSSEFloat64Max:
+ case kSSEFloat64Min:
+ case kSSEFloat64Abs:
+ case kSSEFloat64Neg:
+ return 3;
+ case kSSEFloat32Mul:
+ case kSSEFloat32ToFloat64:
+ case kSSEFloat64ToFloat32:
+ case kSSEFloat32Round:
+ case kSSEFloat64Round:
+ case kSSEFloat32ToInt32:
+ case kSSEFloat32ToUint32:
+ case kSSEFloat64ToInt32:
+ case kSSEFloat64ToUint32:
+ return 4;
+ case kX64Idiv:
+ return 49;
+ case kX64Idiv32:
+ return 35;
+ case kX64Udiv:
+ return 38;
+ case kX64Udiv32:
+ return 26;
+ case kSSEFloat32Div:
+ case kSSEFloat64Div:
+ case kSSEFloat32Sqrt:
+ case kSSEFloat64Sqrt:
+ return 13;
+ case kSSEFloat32ToInt64:
+ case kSSEFloat64ToInt64:
+ case kSSEFloat32ToUint64:
+ case kSSEFloat64ToUint64:
+ return 10;
+ case kSSEFloat64Mod:
+ return 50;
+ case kArchTruncateDoubleToI:
+ return 6;
+ default:
+ return 1;
+ }
}
} // namespace compiler
« no previous file with comments | « src/compiler/ia32/instruction-scheduler-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698