blob: d94f54a846821fe285a67ab869a9f93e8c250fba [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CodeGenModule.h - Per-Module state for LLVM CodeGen --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is the internal per-translation-unit state used for llvm translation.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CODEGEN_CODEGENMODULE_H
15#define CODEGEN_CODEGENMODULE_H
16
17#include "CodeGenTypes.h"
18#include "llvm/ADT/DenseMap.h"
Anders Carlssonc9e20912007-08-21 00:21:21 +000019#include "llvm/ADT/StringMap.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020
21namespace llvm {
22 class Module;
23 class Constant;
24 class Function;
25}
26
27namespace clang {
28 class ASTContext;
29 class FunctionDecl;
30 class Decl;
Steve Naroff8e74c932007-09-13 21:41:19 +000031 class ValueDecl;
Chris Lattner88a69ad2007-07-13 05:13:43 +000032 class FileVarDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +000033
34namespace CodeGen {
35
36/// CodeGenModule - This class organizes the cross-module state that is used
37/// while generating LLVM code.
38class CodeGenModule {
39 ASTContext &Context;
40 llvm::Module &TheModule;
41 CodeGenTypes Types;
42
43 llvm::Function *MemCpyFn;
44 llvm::DenseMap<const Decl*, llvm::Constant*> GlobalDeclMap;
Anders Carlssonc9e20912007-08-21 00:21:21 +000045
46 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
47 llvm::Constant *CFConstantStringClassRef;
Chris Lattnerbef20ac2007-08-31 04:31:45 +000048
49 std::vector<llvm::Function *> BuiltinFunctions;
Reid Spencer5f016e22007-07-11 17:01:13 +000050public:
51 CodeGenModule(ASTContext &C, llvm::Module &M);
52
53 ASTContext &getContext() const { return Context; }
54 llvm::Module &getModule() const { return TheModule; }
55 CodeGenTypes &getTypes() { return Types; }
56
Steve Naroff8e74c932007-09-13 21:41:19 +000057 llvm::Constant *GetAddrOfGlobalDecl(const ValueDecl *D);
Chris Lattnerbef20ac2007-08-31 04:31:45 +000058
59 /// getBuiltinLibFunction - Given a builtin id for a function like
60 /// "__builtin_fabsf", return a Function* for "fabsf".
61 ///
62 llvm::Function *getBuiltinLibFunction(unsigned BuiltinID);
Anders Carlssonc9e20912007-08-21 00:21:21 +000063 llvm::Constant *GetAddrOfConstantCFString(const std::string& str);
Reid Spencer5f016e22007-07-11 17:01:13 +000064 llvm::Function *getMemCpyFn();
65
Chris Lattnerbef20ac2007-08-31 04:31:45 +000066
Chris Lattner88a69ad2007-07-13 05:13:43 +000067 void EmitFunction(const FunctionDecl *FD);
68 void EmitGlobalVar(const FileVarDecl *D);
Chris Lattner32b266c2007-07-14 00:16:50 +000069 void EmitGlobalVarDeclarator(const FileVarDecl *D);
Reid Spencer5f016e22007-07-11 17:01:13 +000070
71 void PrintStats() {}
72};
73} // end namespace CodeGen
74} // end namespace clang
75
76#endif