blob: baf84df82aeb60d165fdd3f652624b59404050e7 [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
Devang Patelb84a06e2007-10-23 02:10:49 +000039 /// RecordLayoutInfo - This class handles struct and union layout info while
40 /// lowering AST types to LLVM types.
41 class RecordLayoutInfo {
42 RecordLayoutInfo(); // DO NOT IMPLEMENT
43 public:
Devang Patel057afdd2007-10-24 20:38:06 +000044 RecordLayoutInfo(llvm::Type *T) : STy(T) {
45 // FIXME : Collect info about fields that requires adjustments
46 // (i.e. fields that do not directly map to llvm struct fields.)
47 }
Devang Patelb84a06e2007-10-23 02:10:49 +000048
49 /// getLLVMType - Return llvm type associated with this record.
Devang Patelc4c429a2007-10-24 00:56:23 +000050 llvm::Type *getLLVMType() const {
Devang Patelb84a06e2007-10-23 02:10:49 +000051 return STy;
52 }
53
54 private:
55 llvm::Type *STy;
56 };
Reid Spencer5f016e22007-07-11 17:01:13 +000057
58/// CodeGenTypes - This class organizes the cross-module state that is used
59/// while lowering AST types to LLVM types.
60class CodeGenTypes {
Chris Lattnerd2d2a112007-07-14 01:29:45 +000061 ASTContext &Context;
Reid Spencer5f016e22007-07-11 17:01:13 +000062 TargetInfo &Target;
Anders Carlsson4e533282007-08-17 22:00:32 +000063 llvm::Module& TheModule;
Anders Carlssonc9e20912007-08-21 00:21:21 +000064
65 llvm::DenseMap<const TagDecl*, llvm::Type*> TagDeclTypes;
Devang Patelb84a06e2007-10-23 02:10:49 +000066
67 /// RecordLayouts - This maps llvm struct type with corresponding
68 /// record layout info.
Devang Patel71bcb092007-10-24 00:32:16 +000069 /// FIXME : If RecordLayoutInfo is less than 16 bytes then use
70 /// inline it in the map.
Devang Patelb84a06e2007-10-23 02:10:49 +000071 llvm::DenseMap<const llvm::Type*, RecordLayoutInfo *> RecordLayouts;
72
73 /// FieldInfo - This maps struct field with corresponding llvm struct type
74 /// field no. This info is populated by record organizer.
75 llvm::DenseMap<const FieldDecl *, unsigned> FieldInfo;
76
Devang Patelb1e39892007-10-23 23:26:46 +000077 /// RecordTypesToResolve - This keeps track of record types that are not
78 /// yet incomplete. One llvm::OpaqueType is associated with each incomplete
79 /// record.
80 llvm::DenseMap<const RecordDecl *, llvm::Type *> RecordTypesToResolve;
81
Reid Spencer5f016e22007-07-11 17:01:13 +000082public:
Anders Carlsson4e533282007-08-17 22:00:32 +000083 CodeGenTypes(ASTContext &Ctx, llvm::Module &M);
Devang Patelb84a06e2007-10-23 02:10:49 +000084 ~CodeGenTypes();
Reid Spencer5f016e22007-07-11 17:01:13 +000085
86 TargetInfo &getTarget() const { return Target; }
87
88 const llvm::Type *ConvertType(QualType T);
89 void DecodeArgumentTypes(const FunctionTypeProto &FTP,
90 std::vector<const llvm::Type*> &ArgTys);
Devang Patelb84a06e2007-10-23 02:10:49 +000091
Devang Patelc4c429a2007-10-24 00:56:23 +000092 const RecordLayoutInfo *getRecordLayoutInfo(const llvm::Type*) const;
Devang Patelb84a06e2007-10-23 02:10:49 +000093
94 /// getLLVMFieldNo - Return llvm::StructType element number
95 /// that corresponds to the field FD.
96 unsigned getLLVMFieldNo(const FieldDecl *FD);
97
98 /// addFieldInfo - Assign field number to field FD.
99 void addFieldInfo(const FieldDecl *FD, unsigned No);
Reid Spencer5f016e22007-07-11 17:01:13 +0000100};
Chris Lattnera7674d82007-07-13 22:13:22 +0000101
Reid Spencer5f016e22007-07-11 17:01:13 +0000102} // end namespace CodeGen
103} // end namespace clang
104
105#endif