Files
swift-mirror/lib/IRGen/GenClass.cpp
2012-05-31 00:16:46 +00:00

170 lines
5.7 KiB
C++

//===--- GenClass.cpp - Swift IR Generation For 'class' Types -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file implements IR generation for class types.
//
//===----------------------------------------------------------------------===//
#include "GenClass.h"
#include "swift/AST/Decl.h"
#include "swift/AST/Expr.h"
#include "swift/AST/Types.h"
#include "llvm/DerivedTypes.h"
#include "Explosion.h"
#include "GenType.h"
#include "IRGenFunction.h"
#include "IRGenModule.h"
#include "LValue.h"
#include "GenHeap.h"
#include "HeapTypeInfo.h"
using namespace swift;
using namespace irgen;
namespace {
/// Layout information for class types.
class ClassTypeInfo : public HeapTypeInfo {
HeapLayout Layout;
std::vector<ElementLayout> Elements;
public:
ClassTypeInfo(llvm::PointerType *irType, Size size, Alignment align,
HeapLayout &&layout)
: HeapTypeInfo(irType, size, align), Layout(layout) {
}
const HeapLayout &getLayout() const { return Layout; }
Alignment getHeapAlignment() const {
return Layout.getAlignment();
}
llvm::ArrayRef<ElementLayout> getElements() const {
return Layout.getElements();
}
};
} // end anonymous namespace.
LValue swift::irgen::emitPhysicalClassMemberLValue(IRGenFunction &IGF,
MemberRefExpr *E) {
ClassDecl *CD = cast<ClassDecl>(E->getDecl()->getDeclContext());
ClassType *T = CD->getDeclaredType();
const ClassTypeInfo &info =
TypeConverter::getFragileTypeInfo(IGF.IGM, T).as<ClassTypeInfo>();
Explosion explosion(ExplosionKind::Maximal);
// FIXME: Can we avoid the retain/release here in some cases?
IGF.emitRValue(E->getBase(), explosion);
ManagedValue baseVal = explosion.claimNext();
// FIXME: This field index computation is an ugly hack.
unsigned FieldIndex = 0;
for (Decl *D : CD->getMembers()) {
if (D == E->getDecl())
break;
if (isa<VarDecl>(D) && !cast<VarDecl>(D)->isProperty())
++FieldIndex;
}
Address baseAddr(baseVal.getValue(), info.getHeapAlignment());
const ElementLayout &element = info.getElements()[FieldIndex];
Address memberAddr = element.project(IGF, baseAddr);
return IGF.emitAddressLValue(OwnedAddress(memberAddr, baseVal.getValue()));
}
void swift::irgen::emitNewReferenceExpr(IRGenFunction &IGF,
NewReferenceExpr *E,
Explosion &Out) {
const ClassTypeInfo &info =
IGF.getFragileTypeInfo(E->getType()).as<ClassTypeInfo>();
// Allocate the class using the given layout.
// FIXME: Long-term, we clearly need a specialized runtime entry point.
llvm::Value *val = IGF.emitUnmanagedAlloc(info.getLayout(), "reference.new");
llvm::Type *destType = info.getLayout().getType()->getPointerTo();
llvm::Value *castVal = IGF.Builder.CreateBitCast(val, destType);
Out.add(IGF.enterReleaseCleanup(castVal));
}
/// emitStructType - Emit all the declarations associated with this oneof type.
void IRGenModule::emitClassType(ClassType *ct) {
// FIXME: This is mostly copy-paste from emitExtension;
// figure out how to refactor!
for (Decl *member : ct->getDecl()->getMembers()) {
switch (member->getKind()) {
case DeclKind::Import:
case DeclKind::TopLevelCode:
case DeclKind::Protocol:
case DeclKind::OneOfElement:
case DeclKind::Extension:
llvm_unreachable("decl not allowed in class!");
// We can have meaningful initializers for variables, but
// we can't handle them yet. For the moment, just ignore them.
case DeclKind::PatternBinding:
continue;
case DeclKind::Subscript:
// Getter/setter will be handled separately.
continue;
case DeclKind::TypeAlias:
continue;
case DeclKind::OneOf:
emitOneOfType(cast<OneOfDecl>(member)->getDeclaredType());
continue;
case DeclKind::Struct:
emitStructType(cast<StructDecl>(member)->getDeclaredType());
continue;
case DeclKind::Class:
emitClassType(cast<ClassDecl>(member)->getDeclaredType());
continue;
case DeclKind::Var:
if (cast<VarDecl>(member)->isProperty())
// Getter/setter will be handled separately.
continue;
// FIXME: Will need an implementation here for resilience
continue;
case DeclKind::Func: {
FuncDecl *func = cast<FuncDecl>(member);
if (func->isStatic()) {
// Eventually this won't always be the right thing.
emitStaticMethod(func);
} else {
emitInstanceMethod(func);
}
continue;
}
}
llvm_unreachable("bad extension member kind");
}
}
const TypeInfo *
TypeConverter::convertClassType(IRGenModule &IGM, ClassType *T) {
// Collect all the fields from the type.
SmallVector<const TypeInfo*, 8> fieldTypes;
for (Decl *D : T->getDecl()->getMembers())
if (VarDecl *VD = dyn_cast<VarDecl>(D))
if (!VD->isProperty())
fieldTypes.push_back(&IGM.getFragileTypeInfo(VD->getType()));
HeapLayout layout(IGM, LayoutStrategy::Optimal, fieldTypes,
IGM.createNominalType(T->getDecl()));
llvm::PointerType *irType = layout.getType()->getPointerTo();
return new ClassTypeInfo(irType, IGM.getPointerSize(),
IGM.getPointerAlignment(),
std::move(layout));
}