blob: 7ab3afe2e108865af0813ab789616592452663d9 [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.
Devang Patel71bcb092007-10-24 00:32:16 +000097 /// FIXME : If RecordLayoutInfo is less than 16 bytes then use
98 /// inline it in the map.
Devang Patelb84a06e2007-10-23 02:10:49 +000099 llvm::DenseMap<const llvm::Type*, RecordLayoutInfo *> RecordLayouts;
100
101 /// FieldInfo - This maps struct field with corresponding llvm struct type
102 /// field no. This info is populated by record organizer.
103 llvm::DenseMap<const FieldDecl *, unsigned> FieldInfo;
104
Devang Patelb1e39892007-10-23 23:26:46 +0000105 /// RecordTypesToResolve - This keeps track of record types that are not
106 /// yet incomplete. One llvm::OpaqueType is associated with each incomplete
107 /// record.
108 llvm::DenseMap<const RecordDecl *, llvm::Type *> RecordTypesToResolve;
109
Reid Spencer5f016e22007-07-11 17:01:13 +0000110public:
Anders Carlsson4e533282007-08-17 22:00:32 +0000111 CodeGenTypes(ASTContext &Ctx, llvm::Module &M);
Devang Patelb84a06e2007-10-23 02:10:49 +0000112 ~CodeGenTypes();
Reid Spencer5f016e22007-07-11 17:01:13 +0000113
114 TargetInfo &getTarget() const { return Target; }
115
116 const llvm::Type *ConvertType(QualType T);
117 void DecodeArgumentTypes(const FunctionTypeProto &FTP,
118 std::vector<const llvm::Type*> &ArgTys);
Devang Patelb84a06e2007-10-23 02:10:49 +0000119
120 RecordLayoutInfo *getRecordLayoutInfo(const llvm::Type*);
121
122 /// getLLVMFieldNo - Return llvm::StructType element number
123 /// that corresponds to the field FD.
124 unsigned getLLVMFieldNo(const FieldDecl *FD);
125
126 /// addFieldInfo - Assign field number to field FD.
127 void addFieldInfo(const FieldDecl *FD, unsigned No);
Reid Spencer5f016e22007-07-11 17:01:13 +0000128};
Chris Lattnera7674d82007-07-13 22:13:22 +0000129
Reid Spencer5f016e22007-07-11 17:01:13 +0000130} // end namespace CodeGen
131} // end namespace clang
132
133#endif