2012-06-13 13:15:49 +08:00
|
|
|
//===- TableGenBackend.cpp - Utilities for TableGen Backends ----*- C++ -*-===//
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:37:13 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 08:00:37 +08:00
|
|
|
//
|
2003-10-21 04:20:30 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-06 03:27:59 +08:00
|
|
|
//
|
|
|
|
// This file provides useful services for TableGen backends...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-06-20 01:04:16 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2012-06-13 13:15:49 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-10-02 00:41:13 +08:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2004-08-01 11:55:39 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2012-06-20 01:04:16 +08:00
|
|
|
static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
|
|
|
|
StringRef Suffix) {
|
|
|
|
uint64_t Pos = OS.tell();
|
|
|
|
OS << Prefix;
|
|
|
|
for (unsigned i = OS.tell() - Pos, e = 80 - Suffix.size(); i != e; ++i)
|
|
|
|
OS << Fill;
|
|
|
|
OS << Suffix << '\n';
|
|
|
|
}
|
|
|
|
|
2012-06-11 23:37:55 +08:00
|
|
|
void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) {
|
2012-06-20 01:04:16 +08:00
|
|
|
printLine(OS, "/*===- TableGen'erated file ", '-', "*- C++ -*-===*\\");
|
|
|
|
printLine(OS, "|*", ' ', "*|");
|
|
|
|
printLine(OS, "|* " + Desc, ' ', "*|");
|
|
|
|
printLine(OS, "|*", ' ', "*|");
|
|
|
|
printLine(OS, "|* Automatically generated file, do not edit!", ' ', "*|");
|
|
|
|
printLine(OS, "|*", ' ', "*|");
|
|
|
|
printLine(OS, "\\*===", '-', "===*/");
|
|
|
|
OS << '\n';
|
2003-10-06 03:27:59 +08:00
|
|
|
}
|