2012-03-24 11:53:55 +08:00
|
|
|
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
|
|
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
2016-08-04 02:17:35 +08:00
|
|
|
; RUN: llc -verify-machineinstrs < %s | FileCheck %s
|
2012-03-24 11:53:55 +08:00
|
|
|
|
|
|
|
define i32 @intvaarg(i32 %a, ...) nounwind {
|
|
|
|
entry:
|
|
|
|
%va = alloca i8*, align 8
|
|
|
|
%va1 = bitcast i8** %va to i8*
|
|
|
|
call void @llvm.va_start(i8* %va1)
|
|
|
|
%0 = va_arg i8** %va, i32
|
|
|
|
%sub = sub nsw i32 %a, %0
|
|
|
|
ret i32 %sub
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @llvm.va_start(i8*) nounwind
|
|
|
|
|
|
|
|
; CHECK: @intvaarg
|
|
|
|
; Make sure that the va pointer is incremented by 8 (not 4).
|
[PowerPC] Better lowering for add/or of a FrameIndex
If we have an add (or an or that is really an add), where one operand is a
FrameIndex and the other operand is a small constant, we can combine the
lowering of the FrameIndex (which is lowered as an add of the FI and a zero
offset) with the constant operand.
Amusingly, this is an old potential improvement entry from
lib/Target/PowerPC/README.txt which had never been resolved. In short, we used
to lower:
%X = alloca { i32, i32 }
%Y = getelementptr {i32,i32}* %X, i32 0, i32 1
ret i32* %Y
as:
addi 3, 1, -8
ori 3, 3, 4
blr
and now we produce:
addi 3, 1, -4
blr
which is much more sensible.
llvm-svn: 224071
2014-12-12 06:51:06 +08:00
|
|
|
; CHECK: addi{{.*}}, 1, 64
|
2012-03-24 11:53:55 +08:00
|
|
|
|