diff options
| author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-15 16:33:45 +0000 |
|---|---|---|
| committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-15 16:33:45 +0000 |
| commit | 0b5bdceabfeaf67c91e5ccfed0320a82781f555c (patch) | |
| tree | a69055b06a17fc2cbebac494e14e7852e1cefca0 /llvm/lib/Target/X86 | |
| parent | b952e639d9dc0cf9c7d46231d080e436fae5f9e4 (diff) | |
| download | bcm5719-llvm-0b5bdceabfeaf67c91e5ccfed0320a82781f555c.tar.gz bcm5719-llvm-0b5bdceabfeaf67c91e5ccfed0320a82781f555c.zip | |
[CodeGen] Print stack object references as %(fixed-)stack.0 in both MIR and debug output
Work towards the unification of MIR and debug output by printing
`%stack.0` instead of `<fi#0>`, and `%fixed-stack.0` instead of
`<fi#-4>` (supposing there are 4 fixed stack objects).
Only debug syntax is affected.
Differential Revision: https://reviews.llvm.org/D41027
llvm-svn: 320827
Diffstat (limited to 'llvm/lib/Target/X86')
| -rw-r--r-- | llvm/lib/Target/X86/README-SSE.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/README-SSE.txt b/llvm/lib/Target/X86/README-SSE.txt index ffc404d5e33..73cf2769244 100644 --- a/llvm/lib/Target/X86/README-SSE.txt +++ b/llvm/lib/Target/X86/README-SSE.txt @@ -167,16 +167,16 @@ Still ok. After register allocation: cond_next140 (0xa910740, LLVM BB @0xa90beb0): %eax = MOV32ri -3 - %edx = MOV32rm <fi#3>, 1, %noreg, 0 + %edx = MOV32rm %stack.3, 1, %noreg, 0 ADD32rm %eax<def&use>, %edx, 1, %noreg, 0 - %edx = MOV32rm <fi#7>, 1, %noreg, 0 + %edx = MOV32rm %stack.7, 1, %noreg, 0 %edx = MOV32rm %edx, 1, %noreg, 40 IMUL32rr %eax<def&use>, %edx - %esi = MOV32rm <fi#5>, 1, %noreg, 0 + %esi = MOV32rm %stack.5, 1, %noreg, 0 %esi = MOV32rm %esi, 1, %noreg, 0 - MOV32mr <fi#4>, 1, %noreg, 0, %esi + MOV32mr %stack.4, 1, %noreg, 0, %esi %eax = LEA32r %esi, 1, %eax, -3 - %esi = MOV32rm <fi#7>, 1, %noreg, 0 + %esi = MOV32rm %stack.7, 1, %noreg, 0 %esi = MOV32rm %esi, 1, %noreg, 32 %edi = MOV32rr %eax SHL32ri %edi<def&use>, 4 |

