Searched refs:Map (Results 101 - 125 of 144) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp217 void clear() { Map.clear(); }
223 MapType::const_iterator F = Map.find(R);
224 return F != Map.end();
230 MapType::const_iterator F = Map.find(R);
231 if (F != Map.end())
238 Map[R] = L;
246 MapType Map;
255 const_iterator begin() const { return Map.begin(); }
256 const_iterator end() const { return Map.end(); }
624 for (auto &I : Map)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp536 // Map a temporary instruction we created to a parent block.
539 // Map between the already in-program instructions and the temporary phis we
555 // Map from temporary operation to MemoryAccess.
805 template <typename Map, typename KeyType, typename Func>
806 void for_each_found(Map &, const KeyType &, Func);
807 template <typename Map, typename KeyType>
808 void touchAndErase(Map &, const KeyType &);
2046 template <typename Map, typename KeyType, typename Func>
2047 void NewGVN::for_each_found(Map &M, const KeyType &Key, Func F) {
2050 for (typename Map
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp187 /// Processes the collected instructions, the \p Map. The values of \p Map
189 bool vectorizeChains(InstrListMap &Map);
849 bool Vectorizer::vectorizeChains(InstrListMap &Map) { argument
852 for (const std::pair<ChainID, InstrList> &Chain : Map) {
/freebsd-11-stable/sys/dev/ce/
H A Dtau32-ddk.h438 unsigned __int32 Map[TAU32_CHANNELS]; member in union:tag_TAU32_UserRequest::__anon9483::__anon9488
/freebsd-11-stable/stand/efi/include/
H A Defiprot.h476 EFI_IO_MAP Map; member in struct:_EFI_DEVICE_IO_INTERFACE
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h425 // Map from statements in the clang CFG to SExprs in the til::SCFG.
428 // Map from clang local variables to indices in a LVarDefinitionMap.
431 // Map from local variable indices to SSA variables (or constants).
478 void mergeEntryMap(LVarDefinitionMap Map);
494 // Map from Stmt to TIL Variables
500 // Map from clang to til BBs.
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix_libcdep.cpp354 uptr ReservedAddressRange::Map(uptr fixed_addr, uptr size, const char *name) { function in class:ReservedAddressRange
H A Dsanitizer_fuchsia.cpp260 uptr ReservedAddressRange::Map(uptr fixed_addr, uptr map_size, function in class:__sanitizer::ReservedAddressRange
330 // Map a larger size to get a chunk of address space big enough that
H A Dsanitizer_allocator_primary64.h638 uptr mapped = address_range.Map(beg, size, name);
696 // Map more space for chunks, if necessary.
732 // Map more space for metadata, if necessary.
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp490 void exportDebugifyStats(llvm::StringRef Path, const DebugifyStatsMap &Map) { argument
501 for (const auto &Entry : Map) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2272 std::string Sema::getOpenCLExtensionsFromExtMap(T *FDT, MapT &Map) { argument
2274 auto Loc = Map.find(FDT);
2298 DiagInfoT DiagInfo, MapT &Map,
2301 auto Loc = Map.find(D);
2302 if (Loc == Map.end())
2297 checkOpenCLDisabledTypeOrDecl(T D, DiagLocT DiagLoc, DiagInfoT DiagInfo, MapT &Map, unsigned Selector, SourceRange SrcRange) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1142 auto &Map = PP.getHeaderSearchInfo().getModuleMap(); local
1144 ? Map.getModuleMapFileForUniquing(WritingModule)->getName()
1150 Map.getAdditionalModuleMapFiles(WritingModule)) {
1724 // Map to disk files where possible, to pick up any missing stat
3813 StoredDeclsMap *Map = DC->getPrimaryContext()->buildLookup();
3816 if (Map) {
3817 LookupResults.reserve(Map->size());
3818 for (auto &Entry : *Map)
3863 StoredDeclsMap *Map = DC->buildLookup();
3864 if (!Map || Ma
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp674 const CodeGenSubRegIndex::CompMap &Map = Idx->getComposites(); local
675 for (const auto &I : Map) {
682 for (const auto &I : Map) {
706 // Map each Sub-register index to a compatible table row.
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java298 Map < Tuple, String > formattedOutput =
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp635 StringRef Map = A->getValue(); local
636 if (Map.find('=') == StringRef::npos)
638 << Map << A->getOption().getName();
640 CmdArgs.push_back(Args.MakeArgString("-fdebug-prefix-map=" + Map));
650 StringRef Map = A->getValue(); local
651 if (Map.find('=') == StringRef::npos)
653 << Map << A->getOption().getName();
655 CmdArgs.push_back(Args.MakeArgString("-fmacro-prefix-map=" + Map));
705 // Map the driver type to the frontend type. This is mostly an identity
4389 StringRef Map local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h154 /// Map from global value GUID to corresponding summary structures. Use a
885 /// Map of global value GUID to its summary, used to identify values defined in
889 /// Map of a type GUID to type id string and summary (multimap used
921 /// Map from value name to list of summary instances for values of that
1363 template <class Map>
1365 collectDefinedGVSummariesPerModule(Map &ModuleToDefinedGVSummaries) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugValues.cpp443 // Map the DebugVariable to recent primary location ID.
445 // Map the DebugVariable to recent backup location ID.
465 void insertFromLocSet(const VarLocSet &ToLoad, const VarLocMap &Map) { argument
467 const VarLoc &VarL = Map[Id];
1207 /// \param SeenFragments Map from DILocalVariable to all fragments of that
1379 // Map is keyed on a constant pointer, unwrap it so we can insert insts.
1488 VarLocMap VarLocIDs; // Map VarLoc<>unique ID for use in bitvectors.
1489 OverlapMap OverlapFragments; // Map of overlapping variable fragments.
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp210 CFGStmtMap *Map = LCtx->getAnalysisDeclContext()->getCFGStmtMap();
211 const CFGBlock *B = Map->getBlock(E);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp2408 auto It = Map.find(VarName);
2409 if (It == Map.end())
2414 if (!It->second.Resolved && Map.size() > 1) {
2417 Map.erase(It);
2419 Map[VarName] = {I, true};
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp712 /// VirtualBaseInfo - Map from all the (direct or indirect) virtual bases
716 /// NonVirtualBaseInfo - Map from all the direct non-virtual bases of the
3142 const auto &Map = KeyFunctions; local
3143 auto I = Map.find(Method->getParent());
3146 if (I == Map.end()) return;
H A DASTContext.cpp1045 const MapTy &Map) {
1046 auto I = Map.find(Node);
1047 if (I == Map.end()) {
10561 ASTVisitor(ParentMap &Map, ASTContext &Context) argument
10562 : Map(Map), Context(Context) {}
10628 &Map.PointerParents);
10637 &Map.PointerParents);
10644 &Map.OtherParents);
10651 &Map
1044 getDynNodeFromMap(const NodeTy &Node, const MapTy &Map) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h1907 DenseMap<Init *, MappedValue> Map; member in class:llvm::final::final::LessRecordRegister::final
1912 void set(Init *Key, Init *Value) { Map[Key] = {Value, false}; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp216 LLVM_DEBUG(dbgs() << "JIT: Map \'" << Name << "\' to [" << Addr << "]\n";);
253 ExecutionEngineState::GlobalAddressMapTy &Map = local
260 uint64_t &CurVal = Map[Name];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp275 void SetGUIDToFuncNameMapForAll(DenseMap<uint64_t, StringRef> *Map) { argument
284 FS->GUIDToFuncNameMap = Map;
361 /// Map basic blocks to their computed weights.
367 /// Map edges to their computed weights.
387 /// Map from function name to Function *. Used to find the function from
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLTraits.h43 Map, member in class:llvm::yaml::NodeKind
1113 case NodeKind::Map:

Completed in 538 milliseconds

123456