HomeSort by relevance Sort by last modified time
    Searched refs:isSSA (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp 147 assert(MRI->isSSA() && "ProcessImplicitDefs only works on SSA form.");
MachineVerifier.cpp 498 if (MRI->isSSA()) {
882 if (!MRI->isSSA() && MO->isUse() &&
    [all...]
LiveVariables.cpp 516 if (!MRI->isSSA())
MachineFunction.cpp 325 OS << (RegInfo->isSSA() ? "SSA" : "Post SSA");
    [all...]
RegAllocFast.cpp     [all...]
TailDuplication.cpp 135 PreRegAlloc = MRI->isSSA();
    [all...]
MachineLICM.cpp 331 PreRegAlloc = MRI->isSSA();
    [all...]
IfConversion.cpp 273 PreRegAlloc = MRI->isSSA();
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 32 /// IsSSA - True when the machine function is in SSA form and virtual
34 bool IsSSA;
123 // isSSA - Returns true when the machine function is in SSA form. Early
130 bool isSSA() const { return IsSSA; }
133 void leaveSSA() { IsSSA = false; }

Completed in 176 milliseconds