HomeSort by relevance Sort by last modified time
    Searched refs:BaseGV (Results 1 - 20 of 20) sorted by null

  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 305 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
321 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
540 virtual bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
545 virtual int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
650 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
652 return Impl.isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
661 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
663 return Impl.getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg, Scale);
    [all...]
TargetTransformInfoImpl.h 209 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
213 return !BaseGV && BaseOffset == 0 && Scale <= 1;
220 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
223 if (isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg, Scale))
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 100 bool TargetTransformInfo::isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
104 return TTIImpl->isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
118 int TargetTransformInfo::getScalingFactorCost(Type *Ty, GlobalValue *BaseGV,
122 return TTIImpl->getScalingFactorCost(Ty, BaseGV, BaseOffset, HasBaseReg,
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 127 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
130 AM.BaseGV = BaseGV;
137 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
140 AM.BaseGV = BaseGV;
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 40 // TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
228 GlobalValue *BaseGV;
261 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
422 BaseGV ? BaseGV->getType() :
455 if (BaseGV) {
457 BaseGV->printAsOperand(OS, /*PrintType=*/false);
    [all...]
StraightLineStrengthReduce.cpp 236 GlobalVariable *BaseGV = nullptr;
242 BaseGV = GV;
266 return TTI->isLegalAddressingMode(GEP->getType()->getElementType(), BaseGV,
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
TargetLoweringBase.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp 268 if (AM.BaseGV)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 380 if (AM.BaseGV)
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 1298 milliseconds