Home
last modified time | relevance | path

Searched refs:UnwindCode (Results 1 – 3 of 3) sorted by relevance

/external/llvm/tools/llvm-objdump/
DCOFFDump.cpp73 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) { in getNumUsedSlots() argument
74 switch (UnwindCode.getUnwindOp()) { in getNumUsedSlots()
88 return (UnwindCode.getOpInfo() == 0) ? 2 : 3; in getNumUsedSlots()
95 static void printUnwindCode(ArrayRef<UnwindCode> UCs) { in printUnwindCode()
143 static void printAllUnwindCodes(ArrayRef<UnwindCode> UCs) { in printAllUnwindCodes()
144 for (const UnwindCode *I = UCs.begin(), *E = UCs.end(); I < E; ) { in printAllUnwindCodes()
154 printUnwindCode(ArrayRef<UnwindCode>(I, E)); in printAllUnwindCodes()
348 printAllUnwindCodes(ArrayRef<UnwindCode>(&UI->UnwindCodes[0], in printCOFFUnwindInfo()
/external/llvm/include/llvm/Support/
DWin64EH.h41 union UnwindCode { union
81 UnwindCode UnwindCodes[1];
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp77 void printUnwindCode(const Win64EH::UnwindInfo& UI, ArrayRef<UnwindCode> UCs);
159 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) { in getNumUsedSlots() argument
160 switch (UnwindCode.getUnwindOp()) { in getNumUsedSlots()
174 return (UnwindCode.getOpInfo() == 0) ? 2 : 3; in getNumUsedSlots()
462 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UCs) { in getLargeSlotValue()
1026 ArrayRef<UnwindCode> UCs(&UI.UnwindCodes[0], UI.NumCodes); in printUnwindInfo()
1027 for (const UnwindCode *I = UCs.begin(), *E = UCs.end(); I < E; ++I) { in printUnwindInfo()
1033 printUnwindCode(UI, ArrayRef<UnwindCode>(I, E)); in printUnwindInfo()
1060 ArrayRef<UnwindCode> UCs) { in printUnwindCode()