HomeSort by relevance Sort by last modified time
    Searched refs:SymbolRef (Results 26 - 50 of 206) sorted by null

12 3 4 5 6 7 8 9

  /external/llvm/tools/llvm-readobj/
Win64EHDumper.h 19 class SymbolRef;
30 uint64_t, object::SymbolRef &,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.h 55 bool getNameFromSymbolTable(object::SymbolRef::Type Type, uint64_t Address,
60 std::error_code addSymbol(const object::SymbolRef &Symbol,
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
Win64EHDumper.h 19 class SymbolRef;
30 uint64_t, object::SymbolRef &,
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 41 inline SymbolRef getArraySym(const Expr *E, CheckerContext &C) const {
43 SymbolRef ArraySym = ArrayRef.getAsSymbol();
64 REGISTER_MAP_WITH_PROGRAMSTATE(ArraySizeMap, SymbolRef, DefinedSVal)
76 SymbolRef ArraySym = ArrayRef.getAsSymbol();
120 SymbolRef ArraySym = getArraySym(ArrayExpr, C);
CheckObjCDealloc.cpp 133 bool diagnoseExtraRelease(SymbolRef ReleasedValue, const ObjCMethodCall &M,
136 bool diagnoseMistakenDealloc(SymbolRef DeallocedValue,
140 SymbolRef getValueReleasedByNillingOut(const ObjCMethodCall &M,
143 const ObjCIvarRegion *getIvarRegionForIvarSymbol(SymbolRef IvarSym) const;
144 SymbolRef getInstanceSymbolFromIvarSymbol(SymbolRef IvarSym) const;
147 findPropertyOnDeallocatingInstance(SymbolRef IvarSym,
166 void transitionToReleaseValue(CheckerContext &C, SymbolRef Value) const;
168 SymbolRef InstanceSym,
169 SymbolRef ValueSym) const
    [all...]
MacOSKeychainAPIChecker.cpp 40 SymbolRef Region;
42 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) :
62 typedef std::pair<SymbolRef, const AllocationState*> AllocationPair;
103 const ExplodedNode *getAllocationNode(const ExplodedNode *N, SymbolRef Sym,
110 bool definitelyReturnedError(SymbolRef RetSym,
116 bool definitelyDidnotReturnError(SymbolRef RetSym,
135 SymbolRef Sym;
138 SecKeychainBugVisitor(SymbolRef S) : Sym(S) {}
158 SymbolRef,
210 static SymbolRef getAsPointeeSymbol(const Expr *Expr
    [all...]
TaintTesterChecker.cpp 30 SymbolRef getPointedToSymbol(CheckerContext &C,
MallocChecker.cpp 141 SymbolRef ReallocatedSym;
144 ReallocPair(SymbolRef S, ReallocPairKind K) :
324 bool isReleased(SymbolRef Sym, CheckerContext &C) const;
326 bool checkUseAfterFree(SymbolRef Sym, CheckerContext &C, const Stmt *S) const;
328 void checkUseZeroAllocated(SymbolRef Sym, CheckerContext &C,
331 bool checkDoubleDelete(SymbolRef Sym, CheckerContext &C) const;
345 SymbolRef &EscapingSymbol) const;
363 Optional<CheckKind> getCheckIfTracked(CheckerContext &C, SymbolRef Sym,
374 SymbolRef Sym, bool OwnershipTransferred) const;
379 SymbolRef Sym) const
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 99 SymbolRef Sym, bool Assumption) {
122 SymbolRef sym = Cond.getAsSymExpr();
132 SymbolRef sym = SV.getSymbol();
166 SymbolRef Subtraction = SymMgr.getSymSymExpr(SSE->getRHS(), BO_Sub,
203 SymbolRef Sym = Value.getAsSymExpr();
215 if (SymbolRef Sym = Value.getAsSymbol())
229 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) {
264 SymbolRef Sym = LHS;
303 SymbolRef Sym,
312 SymbolRef AdjustedSym = Sym
    [all...]
DynamicTypeMap.cpp 35 SymbolRef Sym = SR->getSymbol();
SVals.cpp 34 SymbolRef sym = SV->getSymbol();
42 SymbolRef sym = SR->getSymbol();
63 /// return that SymbolRef. Otherwise return 0.
69 SymbolRef SVal::getAsLocSymbol(bool IncludeBaseRegions) const {
70 // FIXME: should we consider SymbolRef wrapped in CodeTextRegion?
85 SymbolRef SVal::getLocSymbolInBase() const {
105 /// \brief If this SVal wraps a symbol return that SymbolRef.
111 SymbolRef SVal::getAsSymbol(bool IncludeBaseRegion) const {
112 // FIXME: should we consider SymbolRef wrapped in CodeTextRegion?
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 110 class ELFSymbolRef : public SymbolRef {
112 ELFSymbolRef(const SymbolRef &B) : SymbolRef(B) {
113 assert(isa<ELFObjectFileBase>(SymbolRef::getObject()));
136 : symbol_iterator(SymbolRef(B->getRawDataRefImpl(),
217 Expected<SymbolRef::Type> getSymbolType(DataRefImpl Symb) const override;
461 Expected<SymbolRef::Type>
467 return SymbolRef::ST_Unknown;
469 return SymbolRef::ST_Debug;
471 return SymbolRef::ST_File
    [all...]
COFFImportFile.h 47 return SymbolRef::SF_Global;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 118 SymbolRef parentSymbol;
122 SymbolDerived(SymbolID sym, SymbolRef parent, const TypedValueRegion *r)
125 SymbolRef getParentSymbol() const { return parentSymbol; }
133 static void Profile(llvm::FoldingSetNodeID& profile, SymbolRef parent,
391 typedef llvm::DenseMap<SymbolRef, SymbolRefSmallVectorTy*> SymbolDependTy;
428 const SymbolDerived *getDerivedSymbol(SymbolRef parentSymbol,
466 void addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent);
468 const SymbolRefSmallVectorTy *getDependentSymbols(const SymbolRef Primary);
481 typedef llvm::DenseSet<SymbolRef> SymbolSetTy
    [all...]
ConstraintManager.h 137 SymbolRef sym) const {
153 ConditionTruthVal isNull(ProgramStateRef State, SymbolRef Sym) {
177 virtual ConditionTruthVal checkNull(ProgramStateRef State, SymbolRef Sym);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 93 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
94 SymbolRef Sym = P.first;
95 if (!Sym.getType() || *Sym.getType() != SymbolRef::ST_Function)
157 if (I->getType() && *I->getType() == SymbolRef::ST_Function) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
ELFObjectFile.h 129 class ELFSymbolRef : public SymbolRef {
131 ELFSymbolRef(const SymbolRef &B) : SymbolRef(B) {
132 assert(isa<ELFObjectFileBase>(SymbolRef::getObject()));
155 : symbol_iterator(SymbolRef(B->getRawDataRefImpl(),
242 Expected<SymbolRef::Type> getSymbolType(DataRefImpl Symb) const override;
541 Expected<SymbolRef::Type>
547 return SymbolRef::ST_Unknown;
549 return SymbolRef::ST_Debug;
551 return SymbolRef::ST_File
    [all...]
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 150 for (const SymbolRef &Symbol : MainBinary.symbols()) {
274 for (const SymbolRef &Symbol : MainBinary.symbols()) {
419 if (Sym.getFlags() & (SymbolRef::SF_Absolute | SymbolRef::SF_Common))
443 Expected<SymbolRef::Type> TypeOrErr = Sym.getType();
449 SymbolRef::Type Type = *TypeOrErr;
451 if ((Type & SymbolRef::ST_Debug) || (Type & SymbolRef::ST_Unknown))
457 if (!(Sym.getFlags() & SymbolRef::SF_Global))
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 111 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
112 SymbolRef Sym = P.first;
116 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType();
122 SymbolRef::Type SymType = *SymTypeOrErr;
123 if (SymType != SymbolRef::ST_Function)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 114 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(*DebugObj)) {
115 SymbolRef Sym = P.first;
119 Expected<SymbolRef::Type> SymTypeOrErr = Sym.getType();
125 SymbolRef::Type SymType = *SymTypeOrErr;
126 if (SymType != SymbolRef::ST_Function)
  /development/vndk/tools/header-checker/src/repr/symbol/
so_file_parser.cpp 102 llvm::object::SymbolRef::Type type = UnWrap(symbol_it.getType());
103 if (type == llvm::object::SymbolRef::Type::ST_Function) {
105 } else if (type == llvm::object::SymbolRef::Type::ST_Data) {
  /external/llvm/lib/Object/
ObjectFile.cpp 31 bool SectionRef::containsSymbol(SymbolRef S) const {
43 if (Flags & SymbolRef::SF_Undefined)
45 if (Flags & SymbolRef::SF_Common)
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
COFF.h 95 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
103 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::SymbolType &Res) const;
124 SymbolRef &Res) const;
MachO.h 42 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
50 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::SymbolType &Res) const;
71 SymbolRef &Res) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
ObjectFile.cpp 41 bool SectionRef::containsSymbol(SymbolRef S) const {
53 if (Flags & SymbolRef::SF_Undefined)
55 if (Flags & SymbolRef::SF_Common)

Completed in 682 milliseconds

12 3 4 5 6 7 8 9