OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SubRegs
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/CodeGen/
LiveVariables.cpp
193
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
194
unsigned SubReg = *
SubRegs
; ++
SubRegs
) {
217
for (const unsigned *
SubRegs
= TRI->getSubRegisters(DefReg);
218
unsigned SubReg = *
SubRegs
; ++
SubRegs
)
248
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
249
unsigned SubReg = *
SubRegs
; ++
SubRegs
) {
273
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg)
[
all
...]
DeadMachineInstructionElim.cpp
172
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
173
*
SubRegs
; ++
SubRegs
)
174
LivePhysRegs.reset(*
SubRegs
);
RegisterScavenging.cpp
40
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
41
unsigned SubReg = *
SubRegs
; ++
SubRegs
)
202
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
203
unsigned SubReg = *
SubRegs
; ++
SubRegs
)
BranchFolding.cpp
135
for (const unsigned *
SubRegs
= TRI->getSubRegisters(Reg);
136
unsigned SubReg = *
SubRegs
; ++
SubRegs
)
[
all
...]
VirtRegRewriter.cpp
811
for (const unsigned *
SubRegs
= TRI->getSubRegisters(*I);
812
*
SubRegs
; ++
SubRegs
)
813
ClobberPhysReg(*
SubRegs
);
[
all
...]
/external/llvm/include/llvm/MC/
MCRegisterInfo.h
28
/// alias EAX. The
SubRegs
field is a zero terminated array of registers that
37
const unsigned *
SubRegs
; // Sub-register set, described above
145
return get(RegNo).
SubRegs
;
/external/llvm/utils/TableGen/
CodeGenRegisters.h
52
return
SubRegs
;
81
SubRegMap
SubRegs
;
CodeGenRegisters.cpp
51
return
SubRegs
;
54
std::vector<Record*> SubList = TheDef->getValueAsListOfDefs("
SubRegs
");
58
" SubRegIndices doesn't match
SubRegs
");
60
// First insert the direct
subregs
and make sure they are fully indexed.
63
if (!
SubRegs
.insert(std::make_pair(Indices[i], SR)).second)
68
// Keep track of inherited
subregs
and how they can be reached.
71
// Clone inherited
subregs
and place duplicate entries on Orphans.
72
// Here the order is important - earlier
subregs
take precedence.
84
if (!
SubRegs
.insert(*SI).second)
123
SubRegs
[BaseIdxInit->getDef()] = R2
[
all
...]
/external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp
220
const unsigned *
SubRegs
= RegInfo->getSubRegisters(Reg);
223
MachineLocation SrcML0(*
SubRegs
);
224
MachineLocation SrcML1(*(
SubRegs
+ 1));
Completed in 902 milliseconds