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

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineRegisterInfo.cpp 27 PhysRegUseDefLists = new MachineOperand*[TRI.getNumRegs()];
28 memset(PhysRegUseDefLists, 0, sizeof(MachineOperand*)*TRI.getNumRegs());
37 assert(!PhysRegUseDefLists[i] &&
38 "PhysRegUseDefLists has entries after all instructions are deleted");
40 delete [] PhysRegUseDefLists;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRegisterInfo.h 50 /// PhysRegUseDefLists - This is an array of the head of the use/def list for
52 MachineOperand **PhysRegUseDefLists;
181 return PhysRegUseDefLists[RegNo];
187 return PhysRegUseDefLists[RegNo];
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 73 /// PhysRegUseDefLists - This is an array of the head of the use/def list for
75 std::unique_ptr<MachineOperand *[]> PhysRegUseDefLists;
82 return PhysRegUseDefLists[RegNo];
88 return PhysRegUseDefLists[RegNo];
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 33 PhysRegUseDefLists.reset(new MachineOperand*[NumRegs]());

Completed in 234 milliseconds