mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
59 lines
1.1 KiB
C++
59 lines
1.1 KiB
C++
//===-- ir/irtypefunction.h - IrType subclasses for callables ---*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Provides the IrType subclasses used to represent D function/delegate types.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef __LDC_IR_IRTYPEFUNCTION_H__
|
||
#define __LDC_IR_IRTYPEFUNCTION_H__
|
||
|
||
#include "ir/irtype.h"
|
||
|
||
struct IrFuncTy;
|
||
|
||
///
|
||
class IrTypeFunction : public IrType
|
||
{
|
||
public:
|
||
///
|
||
IrTypeFunction(Type* dt);
|
||
|
||
///
|
||
IrTypeFunction* isFunction() { return this; }
|
||
|
||
///
|
||
llvm::Type* buildType();
|
||
|
||
IrFuncTy* fty() { return irfty; }
|
||
|
||
protected:
|
||
llvm::Type* func2llvm(Type* dt);
|
||
///
|
||
IrFuncTy* irfty;
|
||
};
|
||
|
||
///
|
||
class IrTypeDelegate : public IrType
|
||
{
|
||
public:
|
||
///
|
||
IrTypeDelegate(Type* dt);
|
||
|
||
///
|
||
IrTypeDelegate* isDelegate() { return this; }
|
||
|
||
///
|
||
llvm::Type* buildType();
|
||
protected:
|
||
llvm::Type* delegate2llvm(Type* dt);
|
||
};
|
||
|
||
#endif
|