OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImpDefs
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/MC/
MCInstrDesc.cpp
56
if (const MCPhysReg *
ImpDefs
= ImplicitDefs)
57
for (; *
ImpDefs
; ++
ImpDefs
)
58
if (*
ImpDefs
== Reg || (MRI && MRI->isSubRegister(Reg, *
ImpDefs
)))
/external/llvm/lib/CodeGen/
PHIElimination.cpp
100
SmallPtrSet<MachineInstr*, 4>
ImpDefs
;
158
for (MachineInstr *DefMI :
ImpDefs
) {
176
ImpDefs
.clear();
397
ImpDefs
.insert(DefMI);
MachineInstr.cpp
634
for (const MCPhysReg *
ImpDefs
= MCID->getImplicitDefs(); *
ImpDefs
;
635
++
ImpDefs
)
636
addOperand(MF, MachineOperand::CreateReg(*
ImpDefs
, true, true));
[
all
...]
/external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp
801
SmallVector<unsigned, 4>
ImpDefs
;
824
if (std::find(
ImpDefs
.begin(),
ImpDefs
.end(), DefReg) !=
ImpDefs
.end())
829
ImpDefs
.push_back(DefReg);
880
for (unsigned &ImpDefReg :
ImpDefs
) {
893
for (unsigned ImpDef :
ImpDefs
)
906
assert(
ImpDefs
.empty());
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp
[
all
...]
/external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp
748
for (const MCPhysReg *
ImpDefs
= MCID.getImplicitDefs(); *
ImpDefs
; ++
ImpDefs
)
750
MachineOperand::CreateReg(*
ImpDefs
, true, true));
[
all
...]
/external/llvm/lib/MC/MCParser/
AsmParser.cpp
[
all
...]
Completed in 3699 milliseconds