mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
Hexagon: Make helper functions static.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182588 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
879b071bf5
commit
a32218a7ec
@ -219,8 +219,9 @@ static void removeKillInfo(MachineInstr *MI, unsigned RegNotKilled) {
|
||||
|
||||
/// isUnsafeToMoveAccross - Returns true if it is unsafe to move a copy
|
||||
/// instruction from \p UseReg to \p DestReg over the instruction \p I.
|
||||
bool isUnsafeToMoveAccross(MachineInstr *I, unsigned UseReg, unsigned DestReg,
|
||||
const TargetRegisterInfo *TRI) {
|
||||
static bool isUnsafeToMoveAccross(MachineInstr *I, unsigned UseReg,
|
||||
unsigned DestReg,
|
||||
const TargetRegisterInfo *TRI) {
|
||||
return (UseReg && (I->modifiesRegister(UseReg, TRI))) ||
|
||||
I->modifiesRegister(DestReg, TRI) ||
|
||||
I->readsRegister(DestReg, TRI) ||
|
||||
|
@ -838,7 +838,8 @@ bool HexagonPacketizerList::RestrictingDepExistInPacket (MachineInstr* MI,
|
||||
|
||||
|
||||
/// Gets the predicate register of a predicated instruction.
|
||||
unsigned getPredicatedRegister(MachineInstr *MI, const HexagonInstrInfo *QII) {
|
||||
static unsigned getPredicatedRegister(MachineInstr *MI,
|
||||
const HexagonInstrInfo *QII) {
|
||||
/// We use the following rule: The first predicate register that is a use is
|
||||
/// the predicate register of a predicated instruction.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user