Home
last modified time | relevance | path

Searched refs:ValA (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLSteensAliasAnalysis.cpp268 auto *ValA = const_cast<Value *>(LocA.Ptr); in query() local
271 if (!ValA->getType()->isPointerTy() || !ValB->getType()->isPointerTy()) in query()
275 Function *MaybeFnA = const_cast<Function *>(parentFunctionOfValue(ValA)); in query()
299 auto MaybeA = Sets.find(InstantiatedValue{ValA, 0}); in query()
DCFLAndersAliasAnalysis.cpp850 auto *ValA = LocA.Ptr; in query() local
853 if (!ValA->getType()->isPointerTy() || !ValB->getType()->isPointerTy()) in query()
856 auto *Fn = parentFunctionOfValue(ValA); in query()
875 if (FunInfo->mayAlias(ValA, LocA.Size, ValB, LocB.Size)) in query()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCFragment.cpp111 uint64_t ValA; in getSymbolOffsetImpl() local
112 if (!getLabelOffset(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl()
114 Offset += ValA; in getSymbolOffsetImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp443 Value *ValA = OpA->getOperand(0); in lookThroughComplexAddresses() local
445 if (!OpB || ValA->getType() != OpB->getType()) in lookThroughComplexAddresses()
461 unsigned BitWidth = ValA->getType()->getScalarSizeInBits(); in lookThroughComplexAddresses()
468 OpA = dyn_cast<Instruction>(ValA); in lookThroughComplexAddresses()
480 const SCEV *OffsetSCEVA = SE.getSCEV(ValA); in lookThroughComplexAddresses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineInstr.cpp1238 const Value *ValA = MMOa->getValue(); in mayAlias() local
1240 bool SameVal = (ValA && ValB && (ValA == ValB)); in mayAlias()
1246 if (PSVb && ValA && !PSVb->mayAlias(&MFI)) in mayAlias()
1263 if (!ValA || !ValB) in mayAlias()
1275 MemoryLocation(ValA, OverlapA, in mayAlias()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DSVEInstrFormats.td218 class SVEExactFPImm<string Suffix, string ValA, string ValB> : AsmOperandClass {
222 let PredicateMethod = "isExactFPImm<" # ValA # ", " # ValB # ">";
223 let RenderMethod = "addExactFPImmOperands<" # ValA # ", " # ValB # ">";
226 class SVEExactFPImmOperand<string Suffix, string ValA, string ValB> : Operand<i32> {
227 let PrintMethod = "printExactFPImm<" # ValA # ", " # ValB # ">";
228 let ParserMatchClass = SVEExactFPImm<Suffix, ValA, ValB>;