mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ea5a6285ae
This is generally more readable due to the way the assembler aliases work. (This causes a lot of test changes, but it's not really as scary as it looks at first glance; it's just mechanically changing a bunch of checks for orr to check for mov instead.) Differential Revision: https://reviews.llvm.org/D59720 llvm-svn: 356954
30 lines
695 B
LLVM
30 lines
695 B
LLVM
; RUN: llc -mtriple=arm64-apple-ios7.0 -verify-machineinstrs -o - %s | FileCheck %s
|
|
|
|
%struct = type { i32, i128, i8 }
|
|
|
|
@var = global %struct zeroinitializer
|
|
|
|
define i64 @check_size() {
|
|
; CHECK-LABEL: check_size:
|
|
%starti = ptrtoint %struct* @var to i64
|
|
|
|
%endp = getelementptr %struct, %struct* @var, i64 1
|
|
%endi = ptrtoint %struct* %endp to i64
|
|
|
|
%diff = sub i64 %endi, %starti
|
|
ret i64 %diff
|
|
; CHECK: mov w0, #48
|
|
}
|
|
|
|
define i64 @check_field() {
|
|
; CHECK-LABEL: check_field:
|
|
%starti = ptrtoint %struct* @var to i64
|
|
|
|
%endp = getelementptr %struct, %struct* @var, i64 0, i32 1
|
|
%endi = ptrtoint i128* %endp to i64
|
|
|
|
%diff = sub i64 %endi, %starti
|
|
ret i64 %diff
|
|
; CHECK: mov w0, #16
|
|
}
|