OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SubRegIndices
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/MC/
MCRegisterInfo.h
114
// Offset into MCRI::
SubRegIndices
of a list of sub-register indices for each
116
uint32_t
SubRegIndices
;
165
const uint16_t *
SubRegIndices
; // Pointer to the subreg lookup
260
SubRegIndices
= SubIndices;
/external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp
140
ArrayRef<CodeGenSubRegIndex*>
SubRegIndices
= Bank.getSubRegIndices();
141
if (!
SubRegIndices
.empty()) {
144
SubRegIndices
[0]->getNamespace();
148
for (unsigned i = 0, e =
SubRegIndices
.size(); i != e; ++i)
149
OS << " " <<
SubRegIndices
[i]->getName() << ",\t// " << i+1 << "\n";
633
ArrayRef<CodeGenSubRegIndex*>
SubRegIndices
= RegBank.getSubRegIndices();
648
for (unsigned i = 0, e =
SubRegIndices
.size(); i != e; ++i) {
651
if (combine(
SubRegIndices
[i], Rows[r])) {
659
Rows.back().resize(
SubRegIndices
.size());
660
combine(
SubRegIndices
[i], Rows.back())
[
all
...]
CodeGenRegisters.h
451
//
SubRegIndices
.
452
std::vector<CodeGenSubRegIndex*>
SubRegIndices
;
532
ArrayRef<CodeGenSubRegIndex*> getSubRegIndices() { return
SubRegIndices
; }
Completed in 147 milliseconds