Home
last modified time | relevance | path

Searched refs:shouldScheduleAdjacent (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMacroFusion.cpp119 ShouldSchedulePredTy shouldScheduleAdjacent; member in __anon73142dfd0111::MacroFusion
124 MacroFusion(ShouldSchedulePredTy shouldScheduleAdjacent, bool FuseBlock) in MacroFusion() argument
125 : shouldScheduleAdjacent(shouldScheduleAdjacent), FuseBlock(FuseBlock) {} in MacroFusion()
154 if (!shouldScheduleAdjacent(TII, ST, nullptr, AnchorMI)) in scheduleAdjacentImpl()
168 if (!shouldScheduleAdjacent(TII, ST, DepMI, AnchorMI)) in scheduleAdjacentImpl()
180 ShouldSchedulePredTy shouldScheduleAdjacent) { in createMacroFusionDAGMutation() argument
182 return llvm::make_unique<MacroFusion>(shouldScheduleAdjacent, true); in createMacroFusionDAGMutation()
188 ShouldSchedulePredTy shouldScheduleAdjacent) { in createBranchMacroFusionDAGMutation() argument
190 return llvm::make_unique<MacroFusion>(shouldScheduleAdjacent, false); in createBranchMacroFusionDAGMutation()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DMacroFusion.h40 createMacroFusionDAGMutation(ShouldSchedulePredTy shouldScheduleAdjacent);
46 createBranchMacroFusionDAGMutation(ShouldSchedulePredTy shouldScheduleAdjacent);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUMacroFusion.cpp29 static bool shouldScheduleAdjacent(const TargetInstrInfo &TII_, in shouldScheduleAdjacent() function
62 return createMacroFusionDAGMutation(shouldScheduleAdjacent); in createAMDGPUMacroFusionDAGMutation()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMMacroFusion.cpp66 static bool shouldScheduleAdjacent(const TargetInstrInfo &TII, in shouldScheduleAdjacent() function
81 return createMacroFusionDAGMutation(shouldScheduleAdjacent); in createARMMacroFusionDAGMutation()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86MacroFusion.cpp25 static bool shouldScheduleAdjacent(const TargetInstrInfo &TII, in shouldScheduleAdjacent() function
196 return createBranchMacroFusionDAGMutation(shouldScheduleAdjacent); in createX86MacroFusionDAGMutation()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64MacroFusion.cpp261 static bool shouldScheduleAdjacent(const TargetInstrInfo &TII, in shouldScheduleAdjacent() function
289 return createMacroFusionDAGMutation(shouldScheduleAdjacent); in createAArch64MacroFusionDAGMutation()
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.h111 bool shouldScheduleAdjacent(MachineInstr &First,
DAArch64InstrInfo.cpp1798 bool AArch64InstrInfo::shouldScheduleAdjacent(MachineInstr &First, in shouldScheduleAdjacent() function in AArch64InstrInfo
/external/llvm/lib/Target/X86/
DX86InstrInfo.h421 bool shouldScheduleAdjacent(MachineInstr &First,
DX86InstrInfo.cpp6763 bool X86InstrInfo::shouldScheduleAdjacent(MachineInstr &First, in shouldScheduleAdjacent() function in X86InstrInfo
/external/llvm/include/llvm/Target/
DTargetInstrInfo.h1053 virtual bool shouldScheduleAdjacent(MachineInstr &First, in shouldScheduleAdjacent() function
/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1533 if (!TII.shouldScheduleAdjacent(*Pred, *Branch)) in apply()