1 ; RUN: llc < %s -march=bpf -mattr=+alu32 -verify-machineinstrs | FileCheck %s
9 ; ptr test(int flag, struct __sk_buff *skb)
14 ; p = (ptr)(long)skb->data;
15 ; __asm__ __volatile__("": : :"memory");
17 ; p = (ptr)(long)skb->data_end;
18 ; __asm__ __volatile__("": : :"memory");
24 ; clang -target bpf -O2 -S -emit-llvm t.c
26 %struct.__sk_buff = type { i32, i32 }
28 define dso_local ptr @test(i32 %flag, ptr nocapture readonly %skb) local_unnamed_addr {
30 %tobool = icmp eq i32 %flag, 0
31 br i1 %tobool, label %if.else, label %if.then
34 %0 = load i32, ptr %skb, align 4
35 tail call void asm sideeffect "", "~{memory}"()
39 %data_end = getelementptr inbounds %struct.__sk_buff, ptr %skb, i64 0, i32 1
40 %1 = load i32, ptr %data_end, align 4
41 tail call void asm sideeffect "", "~{memory}"()
45 %p.0.in.in = phi i32 [ %0, %if.then ], [ %1, %if.else ]
46 %p.0.in = zext i32 %p.0.in.in to i64
47 %p.0 = inttoptr i64 %p.0.in to ptr
51 ; CHECK: w0 = *(u32 *)(r2 + 0)
52 ; CHECK: w0 = *(u32 *)(r2 + 4)
53 ; CHECK-NOT: r[[#]] = w[[#]]