blob: 2b0cf062ec875ddeecf55a270887a4a5d937ba3e [file] [log] [blame]
Daniel Dunbar2538f7a2009-07-24 07:04:27 +00001//===-- Twine.cpp - Fast Temporary String Concatenation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/ADT/Twine.h"
11#include "llvm/Support/raw_ostream.h"
12using namespace llvm;
13
14std::string Twine::str() const {
15 std::string Res;
16 raw_string_ostream OS(Res);
17 print(OS);
18 return Res;
19}
20
21void Twine::toVector(SmallVectorImpl<char> &Out) const {
Daniel Dunbar763457e2009-07-29 07:08:44 +000022 // FIXME: This is very inefficient, since we are creating a large raw_ostream
23 // buffer -- hitting malloc, which we were supposed to avoid -- all when we
24 // have this pretty little small vector available.
25 //
26 // The best way to fix this is to make raw_svector_ostream do the right thing
27 // and be efficient, by augmenting the base raw_ostream with the ability to
28 // have the buffer managed by a concrete implementation.
Daniel Dunbar2538f7a2009-07-24 07:04:27 +000029 raw_svector_ostream OS(Out);
30 print(OS);
31}
32
33void Twine::printOneChild(raw_ostream &OS, const void *Ptr,
34 NodeKind Kind) const {
35 switch (Kind) {
36 case Twine::NullKind: break;
37 case Twine::EmptyKind: break;
Daniel Dunbar763457e2009-07-29 07:08:44 +000038 case Twine::TwineKind:
39 static_cast<const Twine*>(Ptr)->print(OS);
40 break;
Daniel Dunbar2538f7a2009-07-24 07:04:27 +000041 case Twine::CStringKind:
42 OS << static_cast<const char*>(Ptr);
43 break;
44 case Twine::StdStringKind:
45 OS << *static_cast<const std::string*>(Ptr);
46 break;
47 case Twine::StringRefKind:
48 OS << *static_cast<const StringRef*>(Ptr);
49 break;
Daniel Dunbar0165a2c2009-07-30 03:47:15 +000050 case Twine::UDec32Kind:
51 OS << *static_cast<const uint32_t*>(Ptr);
52 break;
53 case Twine::SDec32Kind:
54 OS << *static_cast<const int32_t*>(Ptr);
55 break;
56 case Twine::UDec64Kind:
Daniel Dunbar763457e2009-07-29 07:08:44 +000057 OS << *static_cast<const uint64_t*>(Ptr);
58 break;
Daniel Dunbar0165a2c2009-07-30 03:47:15 +000059 case Twine::SDec64Kind:
Daniel Dunbar763457e2009-07-29 07:08:44 +000060 OS << *static_cast<const int64_t*>(Ptr);
61 break;
62 case Twine::UHexKind:
63 // FIXME: Add raw_ostream functionality for this.
64 OS << ::utohexstr(*static_cast<const uint64_t*>(Ptr));
Daniel Dunbar2538f7a2009-07-24 07:04:27 +000065 break;
66 }
67}
68
69void Twine::printOneChildRepr(raw_ostream &OS, const void *Ptr,
70 NodeKind Kind) const {
71 switch (Kind) {
72 case Twine::NullKind:
73 OS << "null"; break;
74 case Twine::EmptyKind:
75 OS << "empty"; break;
Daniel Dunbar2538f7a2009-07-24 07:04:27 +000076 case Twine::TwineKind:
77 OS << "rope:";
78 static_cast<const Twine*>(Ptr)->printRepr(OS);
79 break;
Daniel Dunbar763457e2009-07-29 07:08:44 +000080 case Twine::CStringKind:
81 OS << "cstring:\""
82 << static_cast<const char*>(Ptr) << "\"";
83 break;
84 case Twine::StdStringKind:
85 OS << "std::string:\""
86 << static_cast<const std::string*>(Ptr) << "\"";
87 break;
88 case Twine::StringRefKind:
89 OS << "stringref:\""
90 << static_cast<const StringRef*>(Ptr) << "\"";
91 break;
Daniel Dunbar0165a2c2009-07-30 03:47:15 +000092 case Twine::UDec32Kind:
93 OS << "udec32:" << static_cast<const uint64_t*>(Ptr) << "\"";
Daniel Dunbar763457e2009-07-29 07:08:44 +000094 break;
Daniel Dunbar0165a2c2009-07-30 03:47:15 +000095 case Twine::SDec32Kind:
96 OS << "sdec32:" << static_cast<const int64_t*>(Ptr) << "\"";
97 break;
98 case Twine::UDec64Kind:
99 OS << "udec64:" << static_cast<const uint64_t*>(Ptr) << "\"";
100 break;
101 case Twine::SDec64Kind:
102 OS << "sdec64:" << static_cast<const int64_t*>(Ptr) << "\"";
Daniel Dunbar763457e2009-07-29 07:08:44 +0000103 break;
104 case Twine::UHexKind:
105 OS << "uhex:" << static_cast<const uint64_t*>(Ptr) << "\"";
106 break;
Daniel Dunbar2538f7a2009-07-24 07:04:27 +0000107 }
108}
109
110void Twine::print(raw_ostream &OS) const {
111 printOneChild(OS, LHS, getLHSKind());
112 printOneChild(OS, RHS, getRHSKind());
113}
114
115void Twine::printRepr(raw_ostream &OS) const {
116 OS << "(Twine ";
117 printOneChildRepr(OS, LHS, getLHSKind());
118 OS << " ";
119 printOneChildRepr(OS, RHS, getRHSKind());
120 OS << ")";
121}
122
123void Twine::dump() const {
124 print(llvm::errs());
125}
126
127void Twine::dumpRepr() const {
128 printRepr(llvm::errs());
129}