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

  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 146 // DistanceMap - Keep track the distance of a MI from the start of the
148 DenseMap<MachineInstr*, unsigned> DistanceMap;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LiveVariables.h 160 // DistanceMap - Keep track the distance of a MI from the start of the
162 DenseMap<MachineInstr*, unsigned> DistanceMap;
  /external/clang/include/clang/Sema/
SemaInternal.h 241 std::map<unsigned, SpecifierInfoList> DistanceMap;
271 : OuterBack(std::prev(Set.DistanceMap.end())),
272 Outer(Set.DistanceMap.begin()),
274 assert(!Set.DistanceMap.empty());
  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 87 DenseMap<MachineInstr*, unsigned> DistanceMap;
364 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
365 if (DI == DistanceMap.end())
719 DistanceMap.insert(std::make_pair(NewMI, Dist));
744 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
745 if (DI != DistanceMap.end())
825 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
826 if (DI == DistanceMap.end())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
TwoAddressInstructionPass.cpp 68 // DistanceMap - Keep track the distance of a MI from the start of the
70 DenseMap<MachineInstr*, unsigned> DistanceMap;
317 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
318 if (DI != DistanceMap.end() && DI->second == Loc)
352 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
353 if (DI == DistanceMap.end())
375 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
376 if (DI == DistanceMap.end())
615 DistanceMap.insert(std::make_pair(NewMI, Dist));
668 DistanceMap.insert(std::make_pair(NewMI, Dist))
    [all...]

Completed in 87 milliseconds