mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 09:00:33 +03:00
44 lines
1.6 KiB
C++
44 lines
1.6 KiB
C++
//===-- gen/cl_helpers.h - Complex number code generation -------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Functions for generating code for D complex number operations.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_GEN_COMPLEX_H
|
||
#define LDC_GEN_COMPLEX_H
|
||
|
||
llvm::StructType* DtoComplexType(Type* t);
|
||
LLType* DtoComplexBaseType(Type* t);
|
||
|
||
LLConstant* DtoConstComplex(Type* t, longdouble re, longdouble im);
|
||
|
||
LLConstant* DtoComplexShuffleMask(unsigned a, unsigned b);
|
||
|
||
LLValue* DtoRealPart(DValue* val);
|
||
LLValue* DtoImagPart(DValue* val);
|
||
DValue* DtoComplex(Loc& loc, Type* to, DValue* val);
|
||
|
||
void DtoComplexSet(LLValue* c, LLValue* re, LLValue* im);
|
||
|
||
void DtoGetComplexParts(Loc& loc, Type* to, DValue* c, DValue*& re, DValue*& im);
|
||
void DtoGetComplexParts(Loc& loc, Type* to, DValue* c, LLValue*& re, LLValue*& im);
|
||
|
||
DValue* DtoComplexAdd(Loc& loc, Type* type, DValue* lhs, DValue* rhs);
|
||
DValue* DtoComplexSub(Loc& loc, Type* type, DValue* lhs, DValue* rhs);
|
||
DValue* DtoComplexMul(Loc& loc, Type* type, DValue* lhs, DValue* rhs);
|
||
DValue* DtoComplexDiv(Loc& loc, Type* type, DValue* lhs, DValue* rhs);
|
||
DValue* DtoComplexRem(Loc& loc, Type* type, DValue* lhs, DValue* rhs);
|
||
DValue* DtoComplexNeg(Loc& loc, Type* type, DValue* val);
|
||
|
||
LLValue* DtoComplexEquals(Loc& loc, TOK op, DValue* lhs, DValue* rhs);
|
||
|
||
DValue* DtoCastComplex(Loc& loc, DValue* val, Type* to);
|
||
|
||
#endif // LDC_GEN_COMPLEX_H
|