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,
68 SourceMap &SrcMap,
71 SourceMap::iterator SI = SrcMap.find(*AI);
72 if (SI != SrcMap.end()) {
141 SourceMap SrcMap; // Src -> Def map
214 SourceNoLongerAvailable(Def, SrcMap, AvailCopyMap);
230 if (std::find(SrcMap[Src].begin(), SrcMap[Src].end(), Def) ==
231 SrcMap[Src].end()) {
232 SrcMap[Src].push_back(Def)
    [all...]
  /art/compiler/
compiled_method.h 107 class SrcMap FINAL : public std::vector<SrcMapElem, Allocator> {
117 explicit SrcMap() {}
118 explicit SrcMap(const Allocator& alloc) : std::vector<SrcMapElem, Allocator>(alloc) {}
121 SrcMap(InputIt first, InputIt last, const Allocator& alloc)
155 using DefaultSrcMap = SrcMap<std::allocator<SrcMapElem>>;
156 using SwapSrcMap = SrcMap<SwapAllocator<SrcMapElem>>;

Completed in 89 milliseconds