1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
//===--- HeapTypeInfo.h - Utilities for reference-counted types -*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines some routines that are useful for emitting
// types that are single, reference-counted pointers.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_HEAPTYPEINFO_H
#define SWIFT_IRGEN_HEAPTYPEINFO_H
#include "swift/AST/ASTContext.h"
#include "clang/AST/Attr.h"
#include "llvm/IR/DerivedTypes.h"
#include "ExtraInhabitants.h"
#include "ReferenceTypeInfo.h"
#include "ScalarTypeInfo.h"
#include "SwiftTargetInfo.h"
#include "GenType.h"
namespace swift {
namespace irgen {
/// \group HeapTypeInfo
/// The kind of 'isa' encoding a heap object uses to reference its heap
/// metadata.
enum class IsaEncoding : uint8_t {
/// The object stores a plain pointer to its heap metadata as its first word.
Pointer,
/// The object's isa is managed by the Objective-C runtime and must be
/// accessed with object_getClass. This is a superset of "Pointer" because
/// object_getClass is compatible with pointer isas.
ObjC,
/// The isa encoding is unknown and must be accessed in a maximally-compatible
/// way.
Unknown = ObjC,
};
/// HeapTypeInfo - A type designed for use implementing a type
/// which consists solely of something reference-counted.
///
/// Subclasses should implement the following method, returning true
/// if it's known to be OK to use Swift reference-counting on values
/// of this type:
/// ReferenceCounting getReferenceCounting() const;
template <class Impl>
class HeapTypeInfo
: public SingleScalarTypeInfoWithTypeLayout<Impl, ReferenceTypeInfo> {
using super = SingleScalarTypeInfoWithTypeLayout<Impl, ReferenceTypeInfo>;
llvm::Type *getOptionalIntType() const {
return llvm::IntegerType::get(this->getStorageType()->getContext(),
this->getFixedSize().getValueInBits());
}
protected:
using super::asDerived;
public:
HeapTypeInfo(ReferenceCounting refcounting, llvm::PointerType *storage,
Size size, SpareBitVector spareBits, Alignment align)
: super(swift::irgen::refcountingToScalarKind(refcounting), storage,
size, spareBits, align) {}
bool isSingleRetainablePointer(ResilienceExpansion expansion,
ReferenceCounting *refcounting) const override {
if (refcounting)
*refcounting = asDerived().getReferenceCounting();
return true;
}
bool canValueWitnessExtraInhabitantsUpTo(IRGenModule &IGM,
unsigned index) const override {
// Refcounting functions are no-ops when passed a null pointer, which is the
// first extra inhabitant.
return index == 0;
}
IsaEncoding getIsaEncoding(ResilienceExpansion expansion) const {
switch (asDerived().getReferenceCounting()) {
// We can access the isa of pure Swift heap objects directly.
case ReferenceCounting::Native:
return IsaEncoding::Pointer;
// Use the ObjC runtime to access ObjC or mixed-heritage isas.
case ReferenceCounting::ObjC:
case ReferenceCounting::Block:
return IsaEncoding::ObjC;
case ReferenceCounting::Unknown:
return IsaEncoding::Unknown;
case ReferenceCounting::Error:
llvm_unreachable("errortype doesn't have an isa");
}
}
static const bool IsScalarTriviallyDestroyable = false;
// Emit the copy/destroy operations required by SingleScalarTypeInfo
// using strong reference counting.
virtual void emitScalarRelease(IRGenFunction &IGF, llvm::Value *value,
Atomicity atomicity) const {
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom);
IGF.emitStrongRelease(value, asDerived().getReferenceCounting(), atomicity);
}
void emitScalarFixLifetime(IRGenFunction &IGF, llvm::Value *value) const {
return IGF.emitFixLifetime(value);
}
virtual void emitScalarRetain(IRGenFunction &IGF, llvm::Value *value,
Atomicity atomicity) const {
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom);
IGF.emitStrongRetain(value, asDerived().getReferenceCounting(), atomicity);
}
// Implement the primary retain/release operations of ReferenceTypeInfo
// using basic reference counting.
void strongRetain(IRGenFunction &IGF, Explosion &e,
Atomicity atomicity) const override {
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom);
llvm::Value *value = e.claimNext();
asDerived().emitScalarRetain(IGF, value, atomicity);
}
void strongRelease(IRGenFunction &IGF, Explosion &e,
Atomicity atomicity) const override {
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom);
llvm::Value *value = e.claimNext();
asDerived().emitScalarRelease(IGF, value, atomicity);
}
#define REF_STORAGE_HELPER(Name) \
const TypeInfo * \
create##Name##StorageType(TypeConverter &TC, \
bool isOptional) const override { \
return TC.create##Name##StorageType(this->getStorageType(), \
asDerived().getReferenceCounting(), \
isOptional); \
}
#define NEVER_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
void name##LoadStrong(IRGenFunction &IGF, Address src, \
Explosion &out, bool isOptional) const override { \
llvm::Value *value = IGF.emit##Name##LoadStrong(src, \
this->getStorageType(), \
asDerived().getReferenceCounting()); \
if (isOptional) { \
out.add(IGF.Builder.CreatePtrToInt(value, getOptionalIntType())); \
} else { \
out.add(value); \
} \
} \
void name##TakeStrong(IRGenFunction &IGF, Address src, \
Explosion &out, bool isOptional) const override { \
llvm::Value *value = IGF.emit##Name##TakeStrong(src, \
this->getStorageType(), \
asDerived().getReferenceCounting()); \
if (isOptional) { \
out.add(IGF.Builder.CreatePtrToInt(value, getOptionalIntType())); \
} else { \
out.add(value); \
} \
} \
void name##Init(IRGenFunction &IGF, Explosion &in, \
Address dest, bool isOptional) const override { \
llvm::Value *value = in.claimNext(); \
if (isOptional) { \
assert(value->getType() == getOptionalIntType()); \
value = IGF.Builder.CreateIntToPtr(value, this->getStorageType()); \
} \
IGF.emit##Name##Init(value, dest, asDerived().getReferenceCounting()); \
} \
void name##Assign(IRGenFunction &IGF, Explosion &in, \
Address dest, bool isOptional) const override { \
llvm::Value *value = in.claimNext(); \
if (isOptional) { \
assert(value->getType() == getOptionalIntType()); \
value = IGF.Builder.CreateIntToPtr(value, this->getStorageType()); \
} \
IGF.emit##Name##Assign(value, dest, asDerived().getReferenceCounting()); \
}
#define ALWAYS_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
void strongRetain##Name(IRGenFunction &IGF, Explosion &e, \
Atomicity atomicity) const override { \
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom); \
llvm::Value *value = e.claimNext(); \
assert(asDerived().getReferenceCounting() == ReferenceCounting::Native); \
IGF.emitNativeStrongRetain##Name(value, atomicity); \
} \
void strongRetain##Name##Release(IRGenFunction &IGF, Explosion &e, \
Atomicity atomicity) const override { \
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom); \
llvm::Value *value = e.claimNext(); \
assert(asDerived().getReferenceCounting() == ReferenceCounting::Native); \
IGF.emitNativeStrongRetainAnd##Name##Release(value, atomicity); \
} \
void name##Retain(IRGenFunction &IGF, Explosion &e, Atomicity atomicity) \
const override { \
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom); \
llvm::Value *value = e.claimNext(); \
assert(asDerived().getReferenceCounting() == ReferenceCounting::Native); \
IGF.emitNative##Name##Retain(value, atomicity); \
} \
void name##Release(IRGenFunction &IGF, Explosion &e, Atomicity atomicity) \
const override { \
assert(asDerived().getReferenceCounting() != ReferenceCounting::Custom); \
llvm::Value *value = e.claimNext(); \
assert(asDerived().getReferenceCounting() == ReferenceCounting::Native); \
IGF.emitNative##Name##Release(value, atomicity); \
}
#define NEVER_LOADABLE_CHECKED_REF_STORAGE(Name, name, ...) \
NEVER_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
REF_STORAGE_HELPER(Name)
#define ALWAYS_LOADABLE_CHECKED_REF_STORAGE(Name, name, ...) \
ALWAYS_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
REF_STORAGE_HELPER(Name)
#define SOMETIMES_LOADABLE_CHECKED_REF_STORAGE(Name, name, ...) \
NEVER_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
ALWAYS_LOADABLE_CHECKED_REF_STORAGE_HELPER(Name, name) \
REF_STORAGE_HELPER(Name)
#define UNCHECKED_REF_STORAGE(Name, ...) \
REF_STORAGE_HELPER(Name)
#include "swift/AST/ReferenceStorage.def"
#undef REF_STORAGE_HELPER
#undef NEVER_LOADABLE_CHECKED_REF_STORAGE_HELPER
#undef ALWAYS_LOADABLE_CHECKED_REF_STORAGE_HELPER
LoadedRef loadRefcountedPtr(IRGenFunction &IGF, SourceLoc loc,
Address addr) const override {
auto style = asDerived().getReferenceCounting();
llvm::Value *ptr =
IGF.emitLoadRefcountedPtr(addr, style);
return LoadedRef(ptr, true, style);
}
ReferenceCounting getReferenceCountingType() const override {
return asDerived().getReferenceCounting();
}
// Extra inhabitants of heap object pointers.
bool mayHaveExtraInhabitants(IRGenModule &IGM) const override {
return true;
}
unsigned getFixedExtraInhabitantCount(IRGenModule &IGM) const override {
return getHeapObjectExtraInhabitantCount(IGM);
}
APInt getFixedExtraInhabitantValue(IRGenModule &IGM,
unsigned bits,
unsigned index) const override {
return getHeapObjectFixedExtraInhabitantValue(IGM, bits, index, 0);
}
llvm::Value *getExtraInhabitantIndex(IRGenFunction &IGF, Address src,
SILType T, bool isOutlined)
const override {
return getHeapObjectExtraInhabitantIndex(IGF, src);
}
void storeExtraInhabitant(IRGenFunction &IGF, llvm::Value *index,
Address dest, SILType T, bool isOutlined)
const override {
return storeHeapObjectExtraInhabitant(IGF, index, dest);
}
};
}
}
#endif
|