HomeSort by: relevance | last modified time | path
    Searched refs:Mappings (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugCrossExSubsection.cpp 36 Mappings[Local] = Global;
40 return Mappings.size() * sizeof(CrossModuleExport);
45 for (const auto &M : Mappings) {
DebugCrossImpSubsection.cpp 58 auto Result = Mappings.insert(std::make_pair(Module, Targets));
65 for (const auto &Item : Mappings) {
74 using T = decltype(&*Mappings.begin());
76 Ids.reserve(Mappings.size());
78 for (const auto &M : Mappings)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
InjectTLIMappings.cpp 9 // Populates the VFABI attribute with the scalar-to-vector mappings
28 #define DEBUG_TYPE "inject-tli-mappings"
31 "Number of calls in which the mappings have been injected.");
87 SmallVector<std::string, 8> Mappings;
88 VFABI::getVectorVariantNames(CI, Mappings);
90 const SetVector<StringRef> OriginalSetOfMappings(Mappings.begin(),
91 Mappings.end());
100 Mappings.push_back(MangledName);
119 "Scalable vector mappings not yet supported");
121 VFABI::setVectorVariantNames(&CI, Mappings);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 61 std::map<uint32_t, uint32_t> Mappings;
DebugCrossImpSubsection.h 87 StringMap<std::vector<support::ulittle32_t>> Mappings;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Tokens.cpp 242 auto It = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
246 if (It == File.Mappings.begin()) {
271 auto It = llvm::partition_point(F.Mappings, [SpelledI](const Mapping &M) {
274 if (It == F.Mappings.begin())
304 // between 2 mappings, or between a mapping and end of the file).
362 // Mapping an empty range is ambiguous in case of empty mappings at either end
450 auto M = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
453 if (M == File.Mappings.end() || M->BeginSpelled != SpelledIndex)
467 auto M = llvm::partition_point(File.Mappings, [&](const Mapping &M) {
471 for (; M != File.Mappings.end() && M->BeginSpelled < SpelledEndIndex; ++M
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Tokens.h 175 /// FIXME: allow mappings into macro arguments.
346 std::vector<Mapping> Mappings;
440 /// building mappings from spelled to expanded tokens.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
VectorUtils.h 173 /// the TLI mappings. It is the responsibility of the caller to make sure that
194 // Name of the attribute where the variant mappings are stored.
213 /// The CallInst instance being queried for scalar to vector mappings.
219 /// Retrieve the scalar-to-vector mappings associated to the rule of
222 SmallVectorImpl<VFInfo> &Mappings) {
244 Mappings.push_back(Shape.getValue());
254 // Get mappings from the Vector Function ABI variants.
  /src/external/apache2/llvm/dist/clang/lib/CrossTU/
CrossTranslationUnit.cpp 614 auto *Mappings = dyn_cast<llvm::yaml::MappingNode>(DocumentRoot);
615 if (!Mappings)
619 for (auto &NextMapping : *Mappings) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 628 /// Create the global variable holding the offload mappings information.
629 GlobalVariable *createOffloadMaptypes(SmallVectorImpl<uint64_t> &Mappings,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VirtualFileSystem.h 873 std::vector<YAMLVFSEntry> Mappings;
898 const std::vector<YAMLVFSEntry> &getMappings() const { return Mappings; }
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VirtualFileSystem.cpp 2154 Mappings.emplace_back(VirtualPath, RealPath, IsDirectory);
2328 llvm::sort(Mappings, [](const YAMLVFSEntry &LHS, const YAMLVFSEntry &RHS) {
2332 JSONWriter(OS).write(Mappings, UseExternalNames, IsCaseSensitive,
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 687 const ModifierMappingsType &Mappings) const {
690 NewMappings.push_back(mapIndex(Idx, Mappings));
748 " mappings)");
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 5168 std::vector<CoreFileMapping> Mappings;
5173 // 1. # of file mappings (call it N)
5194 return createError("unable to read file mappings (found " +
5203 Ret.Mappings.resize(FileCount);
5205 for (CoreFileMapping &Mapping : Ret.Mappings) {
5230 for (const CoreFileMapping &Mapping : Note.Mappings) {
6779 for (const CoreFileMapping &Mapping : Note.Mappings) {
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 2234 OpenMPIRBuilder::createOffloadMaptypes(SmallVectorImpl<uint64_t> &Mappings,
2237 llvm::ConstantDataArray::get(M.getContext(), Mappings);

Completed in 136 milliseconds