/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCInstrDesc.cpp | 56 if (const MCPhysReg *ImpDefs = ImplicitDefs) in hasImplicitDefOfPhysReg() local 57 for (; *ImpDefs; ++ImpDefs) in hasImplicitDefOfPhysReg() 58 if (*ImpDefs == Reg || (MRI && MRI->isSubRegister(Reg, *ImpDefs))) in hasImplicitDefOfPhysReg()
|
/external/llvm/lib/MC/ |
D | MCInstrDesc.cpp | 56 if (const MCPhysReg *ImpDefs = ImplicitDefs) in hasImplicitDefOfPhysReg() local 57 for (; *ImpDefs; ++ImpDefs) in hasImplicitDefOfPhysReg() 58 if (*ImpDefs == Reg || (MRI && MRI->isSubRegister(Reg, *ImpDefs))) in hasImplicitDefOfPhysReg()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCInstrDesc.h | 258 if (const unsigned *ImpDefs = ImplicitDefs) in hasImplicitDefOfPhysReg() local 259 for (; *ImpDefs; ++ImpDefs) in hasImplicitDefOfPhysReg() 260 if (*ImpDefs == Reg) return true; in hasImplicitDefOfPhysReg()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | PHIElimination.cpp | 81 SmallPtrSet<MachineInstr*, 4> ImpDefs; member in __anon4ac3c2450111::PHIElimination 132 for (SmallPtrSet<MachineInstr*, 4>::iterator I = ImpDefs.begin(), in runOnMachineFunction() 133 E = ImpDefs.end(); I != E; ++I) { in runOnMachineFunction() 146 ImpDefs.clear(); in runOnMachineFunction() 299 ImpDefs.insert(DefMI); in LowerAtomicPHINode()
|
D | MachineInstr.cpp | 476 for (const unsigned *ImpDefs = MCID->ImplicitDefs; *ImpDefs; ++ImpDefs) in addImplicitDefUseOperands() local 477 addOperand(MachineOperand::CreateReg(*ImpDefs, true, true)); in addImplicitDefUseOperands()
|
/external/llvm/lib/CodeGen/ |
D | PHIElimination.cpp | 99 SmallPtrSet<MachineInstr*, 4> ImpDefs; member in __anon3e98eb190111::PHIElimination 158 for (MachineInstr *DefMI : ImpDefs) { in runOnMachineFunction() 175 ImpDefs.clear(); in runOnMachineFunction() 396 ImpDefs.insert(DefMI); in LowerPHINode()
|
D | MachineInstr.cpp | 640 for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; in addImplicitDefUseOperands() local 641 ++ImpDefs) in addImplicitDefUseOperands() 642 addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); in addImplicitDefUseOperands()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | PHIElimination.cpp | 111 SmallPtrSet<MachineInstr*, 4> ImpDefs; member in __anona92b78710111::PHIElimination 172 for (MachineInstr *DefMI : ImpDefs) { in runOnMachineFunction() 189 ImpDefs.clear(); in runOnMachineFunction() 410 ImpDefs.insert(DefMI); in LowerPHINode()
|
D | MachineInstr.cpp | 103 for (const MCPhysReg *ImpDefs = MCID->getImplicitDefs(); *ImpDefs; in addImplicitDefUseOperands() local 104 ++ImpDefs) in addImplicitDefUseOperands() 105 addOperand(MF, MachineOperand::CreateReg(*ImpDefs, true, true)); in addImplicitDefUseOperands()
|
/external/llvm/lib/Target/ARM/ |
D | ARMLoadStoreOptimizer.cpp | 819 SmallVector<unsigned, 4> ImpDefs; in MergeOpsUpdate() local 842 if (std::find(ImpDefs.begin(), ImpDefs.end(), DefReg) != ImpDefs.end()) in MergeOpsUpdate() 847 ImpDefs.push_back(DefReg); in MergeOpsUpdate() 898 for (unsigned &ImpDefReg : ImpDefs) { in MergeOpsUpdate() 911 for (unsigned ImpDef : ImpDefs) in MergeOpsUpdate() 924 assert(ImpDefs.empty()); in MergeOpsUpdate()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
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()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGRRList.cpp | 2697 const MCPhysReg *ImpDefs in canClobberReachingPhysRegUse() local 2700 if(!ImpDefs && !RegMask) in canClobberReachingPhysRegUse() 2714 if (ImpDefs) in canClobberReachingPhysRegUse() 2715 for (const MCPhysReg *ImpDef = ImpDefs; *ImpDef; ++ImpDef) in canClobberReachingPhysRegUse() 2734 const MCPhysReg *ImpDefs = TII->get(N->getMachineOpcode()).getImplicitDefs(); in canClobberPhysRegDefs() local 2735 assert(ImpDefs && "Caller should check hasPhysRegDefs"); in canClobberPhysRegDefs() 2751 unsigned Reg = ImpDefs[i - NumDefs]; in canClobberPhysRegDefs()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
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()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.cpp | 1782 for (const MCPhysReg *ImpDefs = NewDesc.getImplicitDefs(); in optimizeCompareInstr() local 1783 *ImpDefs; ++ImpDefs) in optimizeCompareInstr() 1784 if (!MI->definesRegister(*ImpDefs)) in optimizeCompareInstr() 1786 MachineOperand::CreateReg(*ImpDefs, true, true)); in optimizeCompareInstr()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGRRList.cpp | 2631 const unsigned *ImpDefs in canClobberReachingPhysRegUse() local 2633 if(!ImpDefs) in canClobberReachingPhysRegUse() 2644 for (const unsigned *ImpDef = ImpDefs; *ImpDef; ++ImpDef) { in canClobberReachingPhysRegUse() 2664 const unsigned *ImpDefs = TII->get(N->getMachineOpcode()).getImplicitDefs(); in canClobberPhysRegDefs() local 2665 assert(ImpDefs && "Caller should check hasPhysRegDefs"); in canClobberPhysRegDefs() 2680 unsigned Reg = ImpDefs[i - NumDefs]; in canClobberPhysRegDefs()
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MIParser.cpp | 768 for (const MCPhysReg *ImpDefs = MCID.getImplicitDefs(); *ImpDefs; ++ImpDefs) in verifyImplicitOperands() local 770 MachineOperand::CreateReg(*ImpDefs, true, true)); in verifyImplicitOperands()
|
/external/llvm/lib/Target/Hexagon/ |
D | RDFGraph.cpp | 1193 RegisterSet ImpUses, ImpDefs; in buildStmt() local 1196 ImpDefs.insert({R, 0}); in buildStmt() 1235 if (!NeedsImplicit && !ImpDefs.count(RR)) in buildStmt()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/ |
D | MIParser.cpp | 917 for (const MCPhysReg *ImpDefs = MCID.getImplicitDefs(); *ImpDefs; ++ImpDefs) in verifyImplicitOperands() local 919 MachineOperand::CreateReg(*ImpDefs, true, true)); in verifyImplicitOperands()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.cpp | 1943 for (const MCPhysReg *ImpDefs = NewDesc.getImplicitDefs(); in optimizeCompareInstr() local 1944 *ImpDefs; ++ImpDefs) in optimizeCompareInstr() 1945 if (!MI->definesRegister(*ImpDefs)) in optimizeCompareInstr() 1947 MachineOperand::CreateReg(*ImpDefs, true, true)); in optimizeCompareInstr()
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 5138 ArrayRef<MCPhysReg> ImpDefs(Desc.getImplicitDefs(), in parseMSInlineAsm() local 5140 ClobberRegs.insert(ClobberRegs.end(), ImpDefs.begin(), ImpDefs.end()); in parseMSInlineAsm()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 5673 ArrayRef<MCPhysReg> ImpDefs(Desc.getImplicitDefs(), in parseMSInlineAsm() local 5675 ClobberRegs.insert(ClobberRegs.end(), ImpDefs.begin(), ImpDefs.end()); in parseMSInlineAsm()
|