mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The goals here are four-fold:
- provide cleaner internal abstractions
- avoid IR bloat from extra bitcasts
- avoid recomputing function-type lowering information
- allow more information to be propagated from the function
access site (e.g. class_method) to the call site
Use this framework immediately for class and protocol methods.
225 lines
9.3 KiB
C++
225 lines
9.3 KiB
C++
//===--- GenObjC.h - Swift IR generation for Objective-C --------*- 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 provides the private interface to Objective-C emission code.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_IRGEN_GENOBJC_H
|
|
#define SWIFT_IRGEN_GENOBJC_H
|
|
|
|
|
|
namespace llvm {
|
|
class Type;
|
|
class Value;
|
|
}
|
|
|
|
namespace swift {
|
|
class CanType;
|
|
class FuncDecl;
|
|
struct SILDeclRef;
|
|
class SILFunction;
|
|
class SILType;
|
|
class Substitution;
|
|
|
|
namespace irgen {
|
|
class Callee;
|
|
class CalleeInfo;
|
|
class ConstantArrayBuilder;
|
|
class IRGenFunction;
|
|
class IRGenModule;
|
|
|
|
/// The kind of message to send through the Objective-C runtime.
|
|
enum class ObjCMessageKind {
|
|
/// A normally-dispatched call.
|
|
Normal,
|
|
/// A call to a superclass method.
|
|
Super,
|
|
/// A call to a peer method.
|
|
Peer
|
|
};
|
|
|
|
/// Represents an ObjC method reference that will be invoked by a form of
|
|
/// objc_msgSend.
|
|
class ObjCMethod {
|
|
/// The SILDeclRef declaring the method.
|
|
SILDeclRef method;
|
|
/// For a bounded call, the static type that provides the lower bound for
|
|
/// the search. Null for unbounded calls that will look for the method in
|
|
/// the dynamic type of the object.
|
|
llvm::PointerIntPair<SILType, 1, bool> searchTypeAndSuper;
|
|
|
|
public:
|
|
ObjCMethod(SILDeclRef method, SILType searchType, bool startAtSuper)
|
|
: method(method), searchTypeAndSuper(searchType, startAtSuper)
|
|
{}
|
|
|
|
SILDeclRef getMethod() const { return method; }
|
|
SILType getSearchType() const { return searchTypeAndSuper.getPointer(); }
|
|
bool shouldStartAtSuper() const { return searchTypeAndSuper.getInt(); }
|
|
|
|
/// FIXME: Thunk down to a Swift function value?
|
|
llvm::Value *getExplosionValue(IRGenFunction &IGF) const {
|
|
llvm_unreachable("thunking unapplied objc method to swift function "
|
|
"not yet implemented");
|
|
}
|
|
|
|
/// Determine the kind of message that should be sent to this
|
|
/// method.
|
|
ObjCMessageKind getMessageKind() const {
|
|
// Determine the kind of message send to perform.
|
|
if (!getSearchType()) return ObjCMessageKind::Normal;
|
|
|
|
return shouldStartAtSuper()? ObjCMessageKind::Super
|
|
: ObjCMessageKind::Peer;
|
|
}
|
|
};
|
|
|
|
/// Prepare a callee for an Objective-C method.
|
|
Callee getObjCMethodCallee(IRGenFunction &IGF, const ObjCMethod &method,
|
|
llvm::Value *selfValue, CalleeInfo &&info);
|
|
|
|
/// Emit a partial application of an Objective-C method to its 'self'
|
|
/// argument.
|
|
void emitObjCPartialApplication(IRGenFunction &IGF,
|
|
ObjCMethod method,
|
|
CanSILFunctionType origType,
|
|
CanSILFunctionType partialAppliedType,
|
|
llvm::Value *self,
|
|
SILType selfType,
|
|
Explosion &out);
|
|
|
|
/// Reclaim an autoreleased return value.
|
|
llvm::Value *emitObjCRetainAutoreleasedReturnValue(IRGenFunction &IGF,
|
|
llvm::Value *value);
|
|
|
|
/// Autorelease a return value.
|
|
llvm::Value *emitObjCAutoreleaseReturnValue(IRGenFunction &IGF,
|
|
llvm::Value *value);
|
|
|
|
/// Build the components of an Objective-C method descriptor for the given
|
|
/// method or constructor implementation.
|
|
void emitObjCMethodDescriptorParts(IRGenModule &IGM,
|
|
AbstractFunctionDecl *method,
|
|
bool extendedEncoding,
|
|
bool concrete,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
/// Build the components of an Objective-C method descriptor for the given
|
|
/// property's method implementations.
|
|
void emitObjCGetterDescriptorParts(IRGenModule &IGM,
|
|
VarDecl *property,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
/// Build the components of an Objective-C method descriptor for the given
|
|
/// subscript's method implementations.
|
|
void emitObjCGetterDescriptorParts(IRGenModule &IGM,
|
|
SubscriptDecl *subscript,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
void emitObjCGetterDescriptorParts(IRGenModule &IGM,
|
|
AbstractStorageDecl *subscript,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
/// Build the components of an Objective-C method descriptor for the given
|
|
/// property's method implementations.
|
|
void emitObjCSetterDescriptorParts(IRGenModule &IGM,
|
|
VarDecl *property,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
/// Build the components of an Objective-C method descriptor for the given
|
|
/// subscript's method implementations.
|
|
void emitObjCSetterDescriptorParts(IRGenModule &IGM,
|
|
SubscriptDecl *subscript,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
void emitObjCSetterDescriptorParts(IRGenModule &IGM,
|
|
AbstractStorageDecl *subscript,
|
|
llvm::Constant *&selectorRef,
|
|
llvm::Constant *&atEncoding,
|
|
llvm::Constant *&impl);
|
|
|
|
/// Build an Objective-C method descriptor for the given method,
|
|
/// constructor, or destructor implementation.
|
|
void emitObjCMethodDescriptor(IRGenModule &IGM,
|
|
ConstantArrayBuilder &descriptors,
|
|
AbstractFunctionDecl *method);
|
|
|
|
/// Build an Objective-C method descriptor for the ivar initializer
|
|
/// or destroyer of a class (-.cxx_construct or -.cxx_destruct).
|
|
void emitObjCIVarInitDestroyDescriptor(IRGenModule &IGM,
|
|
ConstantArrayBuilder &descriptors,
|
|
ClassDecl *cd,
|
|
llvm::Function *impl,
|
|
bool isDestroyer);
|
|
|
|
/// Get the type encoding for an ObjC property.
|
|
void getObjCEncodingForPropertyType(IRGenModule &IGM, VarDecl *property,
|
|
std::string &s);
|
|
|
|
/// Produces extended encoding of ObjC block signature.
|
|
/// \returns the encoded type.
|
|
llvm::Constant *getBlockTypeExtendedEncoding(IRGenModule &IGM,
|
|
CanSILFunctionType invokeTy);
|
|
|
|
/// Produces extended encoding of method type.
|
|
/// \returns the encoded type.
|
|
llvm::Constant *getMethodTypeExtendedEncoding(IRGenModule &IGM,
|
|
AbstractFunctionDecl *method);
|
|
|
|
/// Build an Objective-C method descriptor for the given getter method.
|
|
void emitObjCGetterDescriptor(IRGenModule &IGM,
|
|
ConstantArrayBuilder &descriptors,
|
|
AbstractStorageDecl *storage);
|
|
|
|
/// Build an Objective-C method descriptor for the given setter method.
|
|
void emitObjCSetterDescriptor(IRGenModule &IGM,
|
|
ConstantArrayBuilder &descriptors,
|
|
AbstractStorageDecl *storage);
|
|
|
|
/// True if the FuncDecl requires an ObjC method descriptor.
|
|
bool requiresObjCMethodDescriptor(FuncDecl *method);
|
|
|
|
/// True if the ConstructorDecl requires an ObjC method descriptor.
|
|
bool requiresObjCMethodDescriptor(ConstructorDecl *constructor);
|
|
|
|
/// True if the VarDecl requires ObjC accessor methods and a property
|
|
/// descriptor.
|
|
bool requiresObjCPropertyDescriptor(IRGenModule &IGM,
|
|
VarDecl *property);
|
|
|
|
/// True if the SubscriptDecl requires ObjC accessor methods.
|
|
bool requiresObjCSubscriptDescriptor(IRGenModule &IGM,
|
|
SubscriptDecl *subscript);
|
|
|
|
/// Allocate an Objective-C object.
|
|
llvm::Value *emitObjCAllocObjectCall(IRGenFunction &IGF,
|
|
llvm::Value *classPtr,
|
|
SILType resultType);
|
|
|
|
} // end namespace irgen
|
|
} // end namespace swift
|
|
|
|
#endif
|