Searched refs:UnwindCode (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Support/
H A DWin64EH.h39 /// UnwindCode - This union describes a single operation in a function prolog,
41 union UnwindCode { union in namespace:llvm::Win64EH
81 UnwindCode UnwindCodes[1];
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp50 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UC) {
96 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) { argument
97 switch (UnwindCode.getUnwindOp()) {
111 return (UnwindCode.getOpInfo() == 0) ? 2 : 3;
175 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) {
250 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes);
251 for (const UnwindCode *UCI = UC.begin(), *UCE = UC.end(); UCI < UCE; ++UCI) {
258 printUnwindCode(UI, ArrayRef<UnwindCode>(UCI, UCE));
H A DWin64EHDumper.h48 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp73 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) { argument
74 switch (UnwindCode.getUnwindOp()) {
88 return (UnwindCode.getOpInfo() == 0) ? 2 : 3;
95 static void printUnwindCode(ArrayRef<UnwindCode> UCs) {
143 static void printAllUnwindCodes(ArrayRef<UnwindCode> UCs) {
144 for (const UnwindCode *I = UCs.begin(), *E = UCs.end(); I < E; ) {
154 printUnwindCode(ArrayRef<UnwindCode>(I, E));
444 printAllUnwindCodes(ArrayRef<UnwindCode>(&UI->UnwindCodes[0], UI->NumCodes));

Completed in 74 milliseconds