30 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py2; RUN: llc -global-isel -mtriple=x86_64-linux-gnux32 -stop-after=irtranslator -verify-machineinstrs < %s -o - | FileCheck -check-prefix=X32ABI %s3 4define ptr @ret_ptr() {5 ; X32ABI-LABEL: name: ret_ptr6 ; X32ABI: bb.1 (%ir-block.0):7 ; X32ABI: [[DEF:%[0-9]+]]:_(p0) = G_IMPLICIT_DEF8 ; X32ABI: [[LOAD:%[0-9]+]]:_(p0) = G_LOAD [[DEF]](p0) :: (load (p0) from `ptr undef`)9 ; X32ABI: [[PTRTOINT:%[0-9]+]]:_(s32) = G_PTRTOINT [[LOAD]](p0)10 ; X32ABI: [[ZEXT:%[0-9]+]]:_(s64) = G_ZEXT [[PTRTOINT]](s32)11 ; X32ABI: $rax = COPY [[ZEXT]](s64)12 ; X32ABI: RET 0, implicit $rax13 %ptr = load ptr, ptr undef14 ret ptr %ptr15}16 17define void @arg_ptr(ptr %ptr) {18 ; X32ABI-LABEL: name: arg_ptr19 ; X32ABI: bb.1 (%ir-block.0):20 ; X32ABI: liveins: $rdi21 ; X32ABI: [[COPY:%[0-9]+]]:_(s64) = COPY $rdi22 ; X32ABI: [[TRUNC:%[0-9]+]]:_(s32) = G_TRUNC [[COPY]](s64)23 ; X32ABI: [[INTTOPTR:%[0-9]+]]:_(p0) = G_INTTOPTR [[TRUNC]](s32)24 ; X32ABI: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 125 ; X32ABI: G_STORE [[C]](s32), [[INTTOPTR]](p0) :: (store (s32) into %ir.ptr)26 ; X32ABI: RET 027 store i32 1, ptr %ptr28 ret void29}30