/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 361 bool isProfitableToHoist(Instruction *I) const; 663 virtual bool isProfitableToHoist(Instruction *I) = 0; 826 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function 827 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
|
D | TargetTransformInfoImpl.h | 231 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
|
/external/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 157 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo 158 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 541 bool isProfitableToHoist(Instruction *I) const; 1054 virtual bool isProfitableToHoist(Instruction *I) = 0; 1305 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function 1306 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
|
D | TargetTransformInfoImpl.h | 281 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
|
/external/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 151 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function 152 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 214 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo 215 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | BasicTTIImpl.h | 206 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function 207 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
|
D | TargetLowering.h | 2079 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 292 bool isProfitableToHoist(Instruction *I) const override;
|
D | AArch64ISelLowering.cpp | 6953 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 318 bool isProfitableToHoist(Instruction *I) const override;
|
D | AArch64ISelLowering.cpp | 7937 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 1669 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1209 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1287 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()
|