blob: e8e98ecc3307bf8a7b7b1a7e21e3ae46575f36c4 [file] [log] [blame]
Dan Gohmana4b710a2015-12-06 19:33:32 +00001; RUN: llc < %s -asm-verbose=false | FileCheck %s
2
3; Test that constant offsets can be folded into global addresses.
4
Dan Gohman0c6f5ac2016-01-07 03:19:23 +00005target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
Dan Gohmand934cb82017-02-24 23:18:00 +00006target triple = "wasm32-unknown-unknown-wasm"
Dan Gohmana4b710a2015-12-06 19:33:32 +00007
Dan Gohmanf2f92f12016-01-15 23:47:19 +00008@x = external global [0 x i32]
Dan Gohmana4b710a2015-12-06 19:33:32 +00009@y = global [50 x i32] zeroinitializer
10
11; Test basic constant offsets of both defined and external symbols.
12
13; CHECK-LABEL: test0:
14; CHECK-NEXT: .result i32{{$}}
15; CHECK-NEXT: i32.const $push0=, x+188{{$}}
16; CHECK=NEXT: return $pop0{{$}}
17define i32* @test0() {
18 ret i32* getelementptr ([0 x i32], [0 x i32]* @x, i32 0, i32 47)
19}
20
21; CHECK-LABEL: test1:
22; CHECK-NEXT: .result i32{{$}}
23; CHECK-NEXT: i32.const $push0=, y+188{{$}}
24; CHECK=NEXT: return $pop0{{$}}
25define i32* @test1() {
26 ret i32* getelementptr ([50 x i32], [50 x i32]* @y, i32 0, i32 47)
27}
28
29; Test zero offsets.
30
31; CHECK-LABEL: test2:
32; CHECK-NEXT: .result i32{{$}}
33; CHECK-NEXT: i32.const $push0=, x{{$}}
34; CHECK=NEXT: return $pop0{{$}}
35define i32* @test2() {
36 ret i32* getelementptr ([0 x i32], [0 x i32]* @x, i32 0, i32 0)
37}
38
39; CHECK-LABEL: test3:
40; CHECK-NEXT: .result i32{{$}}
41; CHECK-NEXT: i32.const $push0=, y{{$}}
42; CHECK=NEXT: return $pop0{{$}}
43define i32* @test3() {
44 ret i32* getelementptr ([50 x i32], [50 x i32]* @y, i32 0, i32 0)
45}
Dan Gohman619db962016-01-25 15:19:39 +000046
47; Test negative offsets.
48
49; CHECK-LABEL: test4:
50; CHECK-NEXT: .result i32{{$}}
51; CHECK-NEXT: i32.const $push0=, x-188{{$}}
52; CHECK=NEXT: return $pop0{{$}}
53define i32* @test4() {
54 ret i32* getelementptr ([0 x i32], [0 x i32]* @x, i32 0, i32 -47)
55}
56
57; CHECK-LABEL: test5:
58; CHECK-NEXT: .result i32{{$}}
59; CHECK-NEXT: i32.const $push0=, y-188{{$}}
60; CHECK=NEXT: return $pop0{{$}}
61define i32* @test5() {
62 ret i32* getelementptr ([50 x i32], [50 x i32]* @y, i32 0, i32 -47)
63}