Skip to content

Commit

Permalink
instcountci: Implement NZCVSelectV for selection on FPRs
Browse files Browse the repository at this point in the history
  • Loading branch information
pmatos committed Oct 7, 2024
1 parent 955bba9 commit e4b44ac
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions unittests/InstructionCountCI/Primary.json
Original file line number Diff line number Diff line change
Expand Up @@ -1996,10 +1996,10 @@
"ExpectedInstructionCount": 4,
"Comment": "0x86",
"ExpectedArm64ASM": [
"mov x20, x7",
"bfxil x20, x6, #0, #8",
"bfxil x6, x7, #0, #8",
"mov x7, x20"
"mov x20, x6",
"bfxil x20, x7, #0, #8",
"bfxil x7, x6, #0, #8",
"mov x6, x20"
]
},
"xchg [rax], cl": {
Expand All @@ -2014,10 +2014,10 @@
"ExpectedInstructionCount": 4,
"Comment": "0x87",
"ExpectedArm64ASM": [
"mov x20, x7",
"bfxil x20, x6, #0, #16",
"bfxil x6, x7, #0, #16",
"mov x7, x20"
"mov x20, x6",
"bfxil x20, x7, #0, #16",
"bfxil x7, x6, #0, #16",
"mov x6, x20"
]
},
"xchg [rax], cx": {
Expand All @@ -2032,9 +2032,9 @@
"ExpectedInstructionCount": 3,
"Comment": "0x87",
"ExpectedArm64ASM": [
"mov w20, w6",
"mov w6, w7",
"mov x7, x20"
"mov w20, w7",
"mov w7, w6",
"mov x6, x20"
]
},
"xchg [rax], ecx": {
Expand Down

0 comments on commit e4b44ac

Please sign in to comment.