OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isLiveOut
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/CodeGen/
LiveVariables.cpp
732
bool LiveVariables::
isLiveOut
(unsigned Reg, const MachineBasicBlock &MBB) {
PHIElimination.cpp
407
!LV->
isLiveOut
(SrcReg, opBlock)) {
470
bool
isLiveOut
= false;
478
isLiveOut
= true;
483
if (!
isLiveOut
) {
571
// LV doesn't consider a phi use live-out, so
isLiveOut
only returns true
646
return LV->
isLiveOut
(Reg, *MBB);
MachineBasicBlock.cpp
879
bool
isLiveOut
= LI.liveAt(LIS->getMBBStartIdx(Succ));
880
if (
isLiveOut
&& isLastMBB) {
884
} else if (!
isLiveOut
&& !isLastMBB) {
[
all
...]
StrongPHIElimination.cpp
377
bool
isLiveOut
= false;
381
isLiveOut
= true;
386
if (
isLiveOut
)
MachineVerifier.cpp
176
bool
isLiveOut
(unsigned Reg) const {
[
all
...]
Completed in 36 milliseconds