mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-30 00:38:54 -04:00

*** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
119 lines
3.4 KiB
C++
119 lines
3.4 KiB
C++
//===-- ConvertEnum.cpp -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "lldb/Utility/ConvertEnum.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
const char *lldb_private::GetVoteAsCString(Vote vote) {
|
|
switch (vote) {
|
|
case eVoteNo:
|
|
return "no";
|
|
case eVoteNoOpinion:
|
|
return "no opinion";
|
|
case eVoteYes:
|
|
return "yes";
|
|
}
|
|
return "invalid";
|
|
}
|
|
|
|
const char *lldb_private::GetSectionTypeAsCString(lldb::SectionType sect_type) {
|
|
switch (sect_type) {
|
|
case eSectionTypeInvalid:
|
|
return "invalid";
|
|
case eSectionTypeCode:
|
|
return "code";
|
|
case eSectionTypeContainer:
|
|
return "container";
|
|
case eSectionTypeData:
|
|
return "data";
|
|
case eSectionTypeDataCString:
|
|
return "data-cstr";
|
|
case eSectionTypeDataCStringPointers:
|
|
return "data-cstr-ptr";
|
|
case eSectionTypeDataSymbolAddress:
|
|
return "data-symbol-addr";
|
|
case eSectionTypeData4:
|
|
return "data-4-byte";
|
|
case eSectionTypeData8:
|
|
return "data-8-byte";
|
|
case eSectionTypeData16:
|
|
return "data-16-byte";
|
|
case eSectionTypeDataPointers:
|
|
return "data-ptrs";
|
|
case eSectionTypeDebug:
|
|
return "debug";
|
|
case eSectionTypeZeroFill:
|
|
return "zero-fill";
|
|
case eSectionTypeDataObjCMessageRefs:
|
|
return "objc-message-refs";
|
|
case eSectionTypeDataObjCCFStrings:
|
|
return "objc-cfstrings";
|
|
case eSectionTypeDWARFDebugAbbrev:
|
|
return "dwarf-abbrev";
|
|
case eSectionTypeDWARFDebugAddr:
|
|
return "dwarf-addr";
|
|
case eSectionTypeDWARFDebugAranges:
|
|
return "dwarf-aranges";
|
|
case eSectionTypeDWARFDebugFrame:
|
|
return "dwarf-frame";
|
|
case eSectionTypeDWARFDebugInfo:
|
|
return "dwarf-info";
|
|
case eSectionTypeDWARFDebugLine:
|
|
return "dwarf-line";
|
|
case eSectionTypeDWARFDebugLoc:
|
|
return "dwarf-loc";
|
|
case eSectionTypeDWARFDebugMacInfo:
|
|
return "dwarf-macinfo";
|
|
case eSectionTypeDWARFDebugMacro:
|
|
return "dwarf-macro";
|
|
case eSectionTypeDWARFDebugPubNames:
|
|
return "dwarf-pubnames";
|
|
case eSectionTypeDWARFDebugPubTypes:
|
|
return "dwarf-pubtypes";
|
|
case eSectionTypeDWARFDebugRanges:
|
|
return "dwarf-ranges";
|
|
case eSectionTypeDWARFDebugStr:
|
|
return "dwarf-str";
|
|
case eSectionTypeDWARFDebugStrOffsets:
|
|
return "dwarf-str-offsets";
|
|
case eSectionTypeELFSymbolTable:
|
|
return "elf-symbol-table";
|
|
case eSectionTypeELFDynamicSymbols:
|
|
return "elf-dynamic-symbols";
|
|
case eSectionTypeELFRelocationEntries:
|
|
return "elf-relocation-entries";
|
|
case eSectionTypeELFDynamicLinkInfo:
|
|
return "elf-dynamic-link-info";
|
|
case eSectionTypeDWARFAppleNames:
|
|
return "apple-names";
|
|
case eSectionTypeDWARFAppleTypes:
|
|
return "apple-types";
|
|
case eSectionTypeDWARFAppleNamespaces:
|
|
return "apple-namespaces";
|
|
case eSectionTypeDWARFAppleObjC:
|
|
return "apple-objc";
|
|
case eSectionTypeEHFrame:
|
|
return "eh-frame";
|
|
case eSectionTypeARMexidx:
|
|
return "ARM.exidx";
|
|
case eSectionTypeARMextab:
|
|
return "ARM.extab";
|
|
case eSectionTypeCompactUnwind:
|
|
return "compact-unwind";
|
|
case eSectionTypeGoSymtab:
|
|
return "go-symtab";
|
|
case eSectionTypeAbsoluteAddress:
|
|
return "absolute";
|
|
case eSectionTypeOther:
|
|
return "regular";
|
|
}
|
|
return "unknown";
|
|
}
|