blob: d62ba4704f9e3cdae32ad84905fd272c56670dae [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- TableGenBackend.cpp - Base class for TableGen Backends ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file provides useful services for TableGen backends...
11//
12//===----------------------------------------------------------------------===//
13
14#include "TableGenBackend.h"
15#include "Record.h"
16using namespace llvm;
17
18void TableGenBackend::EmitSourceFileHeader(const std::string &Desc,
19 std::ostream &OS) const {
20 OS << "//===- TableGen'erated file -------------------------------------*-"
21 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate"
22 "d file, do not edit!\n//\n//===------------------------------------"
23 "----------------------------------===//\n\n";
24}
25
26/// getQualifiedName - Return the name of the specified record, with a
27/// namespace qualifier if the record contains one.
28///
29std::string TableGenBackend::getQualifiedName(Record *R) const {
30 std::string Namespace = R->getValueAsString("Namespace");
31 if (Namespace.empty()) return R->getName();
32 return Namespace + "::" + R->getName();
33}
34