/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CallFrameOptimization.cpp | 114 DenseSet<unsigned int> &UsedRegs); 281 const X86RegisterInfo &RegInfo, DenseSet<unsigned int> &UsedRegs) { in classifyInstruction() argument 344 for (unsigned int U : UsedRegs) in classifyInstruction() 409 DenseSet<unsigned int> UsedRegs; in collectCallInfo() local 415 Classification = classifyInstruction(MBB, I, RegInfo, UsedRegs); in collectCallInfo() 458 UsedRegs.insert(Reg); in collectCallInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | Thumb1FrameLowering.cpp | 582 const LivePhysRegs &UsedRegs, unsigned &PopReg, in findTemporariesForLR() argument 586 if (!UsedRegs.contains(Reg)) { in findTemporariesForLR() 653 LivePhysRegs UsedRegs(TRI); in emitPopSpecialFixUp() local 654 UsedRegs.addLiveOuts(MBB); in emitPopSpecialFixUp() 661 UsedRegs.addReg(CSRegs[i]); in emitPopSpecialFixUp() 670 UsedRegs.stepBackward(*--InstUpToMBBI); in emitPopSpecialFixUp() 694 findTemporariesForLR(GPRsNoLRSP, PopFriendly, UsedRegs, PopReg, TemporaryReg); in emitPopSpecialFixUp() 704 UsedRegs.stepBackward(*PrevMBBI); in emitPopSpecialFixUp() 705 findTemporariesForLR(GPRsNoLRSP, PopFriendly, UsedRegs, PopReg, TemporaryReg); in emitPopSpecialFixUp()
|
D | ARMFastISel.cpp | 230 bool FinishCall(MVT RetVT, SmallVectorImpl<Register> &UsedRegs, 2034 bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<Register> &UsedRegs, in FinishCall() argument 2061 UsedRegs.push_back(RVLocs[0].getLocReg()); in FinishCall() 2062 UsedRegs.push_back(RVLocs[1].getLocReg()); in FinishCall() 2080 UsedRegs.push_back(RVLocs[0].getLocReg()); in FinishCall() 2284 SmallVector<Register, 4> UsedRegs; in ARMEmitLibcall() local 2285 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, false)) return false; in ARMEmitLibcall() 2288 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI); in ARMEmitLibcall() 2428 SmallVector<Register, 4> UsedRegs; in SelectCall() local 2429 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, isVarArg)) in SelectCall() [all …]
|
D | ARMLoadStoreOptimizer.cpp | 863 DenseSet<unsigned> UsedRegs; in MergeOpsUpdate() local 872 UsedRegs.insert(Reg); in MergeOpsUpdate() 964 if (UsedRegs.count(MO.getReg())) in MergeOpsUpdate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
D | DispatchStage.cpp | 39 ArrayRef<unsigned> UsedRegs, in notifyInstructionDispatched() argument 43 HWInstructionDispatchedEvent(IR, UsedRegs, UOps)); in notifyInstructionDispatched()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | InstrEmitter.cpp | 930 SmallVector<Register, 8> UsedRegs; in EmitMachineNode() local 939 UsedRegs.push_back(Reg); in EmitMachineNode() 948 UsedRegs.push_back(cast<RegisterSDNode>(F->getOperand(1))->getReg()); in EmitMachineNode() 956 UsedRegs.append(MCID.getImplicitUses(), in EmitMachineNode() 964 UsedRegs.push_back(Reg); in EmitMachineNode() 970 if (!UsedRegs.empty() || II.getImplicitDefs() || II.hasOptionalDef()) in EmitMachineNode() 971 MIB->setPhysRegsDeadExcept(UsedRegs, *TRI); in EmitMachineNode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CallingConvLower.cpp | 37 UsedRegs.resize((TRI.getNumRegs()+31)/32); in CCState() 64 UsedRegs[*AI/32] |= 1 << (*AI&31); in MarkAllocated()
|
D | MachineBasicBlock.cpp | 921 SmallVector<unsigned, 4> UsedRegs; in SplitCriticalEdge() local 933 if (!is_contained(UsedRegs, Reg)) in SplitCriticalEdge() 934 UsedRegs.push_back(Reg); in SplitCriticalEdge() 1068 LIS->repairIntervalsInRange(this, getFirstTerminator(), end(), UsedRegs); in SplitCriticalEdge()
|
D | MachineInstr.cpp | 1951 void MachineInstr::setPhysRegsDeadExcept(ArrayRef<Register> UsedRegs, in setPhysRegsDeadExcept() argument 1964 if (llvm::none_of(UsedRegs, in setPhysRegsDeadExcept() 1972 for (ArrayRef<Register>::iterator I = UsedRegs.begin(), E = UsedRegs.end(); in setPhysRegsDeadExcept()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | CallingConvLower.h | 203 SmallVector<uint32_t, 16> UsedRegs; variable 286 return UsedRegs[Reg/32] & (1 << (Reg&31)); in isAllocated()
|
D | MachineInstr.h | 1434 void setPhysRegsDeadExcept(ArrayRef<Register> UsedRegs,
|