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

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Function.h 31 /// The block gathers all the descriptors of the locals defined in this block.
44 Scope(LocalVectorTy &&Descriptors) : Descriptors(std::move(Descriptors)) {}
47 return llvm::make_range(Descriptors.begin(), Descriptors.end());
51 /// Object descriptors in this block.
52 LocalVectorTy Descriptors;
145 /// List of block descriptors.
ByteCodeEmitter.h 73 /// Local descriptors.
74 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
ByteCodeExprGen.h 290 Idx = this->Ctx->Descriptors.size();
291 this->Ctx->Descriptors.emplace_back();
294 this->Ctx->Descriptors[*Idx].emplace_back(Local);
EvalEmitter.h 80 /// Local descriptors.
81 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
ByteCodeEmitter.cpp 39 // Assign descriptors to all parameters.
67 // Create scopes from descriptors.
69 for (auto &DS : Descriptors) {
EvalEmitter.cpp 238 for (auto &Local : Descriptors[I]) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 12 // The Symbol Rewriter pass takes a set of rewrite descriptors which define
62 /// mapping for rewriting the symbols. The descriptors individually describe
96 bool parse(const std::string &MapFile, RewriteDescriptorList *Descriptors);
125 Descriptors.splice(Descriptors.begin(), DL);
136 SymbolRewriter::RewriteDescriptorList Descriptors;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiModuleList.cpp 180 if (auto EC = Reader.readArray(Descriptors, ModInfo.getLength()))
222 auto DescriptorIter = Descriptors.begin();
227 assert(DescriptorIter != Descriptors.end());
235 assert(DescriptorIter == Descriptors.end());
256 auto Iter = Descriptors.at(Offset);
257 assert(Iter != Descriptors.end());
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/
InstrBuilder.h 35 /// descriptors (i.e. InstrDesc objects).
45 DenseMap<unsigned short, std::unique_ptr<const InstrDesc>> Descriptors;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
DbiModuleList.h 89 VarStreamArray<DbiModuleDescriptor> Descriptors;
103 // In order to provide random access into the Descriptors array, we iterate it
  /src/external/apache2/llvm/dist/llvm/lib/MCA/
InstrBuilder.cpp 594 Descriptors[MCI.getOpcode()] = std::move(ID);
595 return *Descriptors[MCI.getOpcode()];
604 if (Descriptors.find_as(MCI.getOpcode()) != Descriptors.end())
605 return *Descriptors[MCI.getOpcode()];
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 43 // New rewrite descriptors can be created. Addding a new rewrite descriptor
563 for (auto &Descriptor : Descriptors)
574 Parser.parse(MapFile, &Descriptors);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 234 // Returns the descriptors, or an error if we did not find a path or ran off
240 ContentDescriptors Descriptors;
252 Descriptors.push_back(Descriptor);
257 "failed to parse entry content descriptors: %s",
264 return Descriptors;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
DWARFYAML.cpp 149 IO.mapOptional("Descriptors", ARange.Descriptors);
DWARFEmitter.cpp 164 Length += AddrSize * 2 * (Range.Descriptors.size() + 1);
174 for (const auto &Descriptor : Range.Descriptors) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 60 std::vector<ARangeDescriptor> Descriptors;
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
dwarf2yaml.cpp 120 for (auto Descriptor : Set.descriptors()) {
124 Range.Descriptors.push_back(Desc);

Completed in 34 milliseconds