llvm-6502/test/CodeGen/PowerPC/func-addr.ll
Bill Schmidt 212ec3a739 [PPC64] Fix PR19893 - improve code generation for local function addresses
Rafael opened http://llvm.org/bugs/show_bug.cgi?id=19893 to track non-optimal
code generation for forming a function address that is local to the compile
unit.  The existing code was treating both local and non-local functions
identically.

This patch fixes the problem by properly identifying local functions and
generating the proper addis/addi code.  I also noticed that Rafael's earlier
changes to correct the surrounding code in PPCISelLowering.cpp were also
needed for fast instruction selection in PPCFastISel.cpp, so this patch
fixes that code as well.

The existing test/CodeGen/PowerPC/func-addr.ll is modified to test the new
code generation.  I've added a -O0 run line to test the fast-isel code as
well.

Tested on powerpc64[le]-unknown-linux-gnu with no regressions.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211056 91177308-0d34-0410-b5e6-96231b3b80d8
2014-06-16 21:36:02 +00:00

18 lines
387 B
LLVM

; RUN: llc -mtriple powerpc64-linux < %s | FileCheck %s
; RUN: llc -O0 -mtriple powerpc64-linux < %s | FileCheck %s
define void @foo() {
ret void
}
declare i32 @bar(i8*)
; CHECK-LABEL: {{^}}zed:
; CHECK: addis 3, 2, foo@toc@ha
; CHECK-NEXT: addi 3, 3, foo@toc@l
; CHECK-NEXT: bl bar
define void @zed() {
call i32 @bar(i8* bitcast (void ()* @foo to i8*))
ret void
}