File: x32-irtranslator.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (29 lines) | stat: -rw-r--r-- 1,219 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
; RUN: llc -global-isel -mtriple=x86_64-linux-gnux32 -stop-after=irtranslator -verify-machineinstrs < %s -o - | FileCheck -check-prefix=X32ABI %s

define i32* @ret_ptr() {
  ; X32ABI-LABEL: name: ret_ptr
  ; X32ABI: bb.1 (%ir-block.0):
  ; X32ABI:   [[DEF:%[0-9]+]]:_(p0) = G_IMPLICIT_DEF
  ; X32ABI:   [[LOAD:%[0-9]+]]:_(p0) = G_LOAD [[DEF]](p0) :: (load (p0) from `i32** undef`)
  ; X32ABI:   [[PTRTOINT:%[0-9]+]]:_(s32) = G_PTRTOINT [[LOAD]](p0)
  ; X32ABI:   [[ZEXT:%[0-9]+]]:_(s64) = G_ZEXT [[PTRTOINT]](s32)
  ; X32ABI:   $rax = COPY [[ZEXT]](s64)
  ; X32ABI:   RET 0, implicit $rax
  %ptr = load i32*, i32** undef
  ret i32* %ptr
}

define void @arg_ptr(i32* %ptr) {
  ; X32ABI-LABEL: name: arg_ptr
  ; X32ABI: bb.1 (%ir-block.0):
  ; X32ABI:   liveins: $rdi
  ; X32ABI:   [[COPY:%[0-9]+]]:_(s64) = COPY $rdi
  ; X32ABI:   [[TRUNC:%[0-9]+]]:_(s32) = G_TRUNC [[COPY]](s64)
  ; X32ABI:   [[INTTOPTR:%[0-9]+]]:_(p0) = G_INTTOPTR [[TRUNC]](s32)
  ; X32ABI:   [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 1
  ; X32ABI:   G_STORE [[C]](s32), [[INTTOPTR]](p0) :: (store (s32) into %ir.ptr)
  ; X32ABI:   RET 0
  store i32 1, i32* %ptr
  ret void
}