HomeSort by: relevance | last modified time | path
    Searched refs:isProfitableToHoist (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 704 bool isProfitableToHoist(Instruction *I) const;
1528 virtual bool isProfitableToHoist(Instruction *I) = 0;
1920 bool isProfitableToHoist(Instruction *I) override {
1921 return Impl.isProfitableToHoist(I);
TargetTransformInfoImpl.h 288 bool isProfitableToHoist(Instruction *I) const { return true; }
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TargetTransformInfo.cpp 442 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const {
443 return TTIImpl->isProfitableToHoist(I);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 574 bool isProfitableToHoist(Instruction *I) const override;
AArch64ISelLowering.cpp 10991 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.h 1028 /// isProfitableToHoist - Check if it is profitable to hoist instruction
1032 bool isProfitableToHoist(Instruction *I) const override;
PPCISelLowering.cpp 16224 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 348 bool isProfitableToHoist(Instruction *I) {
349 return getTLI()->isProfitableToHoist(I);
TargetLowering.h 2498 virtual bool isProfitableToHoist(Instruction *I) const { return true; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 1470 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2))

Completed in 56 milliseconds