We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ecbe0 commit fa1acc6Copy full SHA for fa1acc6
src/coreclr/jit/emit.h
@@ -1921,6 +1921,7 @@ class emitter
1921
#define PERFSCORE_LATENCY_26C 26.0f
1922
#define PERFSCORE_LATENCY_62C 62.0f
1923
#define PERFSCORE_LATENCY_69C 69.0f
1924
+#define PERFSCORE_LATENCY_105C 105.0f
1925
#define PERFSCORE_LATENCY_140C 140.0f
1926
#define PERFSCORE_LATENCY_400C 400.0f // Intel microcode issue with these instructions
1927
src/coreclr/jit/emitxarch.cpp
@@ -20056,6 +20056,7 @@ emitter::insExecutionCharacteristics emitter::getInsExecutionCharacteristics(ins
20056
case INS_serialize:
20057
{
20058
result.insThroughput = PERFSCORE_THROUGHPUT_50C;
20059
+ result.insLatency = PERFSCORE_LATENCY_105C;
20060
break;
20061
}
20062
0 commit comments