OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SRI
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/MC/
MCRegisterInfo.cpp
31
const uint16_t *
SRI
= SubRegIndices + get(Reg).SubRegIndices;
32
for (MCSubRegIterator Subs(Reg, this); Subs.isValid(); ++Subs, ++
SRI
)
33
if (*
SRI
== Idx)
42
const uint16_t *
SRI
= SubRegIndices + get(Reg).SubRegIndices;
43
for (MCSubRegIterator Subs(Reg, this); Subs.isValid(); ++Subs, ++
SRI
)
45
return *
SRI
;
/external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp
213
MCSuperRegIterator
SRI
(Reg, TRI);
214
assert(
SRI
.isValid() && "Expected a superreg");
215
unsigned SuperReg = *
SRI
;
216
++
SRI
;
217
assert(!
SRI
.isValid() && "Expected exactly one superreg");
/external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp
803
SRI
= SubRegIndices.begin(), SRE = SubRegIndices.end();
804
SRI
!= SRE; ++
SRI
) {
805
OS << " { " << (*
SRI
)->Offset << ", "
806
<< (*
SRI
)->Size
807
<< " },\t// " << (*
SRI
)->getName() << "\n";
[
all
...]
CodeGenRegisters.cpp
272
SubRegMap::const_iterator
SRI
= Map.find(I->first);
273
if (
SRI
== Map.end())
275
// Add I->second as a name for the subreg
SRI
->second, assuming it is
277
if (SubRegs.count(I->second) || !Orphans.erase(
SRI
->second))
280
SubRegs.insert(std::make_pair(I->second,
SRI
->second));
[
all
...]
CodeGenSchedule.cpp
289
for (RecIter
SRI
= SRDefs.begin(), SRE = SRDefs.end();
SRI
!= SRE; ++
SRI
) {
290
assert(!getSchedRWIdx(*
SRI
, /*IsRead-*/true) && "duplicate SchedWrite");
291
SchedReads.push_back(CodeGenSchedRW(SchedReads.size(), *
SRI
));
[
all
...]
Completed in 608 milliseconds