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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 169 struct MemAccessTy {
177 MemAccessTy() = default;
178 MemAccessTy(Type *Ty, unsigned AS) : MemTy(Ty), AddrSpace(AS) {}
180 bool operator==(MemAccessTy Other) const {
184 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
186 static MemAccessTy getUnknown(LLVMContext &Ctx,
188 return MemAccessTy(Type::getVoidTy(Ctx), AS);
824 static MemAccessTy getAccessType(const TargetTransformInfo &TTI,
826 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 108 struct MemAccessTy {
115 MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {}
117 MemAccessTy(Type *Ty, unsigned AS) :
120 bool operator==(MemAccessTy Other) const {
124 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
126 static MemAccessTy getUnknown(LLVMContext &Ctx) {
127 return MemAccessTy(Type::getVoidTy(Ctx), UnknownAddressSpace);
696 static MemAccessTy getAccessType(const Instruction *Inst) {
697 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 262 Type *MemAccessTy = I.getOperand(0)->getType();
263 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, 0, 0);
SystemZISelLowering.cpp 670 Type *MemAccessTy = (isa<LoadInst>(I) ? I->getType() :
672 bool IsFPAccess = MemAccessTy->isFloatingPointTy();
673 bool IsVectorAccess = MemAccessTy->isVectorTy();
    [all...]

Completed in 1127 milliseconds