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

  /external/llvm/lib/CodeGen/
MachineFunction.cpp 81 JumpTableInfo = 0;
110 if (JumpTableInfo) {
111 JumpTableInfo->~MachineJumpTableInfo();
112 Allocator.Deallocate(JumpTableInfo);
116 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it
120 if (JumpTableInfo) return JumpTableInfo;
122 JumpTableInfo = new (Allocator)
124 return JumpTableInfo;
335 if (JumpTableInfo)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 96 MachineJumpTableInfo *JumpTableInfo;
181 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
182 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
184 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it

Completed in 85 milliseconds