blob: de20173d9317e4dae07aa8e22be05ffd341864d2 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include <vector>
19
20namespace llvm {
Anders Carlsson4e533282007-08-17 22:00:32 +000021 class Module;
Reid Spencer5f016e22007-07-11 17:01:13 +000022 class Type;
23}
24
25namespace clang {
Chris Lattnerd2d2a112007-07-14 01:29:45 +000026 class ASTContext;
Anders Carlssonc9e20912007-08-21 00:21:21 +000027 class TagDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +000028 class TargetInfo;
29 class QualType;
30 class FunctionTypeProto;
Devang Patelb1e39892007-10-23 23:26:46 +000031 class FieldDecl;
32 class RecordDecl;
Devang Patelb84a06e2007-10-23 02:10:49 +000033
Reid Spencer5f016e22007-07-11 17:01:13 +000034namespace CodeGen {
Devang Patelb84a06e2007-10-23 02:10:49 +000035 class CodeGenTypes;
36
Devang Patelb84a06e2007-10-23 02:10:49 +000037 /// RecordLayoutInfo - This class handles struct and union layout info while
38 /// lowering AST types to LLVM types.
39 class RecordLayoutInfo {
40 RecordLayoutInfo(); // DO NOT IMPLEMENT
41 public:
Devang Patel057afdd2007-10-24 20:38:06 +000042 RecordLayoutInfo(llvm::Type *T) : STy(T) {
43 // FIXME : Collect info about fields that requires adjustments
44 // (i.e. fields that do not directly map to llvm struct fields.)
45 }
Devang Patelb84a06e2007-10-23 02:10:49 +000046
47 /// getLLVMType - Return llvm type associated with this record.
Devang Patelc4c429a2007-10-24 00:56:23 +000048 llvm::Type *getLLVMType() const {
Devang Patelb84a06e2007-10-23 02:10:49 +000049 return STy;
50 }
51
52 private:
53 llvm::Type *STy;
54 };
Reid Spencer5f016e22007-07-11 17:01:13 +000055
56/// CodeGenTypes - This class organizes the cross-module state that is used
57/// while lowering AST types to LLVM types.
58class CodeGenTypes {
Chris Lattnerd2d2a112007-07-14 01:29:45 +000059 ASTContext &Context;
Reid Spencer5f016e22007-07-11 17:01:13 +000060 TargetInfo &Target;
Anders Carlsson4e533282007-08-17 22:00:32 +000061 llvm::Module& TheModule;
Anders Carlssonc9e20912007-08-21 00:21:21 +000062
63 llvm::DenseMap<const TagDecl*, llvm::Type*> TagDeclTypes;
Devang Patelb84a06e2007-10-23 02:10:49 +000064
65 /// RecordLayouts - This maps llvm struct type with corresponding
66 /// record layout info.
Devang Patel71bcb092007-10-24 00:32:16 +000067 /// FIXME : If RecordLayoutInfo is less than 16 bytes then use
68 /// inline it in the map.
Devang Patelb84a06e2007-10-23 02:10:49 +000069 llvm::DenseMap<const llvm::Type*, RecordLayoutInfo *> RecordLayouts;
70
71 /// FieldInfo - This maps struct field with corresponding llvm struct type
72 /// field no. This info is populated by record organizer.
73 llvm::DenseMap<const FieldDecl *, unsigned> FieldInfo;
74
Devang Patelb1e39892007-10-23 23:26:46 +000075 /// RecordTypesToResolve - This keeps track of record types that are not
76 /// yet incomplete. One llvm::OpaqueType is associated with each incomplete
77 /// record.
78 llvm::DenseMap<const RecordDecl *, llvm::Type *> RecordTypesToResolve;
79
Reid Spencer5f016e22007-07-11 17:01:13 +000080public:
Anders Carlsson4e533282007-08-17 22:00:32 +000081 CodeGenTypes(ASTContext &Ctx, llvm::Module &M);
Devang Patelb84a06e2007-10-23 02:10:49 +000082 ~CodeGenTypes();
Reid Spencer5f016e22007-07-11 17:01:13 +000083
84 TargetInfo &getTarget() const { return Target; }
85
86 const llvm::Type *ConvertType(QualType T);
87 void DecodeArgumentTypes(const FunctionTypeProto &FTP,
88 std::vector<const llvm::Type*> &ArgTys);
Devang Patelb84a06e2007-10-23 02:10:49 +000089
Devang Patelc4c429a2007-10-24 00:56:23 +000090 const RecordLayoutInfo *getRecordLayoutInfo(const llvm::Type*) const;
Devang Patelb84a06e2007-10-23 02:10:49 +000091
92 /// getLLVMFieldNo - Return llvm::StructType element number
93 /// that corresponds to the field FD.
94 unsigned getLLVMFieldNo(const FieldDecl *FD);
95
96 /// addFieldInfo - Assign field number to field FD.
97 void addFieldInfo(const FieldDecl *FD, unsigned No);
Reid Spencer5f016e22007-07-11 17:01:13 +000098};
Chris Lattnera7674d82007-07-13 22:13:22 +000099
Reid Spencer5f016e22007-07-11 17:01:13 +0000100} // end namespace CodeGen
101} // end namespace clang
102
103#endif