aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/MC/AsmStreamerTest.cpp
blob: 815c9b07c47bf09a1012d779fed0b43ddb03f193 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//===- AsmStreamerTest.cpp - Triple unit tests ----------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "gtest/gtest.h"
#include "llvm/MC/MCContext.h"
#include "llvm/MC/MCSection.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCValue.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;

namespace {

// Helper class.
class StringAsmStreamer {
  std::string Str;
  raw_string_ostream OS;
  MCContext Context;
  MCStreamer *Streamer;

public:
  StringAsmStreamer() : OS(Str), Streamer(createAsmStreamer(Context, OS)) {}
  ~StringAsmStreamer() { 
    delete Streamer;
  }

  MCContext &getContext() { return Context; }
  MCStreamer &getStreamer() { return *Streamer; }

  const std::string &getString() {
    Streamer->Finish();
    return Str;
  }
};

TEST(AsmStreamer, EmptyOutput) {
  StringAsmStreamer S;
  EXPECT_EQ("", S.getString());
}

TEST(AsmStreamer, Sections) {
  StringAsmStreamer S;
  MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
  S.getStreamer().SwitchSection(Sec0);
  EXPECT_EQ(".section foo\n", S.getString());
}

TEST(AsmStreamer, Values) {
  StringAsmStreamer S;
  MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
  MCSymbol *A = S.getContext().CreateSymbol("a");
  MCSymbol *B = S.getContext().CreateSymbol("b");
  S.getStreamer().SwitchSection(Sec0);
  S.getStreamer().EmitLabel(A);
  S.getStreamer().EmitLabel(B);
  S.getStreamer().EmitValue(MCValue::get(A, B, 10), 1);
  S.getStreamer().EmitValue(MCValue::get(A, B, 10), 2);
  S.getStreamer().EmitValue(MCValue::get(A, B, 10), 4);
  S.getStreamer().EmitValue(MCValue::get(A, B, 10), 8);
  EXPECT_EQ(".section foo\n\
a:\n\
b:\n\
.byte a - b + 10\n\
.short a - b + 10\n\
.long a - b + 10\n\
.quad a - b + 10\n", S.getString());
}

TEST(AsmStreamer, Align) {
  StringAsmStreamer S;
  MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
  S.getStreamer().SwitchSection(Sec0);
  S.getStreamer().EmitValueToAlignment(4);
  S.getStreamer().EmitValueToAlignment(4, /*Value=*/12, /*ValueSize=*/2);
  S.getStreamer().EmitValueToAlignment(8, /*Value=*/12, /*ValueSize=*/4, 
                                       /*MaxBytesToEmit=*/24);
  EXPECT_EQ(".section foo\n\
.p2align 2, 0\n\
.p2alignw 2, 12\n\
.p2alignl 3, 12, 24\n", S.getString());
}

TEST(AsmStreamer, Org) {
  StringAsmStreamer S;
  MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
  S.getStreamer().SwitchSection(Sec0);
  MCSymbol *A = S.getContext().CreateSymbol("a");
  S.getStreamer().EmitLabel(A);
  S.getStreamer().EmitValueToOffset(MCValue::get(A, 0, 4), 32);
  EXPECT_EQ(".section foo\n\
a:\n\
.org a + 4, 32\n", S.getString());
}

}