Searched refs:ImpDefs (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCInstrDesc.cpp | 47 if (const MCPhysReg *ImpDefs = ImplicitDefs) in hasImplicitDefOfPhysReg() local 48 for (; *ImpDefs; ++ImpDefs) in hasImplicitDefOfPhysReg() 49 if (*ImpDefs == Reg || (MRI && MRI->isSubRegister(Reg, *ImpDefs))) in hasImplicitDefOfPhysReg()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | PHIElimination.cpp | 111 SmallPtrSet<MachineInstr*, 4> ImpDefs; member in __anon3acc1bd30111::PHIElimination 171 for (MachineInstr *DefMI : ImpDefs) { in runOnMachineFunction() 188 ImpDefs.clear(); in runOnMachineFunction() 408 ImpDefs.insert(DefMI); in LowerPHINode()
|
| H A D | MachineInstr.cpp | 104 for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; in addImplicitDefUseOperands() local 105 ++ImpDefs) in addImplicitDefUseOperands() 106 addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); in addImplicitDefUseOperands()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGRRList.cpp | 2824 const MCPhysReg *ImpDefs in canClobberReachingPhysRegUse() local 2827 if(!ImpDefs && !RegMask) in canClobberReachingPhysRegUse() 2841 if (ImpDefs) in canClobberReachingPhysRegUse() 2842 for (const MCPhysReg *ImpDef = ImpDefs; *ImpDef; ++ImpDef) in canClobberReachingPhysRegUse() 2861 const MCPhysReg *ImpDefs = TII->get(N->getMachineOpcode()).getImplicitDefs(); in canClobberPhysRegDefs() local 2862 assert(ImpDefs && "Caller should check hasPhysRegDefs"); in canClobberPhysRegDefs() 2878 unsigned Reg = ImpDefs[i - NumDefs]; in canClobberPhysRegDefs()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMLoadStoreOptimizer.cpp | 850 SmallVector<unsigned, 4> ImpDefs; in MergeOpsUpdate() local 873 if (is_contained(ImpDefs, DefReg)) in MergeOpsUpdate() 878 ImpDefs.push_back(DefReg); in MergeOpsUpdate() 930 for (unsigned &ImpDefReg : ImpDefs) { in MergeOpsUpdate() 943 for (unsigned ImpDef : ImpDefs) in MergeOpsUpdate() 956 assert(ImpDefs.empty()); in MergeOpsUpdate()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 947 for (const MCPhysReg *ImpDefs = MCID.getImplicitDefs(); *ImpDefs; ++ImpDefs) in verifyImplicitOperands() local 949 MachineOperand::CreateReg(*ImpDefs, true, true)); in verifyImplicitOperands()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.cpp | 1962 for (const MCPhysReg *ImpDefs = NewDesc.getImplicitDefs(); in optimizeCompareInstr() local 1963 *ImpDefs; ++ImpDefs) in optimizeCompareInstr() 1964 if (!MI->definesRegister(*ImpDefs)) in optimizeCompareInstr() 1966 MachineOperand::CreateReg(*ImpDefs, true, true)); in optimizeCompareInstr()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 5710 ArrayRef<MCPhysReg> ImpDefs(Desc.getImplicitDefs(), in parseMSInlineAsm() local 5712 ClobberRegs.insert(ClobberRegs.end(), ImpDefs.begin(), ImpDefs.end()); in parseMSInlineAsm()
|