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

/freebsd-10.2-release/contrib/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];
/freebsd-10.2-release/contrib/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));
390 printAllUnwindCodes(ArrayRef<UnwindCode>(&UI->UnwindCodes[0],
/freebsd-10.2-release/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp77 void printUnwindCode(const Win64EH::UnwindInfo& UI, ArrayRef<UnwindCode> UCs);
159 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) { argument
160 switch (UnwindCode.getUnwindOp()) {
174 return (UnwindCode.getOpInfo() == 0) ? 2 : 3;
462 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UCs) {
1026 ArrayRef<UnwindCode> UCs(&UI.UnwindCodes[0], UI.NumCodes);
1027 for (const UnwindCode *I = UCs.begin(), *E = UCs.end(); I < E; ++I) {
1033 printUnwindCode(UI, ArrayRef<UnwindCode>(I, E));
1060 ArrayRef<UnwindCode> UC
[all...]

Completed in 88 milliseconds