Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/MC/
DMCFragment.cpp130 uint64_t ValA; in getSymbolOffsetImpl() local
135 if (!getSymbolOffsetImpl(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl()
137 Offset += ValA; in getSymbolOffsetImpl()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp511 Value *ValA = OpA->getOperand(0); in lookThroughComplexAddresses() local
513 if (!OpB || ValA->getType() != OpB->getType()) in lookThroughComplexAddresses()
529 OpA = dyn_cast<Instruction>(ValA); in lookThroughComplexAddresses()
544 unsigned BitWidth = ValA->getType()->getScalarSizeInBits(); in lookThroughComplexAddresses()
552 computeKnownBits(ValA, Known, DL, 0, &AC, OpB, &DT); in lookThroughComplexAddresses()
560 const SCEV *OffsetSCEVA = SE.getSCEV(ValA); in lookThroughComplexAddresses()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DMachineInstr.cpp1294 const Value *ValA = MMOa->getValue(); in MemOperandsHaveAlias() local
1296 bool SameVal = (ValA && ValB && (ValA == ValB)); in MemOperandsHaveAlias()
1302 if (PSVb && ValA && !PSVb->mayAlias(&MFI)) in MemOperandsHaveAlias()
1319 if (!ValA || !ValB) in MemOperandsHaveAlias()
1331 MemoryLocation(ValA, OverlapA, UseTBAA ? MMOa->getAAInfo() : AAMDNodes()), in MemOperandsHaveAlias()
/openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/
DSVEInstrFormats.td254 class SVEExactFPImm<string Suffix, string ValA, string ValB> : AsmOperandClass {
258 let PredicateMethod = "isExactFPImm<" # ValA # ", " # ValB # ">";
259 let RenderMethod = "addExactFPImmOperands<" # ValA # ", " # ValB # ">";
262 class SVEExactFPImmOperand<string Suffix, string ValA, string ValB> : Operand<i32> {
263 let PrintMethod = "printExactFPImm<" # ValA # ", " # ValB # ">";
264 let ParserMatchClass = SVEExactFPImm<Suffix, ValA, ValB>;