aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-07-01 21:16:27 +0000
committerOwen Anderson <resistor@mac.com>2008-07-01 21:16:27 +0000
commit25995093e785f4794b3590f3df70fbfe834a00a1 (patch)
tree29874cdf27f76747f32bd0732854fd53d9b925d0
parent836ba9d7e733b5f445ceec4cdeca13e49dabd5d1 (diff)
Add a version of AsmPrinter::EOL that takes a const char* so that we don't have to do as many implicit std::string constructions.
Unfortunately, this doesn't appear to translate to a real speedup in practice. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52981 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h1
-rw-r--r--lib/CodeGen/AsmPrinter.cpp11
2 files changed, 12 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index e92c8a8df5..fbb0821c21 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -236,6 +236,7 @@ namespace llvm {
/// then it will be printed first. Comments should not contain '\n'.
void EOL() const;
void EOL(const std::string &Comment) const;
+ void EOL(const char* Comment) const;
/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
/// unsigned leb128 value.
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index a682a3f5a8..1320663397 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter.cpp
@@ -551,6 +551,7 @@ void AsmPrinter::PrintHex(int Value) const {
void AsmPrinter::EOL() const {
O << '\n';
}
+
void AsmPrinter::EOL(const std::string &Comment) const {
if (AsmVerbose && !Comment.empty()) {
O << '\t'
@@ -561,6 +562,16 @@ void AsmPrinter::EOL(const std::string &Comment) const {
O << '\n';
}
+void AsmPrinter::EOL(const char* Comment) const {
+ if (AsmVerbose && *Comment) {
+ O << '\t'
+ << TAI->getCommentString()
+ << ' '
+ << Comment;
+ }
+ O << '\n';
+}
+
/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
/// unsigned leb128 value.
void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {