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

1 2 3 4 5 6 7 8 9

  /external/llvm/include/llvm/Object/
SymbolSize.h 18 std::vector<std::pair<SymbolRef, uint64_t>>
ObjectFile.h 33 class SymbolRef;
70 friend class SymbolRef;
100 bool containsSymbol(SymbolRef S) const;
115 class SymbolRef : public BasicSymbolRef {
119 SymbolRef() : BasicSymbolRef() {}
130 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
131 SymbolRef(const BasicSymbolRef &B) : BasicSymbolRef(B) {
147 Expected<SymbolRef::Type> getType() const;
158 symbol_iterator(SymbolRef Sym) : basic_symbol_iterator(Sym) {}
160 : basic_symbol_iterator(SymbolRef(B->getRawDataRefImpl()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 32 typedef llvm::ImmutableMap<SymbolRef, TaintTagType> TaintMapImpl;
SymExpr.h 95 typedef const SymExpr *SymbolRef;
96 typedef SmallVector<SymbolRef, 2> SymbolRefSmallVectorTy;
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.h 53 SymbolRef Sym,
67 virtual ProgramStateRef assumeSymNE(ProgramStateRef state, SymbolRef sym,
71 virtual ProgramStateRef assumeSymEQ(ProgramStateRef state, SymbolRef sym,
75 virtual ProgramStateRef assumeSymLT(ProgramStateRef state, SymbolRef sym,
79 virtual ProgramStateRef assumeSymGT(ProgramStateRef state, SymbolRef sym,
83 virtual ProgramStateRef assumeSymLE(ProgramStateRef state, SymbolRef sym,
87 virtual ProgramStateRef assumeSymGE(ProgramStateRef state, SymbolRef sym,
93 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From,
97 ProgramStateRef state, SymbolRef Sym, const llvm::APSInt &From,
113 SymbolRef Sym
    [all...]
ConstraintManager.cpp 22 SymbolRef Sym) {
29 SymbolRef Sym) {
RangeConstraintManager.cpp 290 CLANG_ENTO_PROGRAMSTATE_MAP(SymbolRef,
295 RangeSet GetRange(ProgramStateRef state, SymbolRef sym);
300 ProgramStateRef assumeSymNE(ProgramStateRef state, SymbolRef sym,
304 ProgramStateRef assumeSymEQ(ProgramStateRef state, SymbolRef sym,
308 ProgramStateRef assumeSymLT(ProgramStateRef state, SymbolRef sym,
312 ProgramStateRef assumeSymGT(ProgramStateRef state, SymbolRef sym,
316 ProgramStateRef assumeSymGE(ProgramStateRef state, SymbolRef sym,
320 ProgramStateRef assumeSymLE(ProgramStateRef state, SymbolRef sym,
325 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From,
329 ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 32 if (Expr->getKind() != MCExpr::SymbolRef)
35 if (Expr->getKind() != MCExpr::SymbolRef)
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
ObjectFile.h 81 /// SymbolRef - This is a value type class that represents a single symbol in
83 class SymbolRef {
89 SymbolRef() : OwningObject(NULL) {
100 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
102 bool operator==(const SymbolRef &Other) const;
104 error_code getNext(SymbolRef &Result) const;
110 error_code getSymbolType(SymbolRef::SymbolType &Result) const;
126 typedef content_iterator<SymbolRef> symbol_iterator;
146 error_code getSymbol(SymbolRef &Result) const;
166 friend class SymbolRef;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 31 if (Expr->getKind() != MCExpr::SymbolRef)
34 if (Expr->getKind() != MCExpr::SymbolRef)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
SymbolSize.h 28 std::vector<std::pair<SymbolRef, uint64_t>>
ObjectFile.h 44 class SymbolRef;
82 friend class SymbolRef;
114 bool containsSymbol(SymbolRef S) const;
129 class SymbolRef : public BasicSymbolRef {
142 SymbolRef() = default;
143 SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
144 SymbolRef(const BasicSymbolRef &B) : BasicSymbolRef(B) {
160 Expected<SymbolRef::Type> getType() const;
171 symbol_iterator(SymbolRef Sym) : basic_symbol_iterator(Sym) {}
173 : basic_symbol_iterator(SymbolRef(B->getRawDataRefImpl()
    [all...]
IRSymtab.h 247 class SymbolRef;
257 using symbol_range = iterator_range<object::content_iterator<SymbolRef>>;
291 class Reader::SymbolRef : public Symbol {
316 SymbolRef(const storage::Symbol *SymI, const storage::Symbol *SymE,
329 bool operator==(const SymbolRef &Other) const { return SymI == Other.SymI; }
333 return {SymbolRef(Symbols.begin(), Symbols.end(), Uncommons.begin(), this),
334 SymbolRef(Symbols.end(), Symbols.end(), nullptr, this)};
341 return {SymbolRef(MBegin, MEnd, Uncommons.begin() + M.UncBegin, this),
342 SymbolRef(MEnd, MEnd, nullptr, this)};
  /external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp 29 typedef SmallVector<SymbolRef, 2> SymbolVector;
60 void reportDoubleClose(SymbolRef FileDescSym,
64 void reportLeaks(ArrayRef<SymbolRef> LeakedStreams, CheckerContext &C,
90 REGISTER_MAP_WITH_PROGRAMSTATE(StreamMap, SymbolRef, StreamState)
99 bool VisitSymbol(SymbolRef sym) override {
127 SymbolRef FileDesc = Call.getReturnValue().getAsSymbol();
146 SymbolRef FileDesc = Call.getArgSVal(0).getAsSymbol();
163 static bool isLeaked(SymbolRef Sym, const StreamState &SS,
182 SymbolRef Sym = I->first;
200 void SimpleStreamChecker::reportDoubleClose(SymbolRef FileDescSym
    [all...]
ObjCSuperDeallocChecker.cpp 54 void reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S,
61 // SymbolRef for the receiver.
62 REGISTER_SET_WITH_PROGRAMSTATE(CalledSuperDealloc, SymbolRef)
68 SymbolRef ReceiverSymbol;
72 SuperDeallocBRVisitor(SymbolRef ReceiverSymbol)
91 SymbolRef ReceiverSymbol = M.getReceiverSVal().getAsSymbol();
126 SymbolRef ReceiverSymbol = M.getSelfSVal().getAsSymbol();
138 SymbolRef BaseSym = L.getLocSymbolInBase();
181 void ObjCSuperDeallocChecker::reportUseAfterDealloc(SymbolRef Sym,
211 SymbolRef Sym = CE.getArgSVal(I).getAsSymbol()
    [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 56 std::vector<std::pair<SymbolRef, uint64_t>> Symbols =
119 std::error_code SymbolizableObjectFile::addSymbol(const SymbolRef &Symbol,
123 Expected<SymbolRef::Type> SymbolTypeOrErr = Symbol.getType();
126 SymbolRef::Type SymbolType = *SymbolTypeOrErr;
127 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
154 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
172 bool SymbolizableObjectFile::getNameFromSymbolTable(SymbolRef::Type Type,
177 const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects;
216 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset
    [all...]
SymbolizableObjectFile.h 49 bool getNameFromSymbolTable(object::SymbolRef::Type Type, uint64_t Address,
54 std::error_code addSymbol(const object::SymbolRef &Symbol,
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.cpp 30 if (Expr->getKind() != MCExpr::SymbolRef)
33 if (Expr->getKind() != MCExpr::SymbolRef)
61 case MCExpr::SymbolRef:
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 70 std::vector<std::pair<SymbolRef, uint64_t>> Symbols =
136 std::error_code SymbolizableObjectFile::addSymbol(const SymbolRef &Symbol,
140 Expected<SymbolRef::Type> SymbolTypeOrErr = Symbol.getType();
143 SymbolRef::Type SymbolType = *SymbolTypeOrErr;
144 if (SymbolType != SymbolRef::ST_Function && SymbolType != SymbolRef::ST_Data)
171 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
189 bool SymbolizableObjectFile::getNameFromSymbolTable(SymbolRef::Type Type,
194 const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects;
233 if (getNameFromSymbolTable(SymbolRef::ST_Function, ModuleOffset
    [all...]
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 89 for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
90 SymbolRef Sym = P.first;
91 if (Sym.getType() != SymbolRef::ST_Function)
131 if (I->getType() == SymbolRef::ST_Function) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.h 42 uint64_t getSymbolOffset(const SymbolRef &Sym);
  /external/llvm/lib/Object/
SymbolSize.cpp 40 static unsigned getSymbolSectionID(const ObjectFile &O, SymbolRef Sym) {
46 std::vector<std::pair<SymbolRef, uint64_t>>
48 std::vector<std::pair<SymbolRef, uint64_t>> Ret;
64 SymbolRef Sym = *I;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCOFF.h 42 uint64_t getSymbolOffset(const SymbolRef &Sym);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
SymbolSize.cpp 34 static unsigned getSymbolSectionID(const ObjectFile &O, SymbolRef Sym) {
40 std::vector<std::pair<SymbolRef, uint64_t>>
42 std::vector<std::pair<SymbolRef, uint64_t>> Ret;
58 SymbolRef Sym = *I;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Object/
SymbolSizeTest.cpp 17 auto it = symbol_iterator(SymbolRef());

Completed in 1039 milliseconds

1 2 3 4 5 6 7 8 9