Home
last modified time | relevance | path

Searched defs:Sym (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyTargetStreamer.h87 void emitFunctionType(const MCSymbolWasm *Sym) override {} in emitFunctionType()
89 void emitGlobalType(const MCSymbolWasm *Sym) override {} in emitGlobalType()
90 void emitTableType(const MCSymbolWasm *Sym) override {} in emitTableType()
91 void emitEventType(const MCSymbolWasm *Sym) override {} in emitEventType()
92 void emitImportModule(const MCSymbolWasm *Sym, in emitImportModule()
94 void emitImportName(const MCSymbolWasm *Sym, in emitImportName()
96 void emitExportName(const MCSymbolWasm *Sym, in emitExportName()
H A DWebAssemblyTargetStreamer.cpp63 void WebAssemblyTargetAsmStreamer::emitFunctionType(const MCSymbolWasm *Sym) { in emitFunctionType()
70 void WebAssemblyTargetAsmStreamer::emitGlobalType(const MCSymbolWasm *Sym) { in emitGlobalType()
80 void WebAssemblyTargetAsmStreamer::emitTableType(const MCSymbolWasm *Sym) { in emitTableType()
94 void WebAssemblyTargetAsmStreamer::emitEventType(const MCSymbolWasm *Sym) { in emitEventType()
101 void WebAssemblyTargetAsmStreamer::emitImportModule(const MCSymbolWasm *Sym, in emitImportModule()
107 void WebAssemblyTargetAsmStreamer::emitImportName(const MCSymbolWasm *Sym, in emitImportName()
113 void WebAssemblyTargetAsmStreamer::emitExportName(const MCSymbolWasm *Sym, in emitExportName()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp103 raw_ostream &operator<<(raw_ostream &OS, const Symbol &Sym) { in operator <<()
148 for (auto *Sym : Symbols) in ~Section() local
204 for (auto *Sym : B.getSection().symbols()) in splitBlock() local
222 for (auto *Sym : BlockSymbols) in splitBlock() local
233 for (auto *Sym : defined_symbols()) in dump() local
273 for (auto *Sym : Syms) in dump() local
310 for (auto *Sym : absolute_symbols()) in dump() local
318 for (auto *Sym : external_symbols()) in dump() local
353 for (auto *Sym : G.defined_symbols()) in markAllSymbolsLive() local
373 for (auto *Sym : Sec.symbols()) in makeTargetOutOfRangeError() local
H A DJITLinkGeneric.cpp318 for (auto *Sym : G->external_symbols()) { in getExternalSymbolNames() local
333 for (auto *Sym : G->external_symbols()) { in applyLookupResult() local
436 for (auto *Sym : G.defined_symbols()) in prune() local
442 auto *Sym = Worklist.back(); in prune() local
468 for (auto *Sym : G.defined_symbols()) in prune() local
471 for (auto *Sym : SymbolsToRemove) { in prune() local
494 for (auto *Sym : G.external_symbols()) in prune() local
497 for (auto *Sym : SymbolsToRemove) { in prune() local
H A DMachOLinkGraphBuilder.h99 NormalizedSymbol *Sym = reinterpret_cast<NormalizedSymbol *>( in createNormalizedSymbol() local
130 auto *Sym = IndexToSymbol[Index]; in findSymbolByIndex() local
149 auto *Sym = getSymbolByAddress(Address); in findSymbolByAddress() local
181 void setCanonicalSymbol(Symbol &Sym) { in setCanonicalSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineModuleInfoImpls.h43 StubValueTy &getGVStubEntry(MCSymbol *Sym) { in getGVStubEntry()
48 StubValueTy &getThreadLocalGVStubEntry(MCSymbol *Sym) { in getThreadLocalGVStubEntry()
72 StubValueTy &getGVStubEntry(MCSymbol *Sym) { in getGVStubEntry()
94 StubValueTy &getGVStubEntry(MCSymbol *Sym) { in getGVStubEntry()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DTaint.cpp50 SymbolRef Sym = V.getAsSymbol(); in addTaint() local
67 if (SymbolRef Sym = binding->getAsSymbol()) in addTaint() local
83 ProgramStateRef taint::addTaint(ProgramStateRef State, SymbolRef Sym, in addTaint()
96 SymbolRef Sym = V.getAsSymbol(); in removeTaint() local
110 ProgramStateRef taint::removeTaint(ProgramStateRef State, SymbolRef Sym) { in removeTaint()
151 if (SymbolRef Sym = V.getAsSymbol()) in isTainted() local
178 bool taint::isTainted(ProgramStateRef State, SymbolRef Sym, TaintTagType Kind) { in isTainted()
H A DInnerPointerChecker.cpp46 InnerPointerBRVisitor(SymbolRef Sym) : PtrToBuf(Sym) {} in InnerPointerBRVisitor()
63 bool isSymbolTracked(ProgramStateRef State, SymbolRef Sym) { in isSymbolTracked()
241 if (SymbolRef Sym = RawPtr.getAsSymbol(/*IncludeBaseRegions=*/true)) { in checkPostCall() local
291 std::unique_ptr<BugReporterVisitor> getInnerPointerBRVisitor(SymbolRef Sym) { in getInnerPointerBRVisitor()
295 const MemRegion *getContainerObjRegion(ProgramStateRef State, SymbolRef Sym) { in getContainerObjRegion()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp199 object::symbol_iterator Sym = Reloc.getSymbol(); in dumpSections() local
222 dumpFunctionDefinition(COFFYAML::Symbol *Sym, in dumpFunctionDefinition()
234 dumpbfAndEfLineInfo(COFFYAML::Symbol *Sym, in dumpbfAndEfLineInfo()
243 static void dumpWeakExternal(COFFYAML::Symbol *Sym, in dumpWeakExternal()
253 dumpSectionDefinition(COFFYAML::Symbol *Sym, in dumpSectionDefinition()
269 dumpCLRTokenDefinition(COFFYAML::Symbol *Sym, in dumpCLRTokenDefinition()
284 COFFYAML::Symbol Sym; in dumpSymbols() local
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp60 SymbolRef Sym = Cond.getAsSymbol(); in assumeAux() local
71 SymbolRef Sym = SV.getSymbol(); in assumeAux() local
104 SymbolRef Sym = Value.getAsSymbol(); in assumeInclusiveRange() local
116 if (SymbolRef Sym = Value.getAsSymbol()) in assumeInclusiveRange() local
H A DRangedConstraintManager.cpp24 SymbolRef Sym, in assumeSym()
94 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, in assumeSymInclusiveRange()
123 SymbolRef Sym, bool Assumption) { in assumeSymUnsupported()
140 SymbolRef Sym, in assumeSymRel()
204 void RangedConstraintManager::computeAdjustment(SymbolRef &Sym, in computeAdjustment()
H A DRangeConstraintManager.cpp616 /* implicit */ EquivalenceClass(SymbolRef Sym) in EquivalenceClass()
662 SymbolRef Sym) { in getConstraint()
839 RangeSet VisitSymExpr(SymbolRef Sym) { in VisitSymExpr()
847 RangeSet VisitSymIntExpr(const SymIntExpr *Sym) { in VisitSymIntExpr()
851 RangeSet VisitIntSymExpr(const IntSymExpr *Sym) { in VisitIntSymExpr()
855 RangeSet VisitSymSymExpr(const SymSymExpr *Sym) { in VisitSymSymExpr()
873 RangeSet inferAs(SymbolRef Sym, QualType DestType) { in inferAs()
885 RangeSet infer(SymbolRef Sym) { in infer()
930 RangeSet VisitBinaryOperator(const BinarySymExprTy *Sym) { in VisitBinaryOperator()
1071 Optional<RangeSet> getRangeForNegatedSub(SymbolRef Sym) { in getRangeForNegatedSub()
[all …]
H A DConstraintManager.cpp26 SymbolRef Sym) { in getLocFromSymbol()
33 SymbolRef Sym) { in checkNull()
H A DSimpleSValBuilder.cpp181 static bool isInRelation(BinaryOperator::Opcode Rel, SymbolRef Sym, in isInRelation()
198 static bool isWithinConstantOverflowBounds(SymbolRef Sym, in isWithinConstantOverflowBounds()
224 decomposeSymbol(SymbolRef Sym, BasicValueFactory &BV) { in decomposeSymbol()
307 SymbolRef Sym, llvm::APSInt Int, QualType Ty) { in shouldRearrange()
537 SymbolRef Sym = lhs.castAs<nonloc::SymbolVal>().getSymbol(); in evalBinOpNN() local
1107 if (SymbolRef Sym = V.getAsSymbol()) in getKnownValue() local
1129 static bool isUnchanged(SymbolRef Sym, SVal Val) { in simplifySVal()
1133 SVal cache(SymbolRef Sym, SVal V) { in simplifySVal()
1138 SVal skip(SymbolRef Sym) { in simplifySVal()
1177 if (SymbolRef Sym = LHS.getAsSymbol()) { in simplifySVal() local
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp28 const RefVal *getRefBinding(ProgramStateRef State, SymbolRef Sym) { in getRefBinding()
36 static ProgramStateRef setRefBinding(ProgramStateRef State, SymbolRef Sym, in setRefBinding()
42 static ProgramStateRef removeRefBinding(ProgramStateRef State, SymbolRef Sym) { in removeRefBinding()
211 SymbolRef Sym = C.getSVal(CE).getAsLocSymbol(); in checkPostStmt() local
276 if (SymbolRef Sym = Pred->getSVal(Ex).getAsSymbol()) { in checkPostStmt() local
292 SymbolRef Sym = State->getSVal(*IVarLoc).getAsSymbol(); in checkPostStmt() local
372 if (SymbolRef Sym = ReceiverV.getAsLocSymbol()) in checkPostCall() local
457 if (SymbolRef Sym = V.getAsLocSymbol()) { in processSummaryOfInlined() local
470 if (SymbolRef Sym = MsgInvocation->getReceiverSVal().getAsLocSymbol()) { in processSummaryOfInlined() local
480 if (SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol()) { in processSummaryOfInlined() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DSymbolSize.cpp37 static unsigned getSymbolSectionID(const ObjectFile &O, SymbolRef Sym) { in getSymbolSectionID()
53 for (ELFSymbolRef Sym : Syms) in computeSymbolSizes() local
63 SymbolRef Sym = *I; in computeSymbolSizes() local
H A DTapiFile.cpp28 static uint32_t getFlags(const Symbol *Sym) { in getFlags()
82 const Symbol &Sym = Symbols[DRI.d.a]; in printSymbolName() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCAsmInfo.cpp48 SparcELFMCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym, in getExprForPersonalitySymbol()
61 SparcELFMCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym, in getExprForFDESymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp113 if (auto Sym = findSymbolInLogicalDylib(SymName)) { in lookup() local
125 if (auto Sym = findSymbol(SymName)) { in lookup() local
154 if (auto Sym = findSymbolInLogicalDylib(SymName)) { in getResponsibilitySet() local
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h340 auto *Sym = reinterpret_cast<Symbol *>(SymStorage); in constructCommon() local
352 auto *Sym = reinterpret_cast<Symbol *>(SymStorage); in constructExternal() local
363 auto *Sym = reinterpret_cast<Symbol *>(SymStorage); in constructAbsolute() local
375 auto *Sym = reinterpret_cast<Symbol *>(SymStorage); in constructAnonDef() local
389 auto *Sym = reinterpret_cast<Symbol *>(SymStorage); in constructNamedDef() local
640 void addSymbol(Symbol &Sym) { in addSymbol()
645 void removeSymbol(Symbol &Sym) { in removeSymbol()
950 auto &Sym = in addExternalSymbol() local
965 auto &Sym = Symbol::constructAbsolute(Allocator.Allocate<Symbol>(), in addAbsoluteSymbol() local
981 auto &Sym = Symbol::constructCommon( in addCommonSymbol() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp48 const SymbolRef &Sym) { in getXCOFFSymbolCsectSMC()
57 bool objdump::isLabel(const XCOFFObjectFile *Obj, const SymbolRef &Sym) { in isLabel()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp52 for (auto *Sym : G.defined_symbols()) { in scanLinkGraph() local
101 for (auto *Sym : G->defined_symbols()) in discard() local
210 for (auto *Sym : G.defined_symbols()) in notifyResolved() local
229 for (auto *Sym : G.absolute_symbols()) in notifyResolved() local
347 auto ProcessSymbol = [&](Symbol *Sym) { in claimOrExternalizeWeakAndCommonSymbols()
360 for (auto *Sym : G.defined_symbols()) in claimOrExternalizeWeakAndCommonSymbols() local
362 for (auto *Sym : G.absolute_symbols()) in claimOrExternalizeWeakAndCommonSymbols() local
379 for (auto *Sym : G.defined_symbols()) in markResponsibilitySymbolsLive() local
390 for (auto *Sym : G.defined_symbols()) { in computeNamedSymbolDependencies() local
468 Symbol *Sym = nullptr; in computeLocalDeps() member
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordHelpers.cpp23 uint32_t llvm::codeview::getScopeEndOffset(const CVSymbol &Sym) { in getScopeEndOffset()
54 llvm::codeview::getScopeParentOffset(const llvm::codeview::CVSymbol &Sym) { in getScopeParentOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetObjectFile.cpp25 const MCSymbol *Sym = TM.getSymbol(GV); in getTTypeGlobalReference() local
43 const GlobalValue *GV, const MCSymbol *Sym, const MCValue &MV, in getIndirectSymViaGOTPCRel()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DReader.cpp95 Symbol &Sym = Symbols.back(); in readSymbols() local
159 for (const Symbol &Sym : Obj.getSymbols()) { in setSymbolTargets() local
183 const Symbol *Sym = RawSymbolTable[R.Reloc.SymbolTableIndex]; in setSymbolTargets() local

12345678910>>...13