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

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRegisterInfo.h 30 /// IsSSA - True when the machine function is in SSA form and virtual
32 bool IsSSA;
79 // isSSA - Returns true when the machine function is in SSA form. Early
86 bool isSSA() const { return IsSSA; }
89 void leaveSSA() { IsSSA = false; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 312 static bool isSSA(const MachineFunction &MF) {
339 if (isSSA(MF))
340 Properties.set(MachineFunctionProperties::Property::IsSSA);
342 Properties.reset(MachineFunctionProperties::Property::IsSSA);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 155 // isSSA - Returns true when the machine function is in SSA form. Early
162 bool isSSA() const {
164 MachineFunctionProperties::Property::IsSSA);
169 MF->getProperties().clear(MachineFunctionProperties::Property::IsSSA);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 179 // isSSA - Returns true when the machine function is in SSA form. Early
186 bool isSSA() const {
188 MachineFunctionProperties::Property::IsSSA);
193 MF->getProperties().reset(MachineFunctionProperties::Property::IsSSA);
    [all...]

Completed in 267 milliseconds