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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackMaps.cpp 190 LiveOutVec &LiveOuts) const {
261 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut());
272 const LiveOutVec &LiveOuts = CSI.LiveOuts;
321 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n";
324 for (const auto &LO : LiveOuts) {
351 LiveOutVec LiveOuts;
356 LiveOuts.push_back(createLiveOutReg(Reg, TRI));
362 llvm::sort(LiveOuts, [](const LiveOutReg &LHS, const LiveOutReg &RHS) {
367 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I)
    [all...]
LiveVariables.cpp 597 SmallSet<unsigned, 4> LiveOuts;
604 LiveOuts.insert(LI.PhysReg);
611 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
StackMaps.h 316 LiveOutVec LiveOuts;
320 LocationVec &&Locations, LiveOutVec &&LiveOuts)
322 LiveOuts(std::move(LiveOuts)) {}
364 LiveOutVec &LiveOuts) const;
371 LocationVec &Locations, LiveOutVec &LiveOuts);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
GCNIterativeScheduler.cpp 87 const auto LiveOuts = getLiveRegsAfter(*BottomMI, *LIS);
89 getRegPressure(MRI, LiveOuts).print(OS);
AMDGPUMachineCFGStructurizer.cpp 320 DenseSet<unsigned> LiveOuts;
858 for (auto &LI : LiveOuts) {
877 void LinearizedRegion::addLiveOut(unsigned VReg) { LiveOuts.insert(VReg); }
881 LiveOuts.erase(Reg);
903 // If we are replacing outside, we also need to update the LiveOuts
966 DenseSet<unsigned> *LinearizedRegion::getLiveOuts() { return &LiveOuts; }
991 return LiveOuts.contains(Reg);
2010 DenseSet<unsigned> *LiveOuts = InnerRegion->getLiveOuts();
2013 for (auto OLI : *LiveOuts) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
InstrRefBasedImpl.cpp 1515 const LiveIdxT &LiveOuts, ValueIDNum **MOutLocs,
2522 MachineBasicBlock &MBB, const DebugVariable &Var, const LiveIdxT &LiveOuts,
2540 auto LiveOutMap = LiveOuts.find(p);
2541 if (LiveOutMap == LiveOuts.end())
2993 SmallVector<DenseMap<DebugVariable, DbgValue>, 32> LiveIns, LiveOuts;
2995 LiveOuts.resize(NumBlocks);
3003 LiveOutIdx[BlockOrders[I]] = &LiveOuts[I];
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 1990 SmallVector< Instruction *, 8 > LiveOuts;
1991 LiveOuts = llvm::findDefsUsedOutsideOfLoop(L);
1996 for (auto *I : LiveOuts) {

Completed in 30 milliseconds