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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
GCNIterativeScheduler.cpp 87 const auto LiveOuts = getLiveRegsAfter(*BottomMI, *LIS);
89 getRegPressure(MRI, LiveOuts).print(OS);
  /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/CodeGen/
LiveVariables.cpp 597 SmallSet<unsigned, 4> LiveOuts;
604 LiveOuts.insert(LI.PhysReg);
611 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
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...]
  /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 163 milliseconds