OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isSSA
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp
144
assert(MRI->
isSSA
() && "ProcessImplicitDefs only works on SSA form.");
MachineVerifier.cpp
505
if (MRI->
isSSA
()) {
889
if (!MRI->
isSSA
() && MO->isUse() &&
[
all
...]
LiveVariables.cpp
516
if (!MRI->
isSSA
())
MachineFunction.cpp
337
OS << (RegInfo->
isSSA
() ? "SSA" : "Post SSA");
[
all
...]
RegAllocFast.cpp
[
all
...]
TailDuplication.cpp
144
PreRegAlloc = MRI->
isSSA
();
[
all
...]
MachineLICM.cpp
335
PreRegAlloc = MRI->
isSSA
();
[
all
...]
IfConversion.cpp
284
PreRegAlloc = MRI->
isSSA
();
[
all
...]
/external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h
45
///
IsSSA
- True when the machine function is in SSA form and virtual
47
bool
IsSSA
;
153
//
isSSA
- Returns true when the machine function is in SSA form. Early
160
bool
isSSA
() const { return
IsSSA
; }
163
void leaveSSA() {
IsSSA
= false; }
[
all
...]
Completed in 625 milliseconds