blob: f149fb801d1baa112cbe49b0d7f4fba75b23c525 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CodeGenTypes.h - Type translation for LLVM CodeGen -----*- C++ -*-===//
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 code that handles AST -> LLVM type lowering.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CODEGEN_CODEGENTYPES_H
15#define CODEGEN_CODEGENTYPES_H
16
Anders Carlssonc9e20912007-08-21 00:21:21 +000017#include "llvm/ADT/DenseMap.h"
Devang Patelb84a06e2007-10-23 02:10:49 +000018#include "llvm/ADT/SmallVector.h"
Devang Patelb1e39892007-10-23 23:26:46 +000019#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include <vector>
21
22namespace llvm {
Anders Carlsson4e533282007-08-17 22:00:32 +000023 class Module;
Reid Spencer5f016e22007-07-11 17:01:13 +000024 class Type;
25}
26
27namespace clang {
Chris Lattnerd2d2a112007-07-14 01:29:45 +000028 class ASTContext;
Anders Carlssonc9e20912007-08-21 00:21:21 +000029 class TagDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +000030 class TargetInfo;
31 class QualType;
32 class FunctionTypeProto;
Devang Patelb1e39892007-10-23 23:26:46 +000033 class FieldDecl;
34 class RecordDecl;
Devang Patelb84a06e2007-10-23 02:10:49 +000035
Reid Spencer5f016e22007-07-11 17:01:13 +000036namespace CodeGen {
Devang Patelb84a06e2007-10-23 02:10:49 +000037 class CodeGenTypes;
38
39 /// RecordOrganizer - This helper class, used by RecordLayoutInfo, layouts
40 /// structs and unions. It manages transient information used during layout.
41 /// FIXME : At the moment assume
42 /// - one to one mapping between AST FieldDecls and
43 /// llvm::StructType elements.
44 /// - Ignore bit fields
45 /// - Ignore field aligments
46 /// - Ignore packed structs
47 class RecordOrganizer {
48 public:
49 RecordOrganizer() : STy(NULL) {}
50
51 /// addField - Add new field.
52 void addField(const FieldDecl *FD);
53
54 /// layoutFields - Do the actual work and lay out all fields. Create
55 /// corresponding llvm struct type. This should be invoked only after
56 /// all fields are added.
57 void layoutFields(CodeGenTypes &CGT);
58
59 /// getLLVMType - Return associated llvm struct type. This may be NULL
60 /// if fields are not laid out.
61 llvm::Type *getLLVMType() {
62 return STy;
63 }
64
65 private:
66 llvm::Type *STy;
67 llvm::SmallVector<const FieldDecl *, 8> FieldDecls;
68 };
69
70 /// RecordLayoutInfo - This class handles struct and union layout info while
71 /// lowering AST types to LLVM types.
72 class RecordLayoutInfo {
73 RecordLayoutInfo(); // DO NOT IMPLEMENT
74 public:
75 RecordLayoutInfo(RecordOrganizer *RO);
76
77 /// getLLVMType - Return llvm type associated with this record.
78 llvm::Type *getLLVMType() {
79 return STy;
80 }
81
82 private:
83 llvm::Type *STy;
84 };
Reid Spencer5f016e22007-07-11 17:01:13 +000085
86/// CodeGenTypes - This class organizes the cross-module state that is used
87/// while lowering AST types to LLVM types.
88class CodeGenTypes {
Chris Lattnerd2d2a112007-07-14 01:29:45 +000089 ASTContext &Context;
Reid Spencer5f016e22007-07-11 17:01:13 +000090 TargetInfo &Target;
Anders Carlsson4e533282007-08-17 22:00:32 +000091 llvm::Module& TheModule;
Anders Carlssonc9e20912007-08-21 00:21:21 +000092
93 llvm::DenseMap<const TagDecl*, llvm::Type*> TagDeclTypes;
Devang Patelb84a06e2007-10-23 02:10:49 +000094
95 /// RecordLayouts - This maps llvm struct type with corresponding
96 /// record layout info.
97 llvm::DenseMap<const llvm::Type*, RecordLayoutInfo *> RecordLayouts;
98
99 /// FieldInfo - This maps struct field with corresponding llvm struct type
100 /// field no. This info is populated by record organizer.
101 llvm::DenseMap<const FieldDecl *, unsigned> FieldInfo;
102
Devang Patelb1e39892007-10-23 23:26:46 +0000103 /// RecordTypesToResolve - This keeps track of record types that are not
104 /// yet incomplete. One llvm::OpaqueType is associated with each incomplete
105 /// record.
106 llvm::DenseMap<const RecordDecl *, llvm::Type *> RecordTypesToResolve;
107
Reid Spencer5f016e22007-07-11 17:01:13 +0000108public:
Anders Carlsson4e533282007-08-17 22:00:32 +0000109 CodeGenTypes(ASTContext &Ctx, llvm::Module &M);
Devang Patelb84a06e2007-10-23 02:10:49 +0000110 ~CodeGenTypes();
Reid Spencer5f016e22007-07-11 17:01:13 +0000111
112 TargetInfo &getTarget() const { return Target; }
113
114 const llvm::Type *ConvertType(QualType T);
115 void DecodeArgumentTypes(const FunctionTypeProto &FTP,
116 std::vector<const llvm::Type*> &ArgTys);
Devang Patelb84a06e2007-10-23 02:10:49 +0000117
118 RecordLayoutInfo *getRecordLayoutInfo(const llvm::Type*);
119
120 /// getLLVMFieldNo - Return llvm::StructType element number
121 /// that corresponds to the field FD.
122 unsigned getLLVMFieldNo(const FieldDecl *FD);
123
124 /// addFieldInfo - Assign field number to field FD.
125 void addFieldInfo(const FieldDecl *FD, unsigned No);
Reid Spencer5f016e22007-07-11 17:01:13 +0000126};
Chris Lattnera7674d82007-07-13 22:13:22 +0000127
Reid Spencer5f016e22007-07-11 17:01:13 +0000128} // end namespace CodeGen
129} // end namespace clang
130
131#endif