OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LiveIns
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h
215
SmallVector<LiveInReg, 4>
LiveIns
;
MachineRegisterInfo.h
107
std::vector<std::pair<unsigned, unsigned> >
LiveIns
;
488
LiveIns
.push_back(std::make_pair(Reg, vreg));
495
livein_iterator livein_begin() const { return
LiveIns
.begin(); }
496
livein_iterator livein_end() const { return
LiveIns
.end(); }
497
bool livein_empty() const { return
LiveIns
.empty(); }
MachineBasicBlock.h
81
///
LiveIns
- Keep track of the physical registers that are livein of
83
std::vector<unsigned>
LiveIns
;
297
void addLiveIn(unsigned Reg) {
LiveIns
.push_back(Reg); }
315
livein_iterator livein_begin() const { return
LiveIns
.begin(); }
316
livein_iterator livein_end() const { return
LiveIns
.end(); }
317
bool livein_empty() const { return
LiveIns
.empty(); }
Completed in 133 milliseconds