Searched refs:Map (Results 76 - 100 of 144) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp290 // Map the param back to the param of the original function declaration
731 // Merge values from Map into the current variable map.
733 void SExprBuilder::mergeEntryMap(LVarDefinitionMap Map) { argument
737 // Steal Map, using copy-on-write.
738 CurrentLVarMap = std::move(Map);
741 if (CurrentLVarMap.sameAs(Map))
746 unsigned MSz = Map.size();
750 if (CurrentLVarMap[i].first != Map[i].first) {
756 if (CurrentLVarMap[i].second != Map[i].second)
757 makePhiNodeVar(i, NPreds, Map[
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp740 void computeInsertionPoints(const VNtoInsns &Map, HoistingPointList &HPL, argument
744 for (const auto &Entry : Map) {
749 // Get instruction from the Map, assume that all the Instructions
751 llvm::sort(Ranks, [this, &Map](const VNType &r1, const VNType &r2) {
752 return (rank(*Map.lookup(r1).begin()) < rank(*Map.lookup(r2).begin()));
768 const SmallVecInsn &V = Map.lookup(R);
H A DStructurizeCFG.cpp586 PhiMap &Map = DeletedPhis[To]; local
590 Map[&Phi].push_back(std::make_pair(From, Deleted));
615 PhiMap &Map = DeletedPhis[To]; local
616 for (const auto &PI : Map) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h281 // Map extensions to warnings or errors?
714 void setSeverity(diag::kind Diag, diag::Severity Map, SourceLocation Loc);
728 diag::Severity Map,
750 void setSeverityForAll(diag::Flavor Flavor, diag::Severity Map,
960 DiagnosticMapping makeUserMapping(diag::Severity Map, SourceLocation L) { argument
963 DiagnosticMapping::Make(Map, /*IsUser=*/true, isPragma);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp360 return NodeKind::Map;
392 } else if (MappingNode *Map = dyn_cast<MappingNode>(N)) {
394 for (KeyValueNode &KVN : *Map) {
400 setError(KeyNode, "Map key must be a scalar");
402 setError(KeyNode, "Map value must not be empty");
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp368 typedef AddrHashMap<uptr, 5> Map; typedef
369 static Map Addresses;
370 Map::Handle h(&Addresses, addr);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.cpp404 InstrumentationMap Map;
413 Map = std::move(*InstrumentationMapOrError);
422 const auto &FunctionAddresses = Map.getFunctionAddresses();
H A Dxray-stacks.cpp689 InstrumentationMap Map;
698 Map = std::move(*InstrumentationMapOrError);
720 Map.getFunctionAddresses());
H A Dxray-graph.cpp418 InstrumentationMap Map; local
427 Map = std::move(*InstrumentationMapOrError);
430 const auto &FunctionAddresses = Map.getFunctionAddresses();
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dvmsbuild.com56 $ LINK/Map=dummy.map/noExe dummy.obj,'WORK_LIB'/Libr,-
160 $ LINK/Map=dummy.map/noExe dummy.obj,'WORK_LIB'/Libr,-
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DStratifiedSets.h90 StratifiedSets(DenseMap<T, StratifiedInfo> Map, argument
92 : Values(std::move(Map)), Links(std::move(Links)) {}
H A DMustExecute.cpp487 /// Lookup \p Key in \p Map and return the result, potentially after
490 static V getOrCreateCachedOptional(K Key, DenseMap<K, Optional<V>> &Map, argument
492 Optional<V> &OptVal = Map[Key];
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp330 const StreamMapTy &Map = State->get<StreamMap>(); local
331 for (const auto &I: Map) {
H A DGenericTaintChecker.cpp202 static auto findFunctionInConfig(const ConfigDataMap<T> &Map,
397 auto GenericTaintChecker::findFunctionInConfig(const ConfigDataMap<T> &Map, argument
399 auto Range = Map.equal_range(FData.Name);
406 return It != Range.second ? It : Map.end();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp944 MapVector<StringRef, uint8_t> Map; local
950 Map["STV_PROTECTED"] = ELF::STV_PROTECTED;
951 Map["STV_HIDDEN"] = ELF::STV_HIDDEN;
952 Map["STV_INTERNAL"] = ELF::STV_INTERNAL;
957 Map["STV_DEFAULT"] = ELF::STV_DEFAULT;
964 Map["STO_MIPS_MIPS16"] = ELF::STO_MIPS_MIPS16;
965 Map["STO_MIPS_MICROMIPS"] = ELF::STO_MIPS_MICROMIPS;
966 Map["STO_MIPS_PIC"] = ELF::STO_MIPS_PIC;
967 Map["STO_MIPS_PLT"] = ELF::STO_MIPS_PLT;
968 Map["STO_MIPS_OPTIONA
[all...]
H A DELFEmitter.cpp66 StringMap<unsigned> Map; member in class:__anon1952::NameToIdxMap
71 return Map.insert({Name, Ndx}).second;
75 auto I = Map.find(Name);
76 if (I == Map.end())
89 unsigned size() const { return Map.size(); }
1355 auto Build = [this](ArrayRef<ELFYAML::Symbol> V, NameToIdxMap &Map) {
1358 if (!Sym.Name.empty() && !Map.addName(Sym.Name, I + 1))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp299 /// Map serial numbers to Large offset GEPs.
3291 FoldAddrToValueMapping Map;
3292 if (!initializeMap(Map))
3295 Value *CommonValue = findCommon(Map);
3302 /// Initialize Map with anchor values. For address seen
3307 bool initializeMap(FoldAddrToValueMapping &Map) { argument
3319 Map[AM.OriginalValue] = DV;
3326 Map[V] = Constant::getNullValue(CommonType);
3347 // Map is
3353 Value *findCommon(FoldAddrToValueMapping &Map) { argument
3493 FillPlaceholders(FoldAddrToValueMapping &Map, SmallVectorImpl<Value *> &TraverseOrder, SimplificationTracker &ST) argument
3529 InsertPlaceholders(FoldAddrToValueMapping &Map, SmallVectorImpl<Value *> &TraverseOrder, SimplificationTracker &ST) argument
[all...]
/freebsd-11-stable/stand/efi/include/
H A Defipciio.h64 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE 0x0080 ///< Map a memory range so writes are combined
68 #define EFI_PCI_IO_ATTRIBUTE_MEMORY_CACHED 0x0800 ///< Map a memory range so all r/w accesses are cached
318 Completes the Map() operation and releases any corresponding resources.
321 @param Mapping The mapping value returned from Map().
532 EFI_PCI_IO_PROTOCOL_MAP Map; member in struct:_EFI_PCI_IO_PROTOCOL
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h241 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h207 return Map.insert({Mode,SetType()}).first->second;
215 return isDefaultOnly() && Map.begin()->second.size() == 1;
221 return *Map.begin()->second.begin();
228 return Map.size() == 1 && Map.begin()->first == DefaultMode;
H A DCodeGenRegisters.cpp284 // Map explicit sub-registers first, so the names take precedence.
295 const SubRegMap &Map = ESR->computeSubRegs(RegBank); local
298 for (const auto &SR : Map) {
313 const SubRegMap &Map = SR->computeSubRegs(RegBank); local
319 SubRegMap::const_iterator SRI = Map.find(I->first);
320 if (SRI == Map.end())
351 const SubRegMap &Map = SR->computeSubRegs(RegBank); local
352 for (const auto &SubReg : Map)
802 RSI.Map.insert({DefaultMode, RI});
2169 // Map SubRegInde
[all...]
H A DCodeEmitterGen.cpp275 for (auto &KV : EBM.Map) {
412 for (auto &KV : EBM.Map) {
460 // Map to accumulate all the cases.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp242 /// Map a register pair Reg to the subregister that has the greater "number",
2077 BlockRangeMap Map; member in struct:SlotInfo
2188 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
2205 auto &RL = FIRangeMap[I.first].Map[&B];
2217 auto &RL = FIRangeMap[I.first].Map[&B];
2232 for (auto &R : P.second.Map)
2250 auto F = P.second.Map.find(&B);
2252 if (F == P.second.Map.end() || F->second.empty())
2295 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp141 diag::Severity Map, StringRef Str) override;
502 diag::Severity Map,
507 switch (Map) {
500 PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, diag::Severity Map, StringRef Str) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1637 // Map platform specific debug section names to DWARF standard section
1689 RelocAddrMap *Map = Sec ? &Sec->Relocs : nullptr; local
1690 if (!Map) {
1694 Map = &static_cast<DWARFSectionMap &>(InfoSections[*RelocatedSection])
1697 Map = &static_cast<DWARFSectionMap &>(
1701 Map =
1705 Map = &static_cast<DWARFSectionMap &>(
1739 auto I = Map->try_emplace(

Completed in 340 milliseconds

123456