HomeSort by relevance Sort by last modified time
    Searched refs:UnwindCode (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Support/
Win64EH.h 39 /// UnwindCode - This union describes a single operation in a function prolog,
41 union UnwindCode {
81 UnwindCode UnwindCodes[1];
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 50 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UC) {
96 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) {
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));
Win64EHDumper.h 48 void printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC);
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 73 static unsigned getNumUsedSlots(const UnwindCode &UnwindCode) {
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 104 milliseconds