File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5223,7 +5223,7 @@ emitter::insExecutionCharacteristics emitter::getInsExecutionCharacteristics(ins
52235223 }
52245224 else // ins == load
52255225 { // pcaddu12i + load or lu12i.w + lu32i.d + load
5226- result.insMemoryAccessKind = PERFSCORE_LATENCY_RD_STACK ;
5226+ result.insMemoryAccessKind = PERFSCORE_MEMORY_READ ;
52275227 result.insThroughput = (CombinedInsCnt == 2 ) ? PERFSCORE_THROUGHPUT_4C : PERFSCORE_THROUGHPUT_7C;
52285228 if ((INS_ld_b <= ins) && (ins <= INS_ld_wu))
52295229 {
@@ -5274,7 +5274,7 @@ emitter::insExecutionCharacteristics emitter::getInsExecutionCharacteristics(ins
52745274 { // pcalau12i + (addi.d or ld.d)
52755275 result.insLatency = id->idIsCnsReloc () ? PERFSCORE_LATENCY_2C : PERFSCORE_LATENCY_5C;
52765276 result.insThroughput = id->idIsCnsReloc () ? PERFSCORE_THROUGHPUT_6C : PERFSCORE_THROUGHPUT_4C;
5277- result.insMemoryAccessKind = id->idIsCnsReloc () ? PERFSCORE_MEMORY_NONE : PERFSCORE_LATENCY_RD_STACK ;
5277+ result.insMemoryAccessKind = id->idIsCnsReloc () ? PERFSCORE_MEMORY_NONE : PERFSCORE_MEMORY_READ ;
52785278 }
52795279 else
52805280 {
You can’t perform that action at this time.
0 commit comments