Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dwarfAbbrev.h « dwarf « debugInfo « ObjWriter « Native « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82589c02737b3739bbe0a30c2126182297304be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//===---- dwarfAbbrev.h -----------------------------------------*- C++ -*-===//
//
// dwarf abbreviations
//
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
//===----------------------------------------------------------------------===//

#pragma once

#include "llvm/BinaryFormat/Dwarf.h"
#include "llvm/MC/MCObjectStreamer.h"

using namespace llvm;

namespace DwarfAbbrev {

enum DwarfAbbrev : uint16_t
{
  CompileUnit = 0x1,
  BaseType,
  EnumerationType,
  Enumerator1,
  Enumerator2,
  Enumerator4,
  Enumerator8,
  TypeDef,
  Subprogram,
  SubprogramStatic,
  SubprogramSpec,
  SubprogramStaticSpec,
  Variable,
  VariableLoc,
  VariableStatic,
  FormalParameter,
  FormalParameterThis,
  FormalParameterLoc,
  FormalParameterThisLoc,
  FormalParameterSpec,
  FormalParameterThisSpec,
  ClassType,
  ClassTypeDecl,
  ClassMember,
  ClassMemberStatic,
  PointerType,
  ReferenceType,
  ArrayType,
  SubrangeType,
  ClassInheritance,
  LexicalBlock,
  TryBlock,
  CatchBlock
};

void Dump(MCObjectStreamer *Streamer, uint16_t DwarfVersion, unsigned TargetPointerSize);

}