xref: /llvm-project/llvm/test/CodeGen/Mips/GlobalISel/legalizer/global_address.mir (revision 60442f0d442723a487528bdd8b48b24657a025e8)
1# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2# RUN: llc -O0 -mtriple=mipsel-linux-gnu -run-pass=legalizer -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32
3--- |
4
5  @.str = private unnamed_addr constant [11 x i8] c"hello %d \0A\00"
6
7  define void @main() {entry: ret void}
8  declare i32 @printf(ptr, ...)
9
10...
11---
12name:            main
13alignment:       4
14tracksRegLiveness: true
15body:             |
16  bb.1.entry:
17    ; MIPS32-LABEL: name: main
18    ; MIPS32: [[GV:%[0-9]+]]:_(p0) = G_GLOBAL_VALUE @.str
19    ; MIPS32: [[COPY:%[0-9]+]]:_(p0) = COPY [[GV]](p0)
20    ; MIPS32: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 1234567890
21    ; MIPS32: [[C1:%[0-9]+]]:_(s32) = G_CONSTANT i32 0
22    ; MIPS32: ADJCALLSTACKDOWN 16, 0, implicit-def $sp, implicit $sp
23    ; MIPS32: $a0 = COPY [[COPY]](p0)
24    ; MIPS32: $a1 = COPY [[C]](s32)
25    ; MIPS32: JAL @printf, csr_o32, implicit-def $ra, implicit-def $sp, implicit $a0, implicit $a1, implicit-def $v0
26    ; MIPS32: [[COPY1:%[0-9]+]]:_(s32) = COPY $v0
27    ; MIPS32: ADJCALLSTACKUP 16, 0, implicit-def $sp, implicit $sp
28    ; MIPS32: $v0 = COPY [[C1]](s32)
29    ; MIPS32: RetRA implicit $v0
30    %2:_(p0) = G_GLOBAL_VALUE @.str
31    %1:_(p0) = COPY %2(p0)
32    %3:_(s32) = G_CONSTANT i32 1234567890
33    %4:_(s32) = G_CONSTANT i32 0
34    ADJCALLSTACKDOWN 16, 0, implicit-def $sp, implicit $sp
35    $a0 = COPY %1(p0)
36    $a1 = COPY %3(s32)
37    JAL @printf, csr_o32, implicit-def $ra, implicit-def $sp, implicit $a0, implicit $a1, implicit-def $v0
38    %0:_(s32) = COPY $v0
39    ADJCALLSTACKUP 16, 0, implicit-def $sp, implicit $sp
40    $v0 = COPY %4(s32)
41    RetRA implicit $v0
42
43...
44