mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-10-30 00:16:48 +00:00
shortly to provide nicely printed comments and other goodies in asm files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75156 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
//===-- llvm/CodeGen/AsmStream.cpp - AsmStream Framework --------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains instantiations of "standard" AsmOStreams.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CodeGen/AsmStream.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
namespace llvm {
|
|
AsmStreambuf asmoutbuf(STDOUT_FILENO);
|
|
AsmStreambuf asmerrbuf(STDERR_FILENO);
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// raw_asm_ostream
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
raw_asm_ostream::~raw_asm_ostream() {
|
|
flush();
|
|
}
|
|
|
|
/// flush_impl - The is the piece of the class that is implemented by
|
|
/// subclasses. This outputs the currently buffered data and resets the
|
|
/// buffer to empty.
|
|
void raw_asm_ostream::flush_impl() {
|
|
if (OutBufCur-OutBufStart)
|
|
OS.write(OutBufStart, OutBufCur-OutBufStart);
|
|
|
|
HandleFlush();
|
|
}
|
|
|
|
namespace {
|
|
AsmOStream AsmOut(&asmoutbuf);
|
|
AsmOStream AsmErr(&asmerrbuf);
|
|
}
|
|
|
|
raw_asm_ostream asmout(AsmOut);
|
|
raw_asm_ostream asmerr(AsmErr);
|
|
}
|