IRgen: Move CGRecordLayout to its own happy little file.

llvm-svn: 99945
This commit is contained in:
Daniel Dunbar 2010-03-30 22:26:10 +00:00
parent f4ffa0dabf
commit 072d0bb247
5 changed files with 52 additions and 30 deletions

View File

@ -14,6 +14,7 @@
#include "CodeGenFunction.h"
#include "CodeGenModule.h"
#include "CGObjCRuntime.h"
#include "CGRecordLayout.h"
#include "clang/AST/APValue.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/RecordLayout.h"

View File

@ -0,0 +1,48 @@
//===--- CGRecordLayout.h - LLVM Record Layout Information ------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef CLANG_CODEGEN_CGRECORDLAYOUT_H
#define CLANG_CODEGEN_CGRECORDLAYOUT_H
namespace clang {
namespace CodeGen {
/// CGRecordLayout - This class handles struct and union layout info while
/// lowering AST types to LLVM types.
class CGRecordLayout {
CGRecordLayout(const CGRecordLayout&); // DO NOT IMPLEMENT
void operator=(const CGRecordLayout&); // DO NOT IMPLEMENT
/// The LLVMType corresponding to this record layout.
const llvm::Type *LLVMType;
/// Whether one of the fields in this record layout is a pointer to data
/// member, or a struct that contains pointer to data member.
bool ContainsPointerToDataMember;
public:
CGRecordLayout(const llvm::Type *T, bool ContainsPointerToDataMember)
: LLVMType(T), ContainsPointerToDataMember(ContainsPointerToDataMember) {}
/// getLLVMType - Return llvm type associated with this record.
const llvm::Type *getLLVMType() const {
return LLVMType;
}
/// containsPointerToDataMember - Whether this struct contains pointers to
/// data members.
bool containsPointerToDataMember() const {
return ContainsPointerToDataMember;
}
};
} // end namespace CodeGen
} // end namespace clang
#endif

View File

@ -12,7 +12,7 @@
//===----------------------------------------------------------------------===//
#include "CGRecordLayoutBuilder.h"
#include "CGRecordLayout.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/Attr.h"
#include "clang/AST/DeclCXX.h"

View File

@ -12,6 +12,7 @@
//===----------------------------------------------------------------------===//
#include "CodeGenTypes.h"
#include "CGRecordLayout.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/DeclObjC.h"
#include "clang/AST/DeclCXX.h"

View File

@ -52,37 +52,9 @@ namespace clang {
typedef CanQual<Type> CanQualType;
namespace CodeGen {
class CGRecordLayout;
class CodeGenTypes;
/// CGRecordLayout - This class handles struct and union layout info while
/// lowering AST types to LLVM types.
class CGRecordLayout {
CGRecordLayout(); // DO NOT IMPLEMENT
/// LLVMType - The LLVMType corresponding to this record layout.
const llvm::Type *LLVMType;
/// ContainsPointerToDataMember - Whether one of the fields in this record
/// layout is a pointer to data member, or a struct that contains pointer to
/// data member.
bool ContainsPointerToDataMember;
public:
CGRecordLayout(const llvm::Type *T, bool ContainsPointerToDataMember)
: LLVMType(T), ContainsPointerToDataMember(ContainsPointerToDataMember) {}
/// getLLVMType - Return llvm type associated with this record.
const llvm::Type *getLLVMType() const {
return LLVMType;
}
/// containsPointerToDataMember - Whether this struct contains pointers to
/// data members.
bool containsPointerToDataMember() const {
return ContainsPointerToDataMember;
}
};
/// CodeGenTypes - This class organizes the cross-module state that is used
/// while lowering AST types to LLVM types.
class CodeGenTypes {