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

  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 216 SmallVector<LiveInReg, 4> LiveIns;
MIRYamlMapping.h 392 std::vector<MachineFunctionLiveIn> LiveIns;
415 YamlIO.mapOptional("liveins", MF.LiveIns);
MachineBasicBlock.h 106 LiveInVector LiveIns;
289 LiveIns.push_back(RegisterMaskPair(PhysReg, LaneMask));
292 LiveIns.push_back(RegMaskPair);
295 /// Sorts and uniques the LiveIns vector. It can be significantly faster to do
314 livein_iterator livein_begin() const { return LiveIns.begin(); }
315 livein_iterator livein_end() const { return LiveIns.end(); }
316 bool livein_empty() const { return LiveIns.empty(); }
317 iterator_range<livein_iterator> liveins() const { function in class:llvm::MachineBasicBlock
    [all...]
MachineRegisterInfo.h 123 std::vector<std::pair<unsigned, unsigned> > LiveIns;
793 LiveIns.push_back(std::make_pair(Reg, vreg));
800 livein_iterator livein_begin() const { return LiveIns.begin(); }
801 livein_iterator livein_end() const { return LiveIns.end(); }
802 bool livein_empty() const { return LiveIns.empty(); }
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.cpp 245 RegisterSet LiveIns;
246 for (auto I : B.liveins())
248 LiveIns.insert({I.PhysReg, 0});
249 return LiveIns;
RDFLiveness.cpp 659 auto &LiveIns = LiveMap[&B];
660 for (auto I : LiveIns) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRegisterInfo.h 61 /// LiveIns/LiveOuts - Keep track of the physical registers that are
66 std::vector<std::pair<unsigned, unsigned> > LiveIns;
302 LiveIns.push_back(std::make_pair(Reg, vreg));
311 livein_iterator livein_begin() const { return LiveIns.begin(); }
312 livein_iterator livein_end() const { return LiveIns.end(); }
313 bool livein_empty() const { return LiveIns.empty(); }
MachineBasicBlock.h 81 /// LiveIns - Keep track of the physical registers that are livein of
83 std::vector<unsigned> LiveIns;
204 void addLiveIn(unsigned Reg) { LiveIns.push_back(Reg); }
217 livein_iterator livein_begin() const { return LiveIns.begin(); }
218 livein_iterator livein_end() const { return LiveIns.end(); }
219 bool livein_empty() const { return LiveIns.empty(); }

Completed in 91 milliseconds