From 5f016e2cb5d11daeb237544de1c5d59f20fe1a6e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 11 Jul 2007 17:01:13 +0000 Subject: Stage two of getting CFE top correct. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39734 91177308-0d34-0410-b5e6-96231b3b80d8 --- CodeGen/ModuleBuilder.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 CodeGen/ModuleBuilder.cpp (limited to 'CodeGen/ModuleBuilder.cpp') diff --git a/CodeGen/ModuleBuilder.cpp b/CodeGen/ModuleBuilder.cpp new file mode 100644 index 0000000000..16b13d1c4d --- /dev/null +++ b/CodeGen/ModuleBuilder.cpp @@ -0,0 +1,39 @@ +//===--- ModuleBuilder.cpp - Emit LLVM Code from ASTs ---------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by Chris Lattner and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This builds an AST and converts it to LLVM Code. +// +//===----------------------------------------------------------------------===// + +#include "clang/CodeGen/ModuleBuilder.h" +#include "CodeGenModule.h" +using namespace clang; + + +/// Init - Create an ModuleBuilder with the specified ASTContext. +clang::CodeGen::BuilderTy * +clang::CodeGen::Init(ASTContext &Context, llvm::Module &M) { + return new CodeGenModule(Context, M); +} + +void clang::CodeGen::Terminate(BuilderTy *B) { + delete static_cast(B); +} + +/// CodeGenFunction - Convert the AST node for a FunctionDecl into LLVM. +/// +void clang::CodeGen::CodeGenFunction(BuilderTy *B, FunctionDecl *D) { + static_cast(B)->EmitFunction(D); +} + +/// PrintStats - Emit statistic information to stderr. +/// +void clang::CodeGen::PrintStats(BuilderTy *B) { + static_cast(B)->PrintStats(); +} -- cgit v1.2.3-70-g09d2