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

  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 306 GlobalVariable *BaseGV = nullptr;
312 BaseGV = GV;
338 return TTI->isLegalAddressingMode(GEP->getType()->getElementType(), BaseGV,
StraightLineStrengthReduce.cpp 241 GlobalVariable *BaseGV = nullptr;
247 BaseGV = GV;
273 return TTI->isLegalAddressingMode(GEP->getType()->getElementType(), BaseGV,
LoopStrengthReduce.cpp 40 // TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
247 GlobalValue *BaseGV;
280 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
436 BaseGV ? BaseGV->getType() :
468 if (BaseGV) {
470 BaseGV->printAsOperand(OS, /*PrintType=*/false);
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 205 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
210 return !BaseGV && BaseOffset == 0 && (Scale == 0 || Scale == 1);
221 int getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
224 if (isLegalAddressingMode(Ty, BaseGV, BaseOffset, HasBaseReg,
402 const GlobalValue *BaseGV = nullptr;
408 BaseGV = dyn_cast<GlobalValue>(Ptr->stripPointerCasts());
410 bool HasBaseReg = (BaseGV == nullptr);
446 PointerType::get(*GTI, AS), const_cast<GlobalValue *>(BaseGV),
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 93 milliseconds