/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | FunctionSummary.h | 56 using MapTy = llvm::DenseMap<const Decl *, FunctionSummary>; variable 57 MapTy Map; 60 MapTy::iterator findOrInsertSummary(const Decl *D) { in findOrInsertSummary() 61 MapTy::iterator I = Map.find(D); in findOrInsertSummary() 73 MapTy::iterator I = findOrInsertSummary(D); in markMayInline() 79 MapTy::iterator I = findOrInsertSummary(D); in markShouldNotInline() 89 MapTy::const_iterator I = Map.find(D); in mayInline() 96 MapTy::iterator I = findOrInsertSummary(D); in markVisitedBasicBlock() 107 MapTy::const_iterator I = Map.find(D); in getNumVisitedBasicBlocks() 114 MapTy::const_iterator I = Map.find(D); in getNumTimesInlined() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseSet.h | 53 template <typename ValueT, typename MapTy, typename ValueInfoT> 55 static_assert(sizeof(typename MapTy::value_type) == sizeof(ValueT), 57 MapTy TheMap; 112 typename MapTy::iterator I; 117 using difference_type = typename MapTy::iterator::difference_type; 124 Iterator(const typename MapTy::iterator &i) : I(i) {} in Iterator() 142 typename MapTy::const_iterator I; 147 using difference_type = typename MapTy::const_iterator::difference_type; 155 ConstIterator(const typename MapTy::const_iterator &i) : I(i) {} in ConstIterator() 242 template <typename ValueT, typename MapTy, typename ValueInfoT> [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ParentMap.cpp | 22 typedef llvm::DenseMap<Stmt*, Stmt*> MapTy; typedef 29 static void BuildParentMap(MapTy& M, Stmt* S, in BuildParentMap() 113 MapTy *M = new MapTy(); in ParentMap() 120 delete (MapTy*) Impl; in ~ParentMap() 125 BuildParentMap(*(MapTy*) Impl, S); in addStmt() 132 MapTy *M = reinterpret_cast<MapTy *>(Impl); in setParent() 137 MapTy* M = (MapTy*) Impl; in getParent()
|
H A D | ParentMapContext.cpp | 113 template <typename NodeTy, typename MapTy> 115 const MapTy &Map) { in getDynNodeFromMap() 371 template <typename MapNodeTy, typename MapTy> 372 void addParent(MapNodeTy MapNode, MapTy *Parents) { in addParent() 418 typename MapTy> 420 MapTy *Parents) { in TraverseNode()
|
H A D | ExprConstant.cpp | 556 typedef std::map<MapKeyTy, APValue> MapTy; typedef in __anonfb577fba0111::CallStackFrame 558 MapTy Temporaries;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | BlotMapVector.h | 24 using MapTy = DenseMap<KeyT, size_t>; variable 25 MapTy Map; 35 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end(); I != E; in ~BlotMapVector() 56 std::pair<typename MapTy::iterator, bool> Pair = 68 std::pair<typename MapTy::iterator, bool> Pair = in insert() 80 typename MapTy::iterator It = Map.find(Key); in find() 87 typename MapTy::const_iterator It = Map.find(Key); in find() 97 typename MapTy::iterator It = Map.find(Key); in blot()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackDocument.h | 42 typedef std::map<DocNode, DocNode> MapTy; typedef 61 MapTy *Map; 233 MapTy::iterator begin() { return Map->begin(); } in begin() 234 MapTy::iterator end() { return Map->end(); } in end() 235 MapTy::iterator find(DocNode Key) { return Map->find(Key); } in find() 236 MapTy::iterator find(StringRef Key); 237 MapTy::iterator erase(MapTy::const_iterator I) { return Map->erase(I); } in erase() 239 MapTy::iterator erase(MapTy::const_iterator First, in erase() 240 MapTy::const_iterator Second) { in erase() 281 std::vector<std::unique_ptr<DocNode::MapTy>> Maps; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | InstrOrderFile.cpp | 51 ArrayType *MapTy; member 67 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions); in createOrderFileData() 82 BitMap = new GlobalVariable(M, MapTy, false, GlobalValue::PrivateLinkage, in createOrderFileData() 83 Constant::getNullValue(MapTy), BitMapName); in createOrderFileData() 126 Value *MapAddr = entryB.CreateGEP(MapTy, BitMap, IdxFlags, ""); in generateCodeSequence()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CheckObjCInstMethSignature.cpp | 89 typedef llvm::DenseMap<Selector,ObjCMethodDecl*> MapTy; in CheckObjCInstMethSignature() typedef 90 MapTy IMeths; in CheckObjCInstMethSignature() 104 MapTy::iterator MI = IMeths.find(S); in CheckObjCInstMethSignature()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | DynamicType.cpp | 164 template <typename MapTy> 166 const auto &Map = State->get<MapTy>(); in removeDeadImpl() 170 State = State->remove<MapTy>(Elem.first); in removeDeadImpl() 263 template <class MapTy> 267 const auto &Map = State->get<MapTy>(); in printJsonImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | NonRelocatableStringpool.h | 28 using MapTy = StringMap<DwarfStringPoolEntry, BumpPtrAllocator>; 56 MapTy Strings;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Automaton.h | 168 using MapTy = std::map<std::pair<uint64_t, ActionT>, std::pair<uint64_t, unsigned>>; 169 std::shared_ptr<MapTy> M; 197 M = std::make_shared<MapTy>(); 170 using MapTy = std::map<std::pair<uint64_t, ActionT>, std::pair<uint64_t, unsigned>>; global() variable
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | UnsafeBufferUsage.h | 60 using MapTy = llvm::DenseMap<const VarDecl *, Kind>; 62 MapTy Map;
|
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
H A D | MsgPackDocument.cpp | 30 DocNode::MapTy::iterator MapDocNode::find(StringRef S) { in find() 254 DocNode::MapTy::iterator MapIt; in writeToBlob() 271 {Node, DocNode::MapTy::iterator(), Node.getArray().begin(), false}); in writeToBlob()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | RetainSummaryManager.h | 391 typedef llvm::DenseMap<ObjCSummaryKey, const RetainSummary *> MapTy; 392 MapTy M; 400 MapTy::iterator I = M.find(K); 431 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ConstantsContext.h | 596 using MapTy = DenseSet<ConstantClass *, MapInfo>; 599 MapTy Map; 602 typename MapTy::iterator begin() { return Map.begin(); } 603 typename MapTy::iterator end() { return Map.end(); } 641 typename MapTy::iterator I = Map.find(CP);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | MemProf.h | 817 template <typename MapTy> struct FrameIdConverter { 819 MapTy ⤅ 822 FrameIdConverter(MapTy &Map) : Map(Map) {} in FrameIdConverter() 841 template <typename MapTy> struct CallStackIdConverter { 843 MapTy ⤅ 847 CallStackIdConverter(MapTy &Map, in CallStackIdConverter()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 6400 IntegerType *MapTy = BitMap->getIntegerType(); in BuildLookup() local 6405 Value *ShiftAmt = Builder.CreateZExtOrTrunc(Index, MapTy, "switch.cast"); in BuildLookup() 6411 ShiftAmt, ConstantInt::get(MapTy, BitMapElementTy->getBitWidth()), in BuildLookup() 6873 IntegerType *MapTy = TableMask->getIntegerType(); in SwitchToLookupTable() local 6875 Builder.CreateZExtOrTrunc(TableIndex, MapTy, "switch.maskindex"); in SwitchToLookupTable()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 564 Type *MapTy = Type::getIntNTy(C->getContext(), in FoldReinterpretLoadFromConst() local 566 if (Constant *Res = FoldReinterpretLoadFromConst(C, MapTy, Offset, DL)) { in FoldReinterpretLoadFromConst()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 22224 std::optional<OMPDeclareTargetDeclAttr::MapTypeTy> MapTy = in checkDeclInTargetContext() local 22230 if (!MapTy || (*MapTy != OMPDeclareTargetDeclAttr::MT_To && in checkDeclInTargetContext() 22231 *MapTy != OMPDeclareTargetDeclAttr::MT_Enter)) { in checkDeclInTargetContext() 22244 if (MapTy) in checkDeclInTargetContext()
|