OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LiveIns
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h
215
SmallVector<LiveInReg, 4>
LiveIns
;
MIRYamlMapping.h
393
std::vector<MachineFunctionLiveIn>
LiveIns
;
415
YamlIO.mapOptional("
liveins
", MF.
LiveIns
);
MachineBasicBlock.h
104
LiveInVector
LiveIns
;
346
LiveIns
.push_back(RegisterMaskPair(PhysReg, LaneMask));
349
LiveIns
.push_back(RegMaskPair);
352
/// Sorts and uniques the
LiveIns
vector. It can be significantly faster to do
371
livein_iterator livein_begin() const { return
LiveIns
.begin(); }
372
livein_iterator livein_end() const { return
LiveIns
.end(); }
373
bool livein_empty() const { return
LiveIns
.empty(); }
374
iterator_range<livein_iterator>
liveins
() const {
function in class:llvm::MachineBasicBlock
[
all
...]
MachineRegisterInfo.h
112
std::vector<std::pair<unsigned, unsigned> >
LiveIns
;
721
LiveIns
.push_back(std::make_pair(Reg, vreg));
728
livein_iterator livein_begin() const { return
LiveIns
.begin(); }
729
livein_iterator livein_end() const { return
LiveIns
.end(); }
730
bool livein_empty() const { return
LiveIns
.empty(); }
[
all
...]
Completed in 7738 milliseconds