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 74 JumpTableInfo = 0;
92 if (JumpTableInfo) {
93 JumpTableInfo->~MachineJumpTableInfo();
94 Allocator.Deallocate(JumpTableInfo);
98 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it
102 if (JumpTableInfo) return JumpTableInfo;
104 JumpTableInfo = new (Allocator)
106 return JumpTableInfo;
295 if (JumpTableInfo)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 95 MachineJumpTableInfo *JumpTableInfo;
168 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
169 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
171 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it

Completed in 142 milliseconds