OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LiveOuts
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/R600/
R600MachineFunctionInfo.h
26
SmallVector<unsigned, 4>
LiveOuts
;
R600ISelLowering.cpp
467
for (unsigned i = 0, e = MFI->
LiveOuts
.size(); i != e; ++i)
468
MIB.addReg(MFI->
LiveOuts
[i], RegState::Implicit);
502
MFI->
LiveOuts
.push_back(Reg);
[
all
...]
/external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp
137
LiveOutMap
LiveOuts
;
373
LiveOutMap::const_iterator fi =
LiveOuts
.find(*pi);
374
if (fi ==
LiveOuts
.end()) {
415
// Also use
LiveOuts
as a visited set to detect back-edges.
416
bool First =
LiveOuts
.insert(std::make_pair(MBB, LiveRegs)).second;
419
// LiveRegs was inserted in
LiveOuts
. Adjust all defs to be relative to
704
// Clear the
LiveOuts
vectors and collapse any remaining DomainValues.
707
LiveOutMap::const_iterator FI =
LiveOuts
.find(*MBBI);
708
if (FI ==
LiveOuts
.end() || !FI->second)
715
LiveOuts
.clear()
[
all
...]
LiveVariables.cpp
623
SmallSet<unsigned, 4>
LiveOuts
;
634
LiveOuts
.insert(LReg);
641
if ((PhysRegDef[i] || PhysRegUse[i]) && !
LiveOuts
.count(i))
Completed in 35 milliseconds