mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
6c7ccaa3fd
- BlockAddress has no support of BA + offset form and there is no way to propagate that offset into machine operand; - Add BA + offset support and a new interface 'getTargetBlockAddress' to simplify target block address forming; - All targets are modified to use new interface and X86 backend is enhanced to support BA + offset addressing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163743 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
675 B
LLVM
20 lines
675 B
LLVM
; RUN: llc < %s -mtriple=x86_64-pc-linux -mcpu=prescott | FileCheck %s
|
|
|
|
define float @foo(i8* nocapture %buf, float %a, float %b) nounwind uwtable {
|
|
entry:
|
|
tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* %buf, i8* blockaddress(@foo, %out), i64 22, i32 1, i1 false)
|
|
br label %out
|
|
|
|
out: ; preds = %entry
|
|
%add = fadd float %a, %b
|
|
ret float %add
|
|
; CHECK: foo
|
|
; CHECK: movw .L{{.*}}+20(%rip), %{{.*}}
|
|
; CHECK: movl .L{{.*}}+16(%rip), %{{.*}}
|
|
; CHECK: movq .L{{.*}}+8(%rip), %{{.*}}
|
|
; CHECK: movq .L{{.*}}(%rip), %{{.*}}
|
|
; CHECK: ret
|
|
}
|
|
|
|
declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture, i64, i32, i1) nounwind
|