[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64_32-pointer-extend.ll
blob2d6f0fbe3088896990925696d3915e98499aeaaa
1 ; RUN: llc -mtriple=arm64_32-apple-ios7.0 %s -o - | FileCheck %s
3 define void @pass_pointer(i64 %in) {
4 ; CHECK-LABEL: pass_pointer:
5 ; CHECK: and x0, x0, #0xffffffff
6 ; CHECK: bl _take_pointer
8   %in32 = trunc i64 %in to i32
9   %ptr = inttoptr i32 %in32 to ptr
10   call i64 @take_pointer(ptr %ptr)
11   ret void
14 define i64 @take_pointer(ptr %ptr) nounwind {
15 ; CHECK-LABEL: take_pointer:
16 ; CHECK-NEXT: %bb.0
17 ; CHECK-NEXT: ret
19   %val = ptrtoint ptr %ptr to i32
20   %res = zext i32 %val to i64
21   ret i64 %res
24 define i32 @callee_ptr_stack_slot([8 x i64], ptr, i32 %val) {
25 ; CHECK-LABEL: callee_ptr_stack_slot:
26 ; CHECK: ldr w0, [sp, #4]
28   ret i32 %val
31 define void @caller_ptr_stack_slot(ptr %ptr) {
32 ; CHECK-LABEL: caller_ptr_stack_slot:
33 ; CHECK-DAG: mov [[VAL:w[0-9]]], #42
34 ; CHECK: stp w0, [[VAL]], [sp]
36   call i32 @callee_ptr_stack_slot([8 x i64] undef, ptr %ptr, i32 42)
37   ret void
40 define ptr @return_ptr(i64 %in, i64 %r) {
41 ; CHECK-LABEL: return_ptr:
42 ; CHECK: sdiv [[VAL64:x[0-9]+]], x0, x1
43 ; CHECK: and x0, [[VAL64]], #0xffffffff
45   %sum = sdiv i64 %in, %r
46   %sum32 = trunc i64 %sum to i32
47   %res = inttoptr i32 %sum32 to ptr
48   ret ptr %res