OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProcIndices
(Results
1 - 2
of
2
) sorted by null
/external/llvm/utils/TableGen/
CodeGenSchedule.h
99
IdxVec
ProcIndices
;
109
/// Writes and ReadDefs are empty.
ProcIndices
contains 0 for any processor.
113
/// subtargets.
ProcIndices
contains 0 for any processor.
117
/// instructions to this class.
ProcIndices
contains all the processors that
122
/// resolved at runtime.
ProcIndices
contains the set of processors that may
123
/// require the class.
ProcIndices
are propagated through SchedClasses as
135
IdxVec
ProcIndices
;
345
const IdxVec &OperReads, const IdxVec &
ProcIndices
);
382
unsigned FromClassIdx, const IdxVec &
ProcIndices
);
394
const IdxVec &
ProcIndices
);
[
all
...]
SubtargetEmitter.cpp
856
if (TI->
ProcIndices
[0] == 0) {
860
IdxIter PIPos = std::find(TI->
ProcIndices
.begin(),
861
TI->
ProcIndices
.end(), ProcModel.Index);
862
if (PIPos != TI->
ProcIndices
.end()) {
874
// If
ProcIndices
contains 0, this class applies to all processors.
875
assert(!SCI->
ProcIndices
.empty() && "expect at least one procidx");
876
if (SCI->
ProcIndices
[0] != 0) {
877
IdxIter PIPos = std::find(SCI->
ProcIndices
.begin(),
878
SCI->
ProcIndices
.end(), ProcModel.Index);
879
if (PIPos == SCI->
ProcIndices
.end()
[
all
...]
Completed in 235 milliseconds