/external/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 90 LiveOutVec &LiveOuts) const { in parseOperand() 154 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand() 165 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local 213 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n"; in print() 216 for (const auto &LO : LiveOuts) { in print() 243 LiveOutVec LiveOuts; in parseRegisterLiveOutMask() local 248 LiveOuts.push_back(createLiveOutReg(Reg, TRI)); in parseRegisterLiveOutMask() 254 std::sort(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask() 260 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I) { in parseRegisterLiveOutMask() 274 LiveOuts.erase( in parseRegisterLiveOutMask() [all …]
|
D | ExecutionDepsFix.cpp | 144 LiveOutMap LiveOuts; member in __anon33e0e7e80311::ExeDepsFix 398 LiveOutMap::const_iterator fi = LiveOuts.find(*pi); in enterBasicBlock() 399 if (fi == LiveOuts.end()) { in enterBasicBlock() 441 bool First = LiveOuts.insert(std::make_pair(MBB, LiveRegs)).second; in leaveBasicBlock() 792 LiveOutMap::const_iterator FI = LiveOuts.find(*MBBI); in runOnMachineFunction() 793 if (FI == LiveOuts.end() || !FI->second) in runOnMachineFunction() 800 LiveOuts.clear(); in runOnMachineFunction()
|
D | LiveVariables.cpp | 602 SmallSet<unsigned, 4> LiveOuts; in runOnBlock() local 611 LiveOuts.insert(LI.PhysReg); in runOnBlock() 618 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i)) in runOnBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 105 LiveOutVec &LiveOuts) const { in parseOperand() 170 LiveOuts = parseRegisterLiveOutMask(MOI->getRegLiveOut()); in parseOperand() 181 const LiveOutVec &LiveOuts = CSI.LiveOuts; in print() local 230 OS << WSMP << "\thas " << LiveOuts.size() << " live-out registers\n"; in print() 233 for (const auto &LO : LiveOuts) { in print() 260 LiveOutVec LiveOuts; in parseRegisterLiveOutMask() local 265 LiveOuts.push_back(createLiveOutReg(Reg, TRI)); in parseRegisterLiveOutMask() 271 llvm::sort(LiveOuts.begin(), LiveOuts.end(), in parseRegisterLiveOutMask() 277 for (auto I = LiveOuts.begin(), E = LiveOuts.end(); I != E; ++I) { in parseRegisterLiveOutMask() 291 LiveOuts.erase( in parseRegisterLiveOutMask() [all …]
|
D | LiveVariables.cpp | 602 SmallSet<unsigned, 4> LiveOuts; in runOnBlock() local 611 LiveOuts.insert(LI.PhysReg); in runOnBlock() 618 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i)) in runOnBlock()
|
/external/llvm/include/llvm/CodeGen/ |
D | StackMaps.h | 200 LiveOutVec LiveOuts; member 203 LocationVec &&Locations, LiveOutVec &&LiveOuts) in CallsiteInfo() 205 LiveOuts(std::move(LiveOuts)) {} in CallsiteInfo() 218 LiveOutVec &LiveOuts) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | StackMaps.h | 274 LiveOutVec LiveOuts; member 278 LocationVec &&Locations, LiveOutVec &&LiveOuts) in CallsiteInfo() 280 LiveOuts(std::move(LiveOuts)) {} in CallsiteInfo() 294 LiveOutVec &LiveOuts) const;
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600MachineFunctionInfo.h | 26 SmallVector<unsigned, 4> LiveOuts; variable
|
D | R600ISelLowering.cpp | 598 for (unsigned i = 0, e = MFI->LiveOuts.size(); i != e; ++i) in EmitInstrWithCustomInserter() 599 MIB.addReg(MFI->LiveOuts[i], RegState::Implicit); in EmitInstrWithCustomInserter()
|
/external/llvm/test/CodeGen/X86/ |
D | statepoint-allocas.ll | 96 ; No Padding or LiveOuts 126 ; No Padding or LiveOuts
|
D | statepoint-stackmap-format.ll | 168 ; No Padding or LiveOuts 235 ; No Padding or LiveOuts 275 ; No padding or LiveOuts
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | statepoint-allocas.ll | 106 ; No Padding or LiveOuts 144 ; No Padding or LiveOuts
|
D | statepoint-stackmap-format.ll | 193 ; No Padding or LiveOuts 280 ; No Padding or LiveOuts 326 ; No padding or LiveOuts
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | GCNIterativeScheduler.cpp | 104 const auto LiveOuts = getLiveRegsAfter(*BottomMI, *LIS); in printLivenessInfo() local 106 getRegPressure(MRI, LiveOuts).print(OS); in printLivenessInfo()
|
D | AMDGPUMachineCFGStructurizer.cpp | 339 DenseSet<unsigned> LiveOuts; member in __anonbf470d410211::LinearizedRegion 877 for (auto &LI : LiveOuts) { in print() 896 void LinearizedRegion::addLiveOut(unsigned VReg) { LiveOuts.insert(VReg); } in addLiveOut() 900 LiveOuts.erase(Reg); in removeLiveOut() 984 DenseSet<unsigned> *LinearizedRegion::getLiveOuts() { return &LiveOuts; } in getLiveOuts() 1009 return LiveOuts.count(Reg) == 1; in isLiveOut() 2030 DenseSet<unsigned> *LiveOuts = InnerRegion->getLiveOuts(); in rewriteLiveOutRegs() local 2033 for (auto OLI : *LiveOuts) { in rewriteLiveOutRegs()
|
/external/llvm/docs/ |
D | StackMaps.rst | 349 LiveOuts[NumLiveOuts]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | StackMaps.rst | 353 LiveOuts[NumLiveOuts]
|