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 82 JumpTableInfo = nullptr;
111 if (JumpTableInfo) {
112 JumpTableInfo->~MachineJumpTableInfo();
113 Allocator.Deallocate(JumpTableInfo);
117 /// getOrCreateJumpTableInfo - Get the JumpTableInfo for this function, if it
121 if (JumpTableInfo) return JumpTableInfo;
123 JumpTableInfo = new (Allocator)
125 return JumpTableInfo;
347 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 1217 milliseconds