HomeSort by relevance Sort by last modified time
    Searched refs:Reg (Results 76 - 100 of 1492) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CriticalAntiDepBreaker.cpp 64 unsigned Reg = *I;
65 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
66 KillIndices[Reg] = BB->size();
67 DefIndices[Reg] = ~0u;
70 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) {
86 unsigned Reg = *I;
87 Classes[Reg] = reinterpret_cast<TargetRegisterClass *>(-1);
88 KillIndices[Reg] = BB->size();
89 DefIndices[Reg] = ~0u;
92 for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias)
    [all...]
  /external/capstone/
MCRegisterInfo.c 86 unsigned MCRegisterInfo_getMatchingSuperReg(MCRegisterInfo *RI, unsigned Reg, unsigned SubIdx, MCRegisterClass *RC)
90 if (Reg >= RI->NumRegs) {
94 DiffListIterator_init(&iter, (MCPhysReg)Reg, RI->DiffLists + RI->Desc[Reg].SuperRegs);
99 if (MCRegisterClass_contains(RC, val) && Reg == MCRegisterInfo_getSubReg(RI, val, SubIdx))
108 unsigned MCRegisterInfo_getSubReg(MCRegisterInfo *RI, unsigned Reg, unsigned Idx)
111 uint16_t *SRI = RI->SubRegIndices + RI->Desc[Reg].SubRegIndices;
113 DiffListIterator_init(&iter, (MCPhysReg)Reg, RI->DiffLists + RI->Desc[Reg].SubRegs);
134 bool MCRegisterClass_contains(MCRegisterClass *c, unsigned Reg)
    [all...]
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 60 unsigned AggressiveAntiDepState::GetGroup(unsigned Reg) {
61 unsigned Node = GroupNodeIndices[Reg];
73 for (unsigned Reg = 0; Reg != NumTargetRegs; ++Reg) {
74 if ((GetGroup(Reg) == Group) && (RegRefs->count(Reg) > 0))
75 Regs.push_back(Reg);
82 assert(GroupNodeIndices[0] == 0 && "Reg 0 not in Group 0!");
95 unsigned AggressiveAntiDepState::LeaveGroup(unsigned Reg)
    [all...]
MachineInstrBundle.cpp 146 unsigned Reg = MO.getReg();
147 if (!Reg)
149 assert(TargetRegisterInfo::isPhysicalRegister(Reg));
150 if (LocalDefSet.count(Reg)) {
154 KilledDefSet.insert(Reg);
156 if (ExternUseSet.insert(Reg).second) {
157 ExternUses.push_back(Reg);
159 UndefUseSet.insert(Reg);
163 KilledUseSet.insert(Reg);
169 unsigned Reg = MO.getReg()
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRegisterInfo.h 122 /// Reg are Debug instructions.
193 MachineInstr *getVRegDef(unsigned Reg) const;
199 void clearKillFlags(unsigned Reg) const;
211 const TargetRegisterClass *getRegClass(unsigned Reg) const {
212 return VRegInfo[Reg].first;
217 void setRegClass(unsigned Reg, const TargetRegisterClass *RC);
226 const TargetRegisterClass *constrainRegClass(unsigned Reg,
230 /// recomputeRegClass - Try to find a legal super-class of Reg's register
232 /// Reg. Returns true if Reg was upgraded
    [all...]
LiveVariables.h 114 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
115 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
118 unsigned Reg,
164 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
167 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
169 void HandlePhysRegUse(unsigned Reg, MachineInstr *MI);
170 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
176 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
181 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/Phy/MvPhyDxe/
MvPhyDxe.c 70 UINT32 Reg = 0;
73 Mdio->Read(Mdio, PhyAddr, MII_BMCR, &Reg);
74 Reg |= BMCR_RESET;
75 Mdio->Write(Mdio, PhyAddr, MII_BMCR, Reg);
77 while ((Reg & BMCR_RESET) && timeout--) {
78 Mdio->Read(Mdio, PhyAddr, MII_BMCR, &Reg);
82 if (Reg & BMCR_RESET) {
96 UINT32 Reg;
102 Mdio->Read(Mdio, PhyDev->Addr, MIIM_88E1111_PHY_EXT_CR, &Reg);
106 Reg |= (MIIM_88E1111_RX_DELAY | MIIM_88E1111_TX_DELAY);
    [all...]
  /art/compiler/debug/
elf_debug_frame_writer.h 35 using Reg = dwarf::Reg;
43 opcodes.DefCFA(Reg::ArmCore(13), 0); // R13(SP).
45 for (int reg = 0; reg < 13; reg++) {
46 if (reg < 4 || reg == 12) {
47 opcodes.Undefined(Reg::ArmCore(reg));
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/mips/
ssa.go 84 x := v.Args[0].Reg()
85 y := v.Reg()
99 p.From.Reg = x
101 p.To.Reg = y
104 p.To.Reg = mips.REGTMP
107 p.From.Reg = mips.REGTMP
109 p.To.Reg = y
112 if v.Reg() != v.Args[0].Reg() {
121 r := v.Reg()
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/mips/
ssa.go 84 x := v.Args[0].Reg()
85 y := v.Reg()
99 p.From.Reg = x
101 p.To.Reg = y
104 p.To.Reg = mips.REGTMP
107 p.From.Reg = mips.REGTMP
109 p.To.Reg = y
112 if v.Reg() != v.Args[0].Reg() {
121 r := v.Reg()
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 106 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
107 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
110 unsigned Reg,
150 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
153 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
158 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
159 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
165 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
170 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZMachineFunctionInfo.h 38 void setLowSavedGPR(unsigned Reg) { LowSavedGPR = Reg; }
43 void setHighSavedGPR(unsigned Reg) { HighSavedGPR = Reg; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
LiveVariables.h 105 /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
106 /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
109 unsigned Reg,
149 /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
152 bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
157 void HandlePhysRegUse(unsigned Reg, MachineInstr &MI);
158 void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
164 MachineInstr *FindLastRefOrPartRef(unsigned Reg);
169 MachineInstr *FindLastPartialDef(unsigned Reg,
    [all...]

Completed in 937 milliseconds

1 2 34 5 6 7 8 91011>>