HomeSort by relevance Sort by last modified time
    Searched defs:SrcMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
MachineCopyPropagation.cpp 54 SourceMap &SrcMap,
67 SourceMap &SrcMap,
70 SourceMap::iterator SI = SrcMap.find(*AI);
71 if (SI != SrcMap.end()) {
133 SourceMap SrcMap; // Src -> Def map
206 SourceNoLongerAvailable(Def, SrcMap, AvailCopyMap);
222 if (std::find(SrcMap[Src].begin(), SrcMap[Src].end(), Def) ==
223 SrcMap[Src].end()) {
224 SrcMap[Src].push_back(Def)
    [all...]
  /art/compiler/
compiled_method.h 112 class SrcMap FINAL : public std::vector<SrcMapElem, Allocator> {
122 explicit SrcMap() {}
123 explicit SrcMap(const Allocator& alloc) : std::vector<SrcMapElem, Allocator>(alloc) {}
126 SrcMap(InputIt first, InputIt last, const Allocator& alloc)
160 using DefaultSrcMap = SrcMap<std::allocator<SrcMapElem>>;

Completed in 4312 milliseconds