mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
This commit serializes the global address machine operands. This commit doesn't serialize the operand's offset and target flags, it serializes only the global value reference. Reviewers: Duncan P. N. Exon Smith Differential Revision: http://reviews.llvm.org/D10671 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240851 91177308-0d34-0410-b5e6-96231b3b80d8
50 lines
1007 B
YAML
50 lines
1007 B
YAML
# RUN: llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s | FileCheck %s
|
|
# This test ensures that the MIR parser parses global value operands correctly.
|
|
|
|
--- |
|
|
|
|
@G = external global i32
|
|
@0 = external global i32
|
|
|
|
define i32 @inc() {
|
|
entry:
|
|
%a = load i32, i32* @G
|
|
%b = add i32 %a, 1
|
|
ret i32 %b
|
|
}
|
|
|
|
define i32 @inc2() {
|
|
entry:
|
|
%a = load i32, i32* @0
|
|
%b = add i32 %a, 1
|
|
ret i32 %b
|
|
}
|
|
|
|
...
|
|
---
|
|
# CHECK: name: inc
|
|
name: inc
|
|
body:
|
|
- id: 0
|
|
name: entry
|
|
instructions:
|
|
# CHECK: - '%rax = MOV64rm %rip, 1, _, @G, _'
|
|
- '%rax = MOV64rm %rip, 1, _, @G, _'
|
|
- '%eax = MOV32rm %rax, 1, _, 0, _'
|
|
- '%eax = INC32r %eax'
|
|
- 'RETQ %eax'
|
|
...
|
|
---
|
|
# CHECK: name: inc2
|
|
name: inc2
|
|
body:
|
|
- id: 0
|
|
name: entry
|
|
instructions:
|
|
# CHECK: - '%rax = MOV64rm %rip, 1, _, @0, _'
|
|
- '%rax = MOV64rm %rip, 1, _, @0, _'
|
|
- '%eax = MOV32rm %rax, 1, _, 0, _'
|
|
- '%eax = INC32r %eax'
|
|
- 'RETQ %eax'
|
|
...
|