mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 17:21:42 +00:00
Avoid a load for local functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7cff23cad5
commit
2f6da59b68
@ -1844,8 +1844,13 @@ ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
|
||||
const GlobalValue *GV = G->getGlobal();
|
||||
isDirect = true;
|
||||
bool isDef = GV->isStrongDefinitionForLinker();
|
||||
bool isStub = (!isDef && Subtarget->isTargetMachO()) &&
|
||||
getTargetMachine().getRelocationModel() != Reloc::Static;
|
||||
const TargetMachine &TM = getTargetMachine();
|
||||
Reloc::Model RM = TM.getRelocationModel();
|
||||
const Triple &TargetTriple = TM.getTargetTriple();
|
||||
bool isStub =
|
||||
!shouldAssumeDSOLocal(RM, TargetTriple, *GV->getParent(), GV) &&
|
||||
Subtarget->isTargetMachO();
|
||||
|
||||
isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
|
||||
// ARM call to a local ARM function is predicable.
|
||||
isLocalARMFunc = !Subtarget->isThumb() && (isDef || !ARMInterworking);
|
||||
|
10
test/CodeGen/ARM/thumb-stub.ll
Normal file
10
test/CodeGen/ARM/thumb-stub.ll
Normal file
@ -0,0 +1,10 @@
|
||||
; RUN: llc -relocation-model=pic -mtriple=thumb-apple-darwin < %s | FileCheck %s
|
||||
|
||||
declare hidden void @f()
|
||||
|
||||
; CHECK: bl _f
|
||||
|
||||
define void @g() {
|
||||
call void @f()
|
||||
ret void
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user