Home
last modified time | relevance | path

Searched refs:Equiv (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTypeMetadataUtils.cpp145 if (auto *Equiv = dyn_cast<DSOLocalEquivalent>(I)) in getPointerAtOffset() local
146 I = Equiv->getGlobalValue(); in getPointerAtOffset()
255 if (auto *Equiv = dyn_cast<DSOLocalEquivalent>(U)) in replaceRelativePointerUsersWithZero() local
256 replaceRelativePointerUsersWithZero(Equiv); in replaceRelativePointerUsersWithZero()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp383 const CodeGenInstruction *getEquivNode(Record &Equiv,
487 for (Record *Equiv : RK.getAllDerivedDefinitions("GINodeEquiv")) in gatherNodeEquivs()
488 NodeEquivs[Equiv->getValueAsDef("Node")] = Equiv; in gatherNodeEquivs()
491 for (Record *Equiv : RK.getAllDerivedDefinitions("GIComplexPatternEquiv")) { in gatherNodeEquivs()
492 Record *SelDAGEquiv = Equiv->getValueAsDef("SelDAGEquivalent"); in gatherNodeEquivs()
495 ComplexPatternEquivs[SelDAGEquiv] = Equiv; in gatherNodeEquivs()
499 for (Record *Equiv : RK.getAllDerivedDefinitions("GISDNodeXFormEquiv")) { in gatherNodeEquivs()
500 Record *SelDAGEquiv = Equiv->getValueAsDef("SelDAGEquivalent"); in gatherNodeEquivs()
503 SDNodeXFormEquivs[SelDAGEquiv] = Equiv; in gatherNodeEquivs()
512 GlobalISelEmitter::getEquivNode(Record &Equiv, const TreePatternNode &N) const { in getEquivNode() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetLoweringObjectFile.h202 virtual const MCExpr *lowerDSOLocalEquivalent(const DSOLocalEquivalent *Equiv, in lowerDSOLocalEquivalent() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLoweringObjectFileImpl.h109 const MCExpr *lowerDSOLocalEquivalent(const DSOLocalEquivalent *Equiv,
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseImpl.h371 const BasicBlockT *Equiv = EquivalenceClass[BB];
373 << "]: " << ((Equiv) ? EquivalenceClass[BB]->getName() : "NONE") << "\n";
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp1945 DSOLocalEquivalent *&Equiv = GV->getContext().pImpl->DSOLocalEquivalents[GV]; in get() local
1946 if (!Equiv) in get()
1947 Equiv = new DSOLocalEquivalent(GV); in get()
1949 assert(Equiv->getGlobalValue() == GV && in get()
1951 return Equiv; in get()
H A DAsmWriter.cpp1588 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV)) { in WriteConstantInternal() local
1590 WriteAsOperandInternal(Out, Equiv->getGlobalValue(), WriterCtx); in WriteConstantInternal()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1149 const DSOLocalEquivalent *Equiv, const TargetMachine &TM) const { in lowerDSOLocalEquivalent() argument
1152 const auto *GV = Equiv->getGlobalValue(); in lowerDSOLocalEquivalent()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp361 Equiv, enumerator
2030 return parseDirectiveSet(IDVal, AssignmentKind::Equiv); in parseStatement()
2957 case AssignmentKind::Equiv: in parseAssignment()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3149 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV)) in lowerConstant() local
3150 return getObjFileLowering().lowerDSOLocalEquivalent(Equiv, TM); in lowerConstant()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2861 } else if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(C)) { in writeConstants() local
2863 Record.push_back(VE.getTypeID(Equiv->getGlobalValue()->getType())); in writeConstants()
2864 Record.push_back(VE.getValueID(Equiv->getGlobalValue())); in writeConstants()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp303 auto *Equiv = DSOLocalEquivalent::get(GV); in validateEndOfModule() local
304 FwdRef->replaceAllUsesWith(Equiv); in validateEndOfModule()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10642 SourceLocation Loc, const NamedDecl *D, ArrayRef<const NamedDecl *> Equiv) { in diagnoseEquivalentInternalLinkageDeclarations() argument
10650 for (auto *E : Equiv) { in diagnoseEquivalentInternalLinkageDeclarations()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1892 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(C)) in getValueImpl() local
1893 return getValue(Equiv->getGlobalValue()); in getValueImpl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10374 ArrayRef<const NamedDecl *> Equiv);