mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +00:00
149 lines
3.2 KiB
C++
149 lines
3.2 KiB
C++
|
|
||
|
#include "ssa_short.h"
|
||
|
#include "ssa_float.h"
|
||
|
#include "ssa_int.h"
|
||
|
#include "ssa_scope.h"
|
||
|
#include "r_compiler/llvm_include.h"
|
||
|
|
||
|
SSAShort::SSAShort()
|
||
|
: v(0)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SSAShort::SSAShort(int constant)
|
||
|
: v(0)
|
||
|
{
|
||
|
v = llvm::ConstantInt::get(SSAScope::context(), llvm::APInt(16, constant, true));
|
||
|
}
|
||
|
|
||
|
SSAShort::SSAShort(SSAFloat f)
|
||
|
: v(0)
|
||
|
{
|
||
|
v = SSAScope::builder().CreateFPToSI(f.v, llvm::Type::getInt16Ty(SSAScope::context()), SSAScope::hint());
|
||
|
}
|
||
|
|
||
|
SSAShort::SSAShort(llvm::Value *v)
|
||
|
: v(v)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
llvm::Type *SSAShort::llvm_type()
|
||
|
{
|
||
|
return llvm::Type::getInt16Ty(SSAScope::context());
|
||
|
}
|
||
|
|
||
|
SSAShort operator+(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateAdd(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator-(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateSub(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator*(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateMul(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator/(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateSDiv(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator%(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateSRem(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator+(int a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort(a) + b;
|
||
|
}
|
||
|
|
||
|
SSAShort operator-(int a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort(a) - b;
|
||
|
}
|
||
|
|
||
|
SSAShort operator*(int a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort(a) * b;
|
||
|
}
|
||
|
|
||
|
SSAShort operator/(int a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort(a) / b;
|
||
|
}
|
||
|
|
||
|
SSAShort operator%(int a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort(a) % b;
|
||
|
}
|
||
|
|
||
|
SSAShort operator+(const SSAShort &a, int b)
|
||
|
{
|
||
|
return a + SSAShort(b);
|
||
|
}
|
||
|
|
||
|
SSAShort operator-(const SSAShort &a, int b)
|
||
|
{
|
||
|
return a - SSAShort(b);
|
||
|
}
|
||
|
|
||
|
SSAShort operator*(const SSAShort &a, int b)
|
||
|
{
|
||
|
return a * SSAShort(b);
|
||
|
}
|
||
|
|
||
|
SSAShort operator/(const SSAShort &a, int b)
|
||
|
{
|
||
|
return a / SSAShort(b);
|
||
|
}
|
||
|
|
||
|
SSAShort operator%(const SSAShort &a, int b)
|
||
|
{
|
||
|
return a % SSAShort(b);
|
||
|
}
|
||
|
|
||
|
SSAShort operator<<(const SSAShort &a, int bits)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateShl(a.v, bits, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator>>(const SSAShort &a, int bits)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateLShr(a.v, bits, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator<<(const SSAShort &a, const SSAInt &bits)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateShl(a.v, bits.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator>>(const SSAShort &a, const SSAInt &bits)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateLShr(a.v, bits.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator&(const SSAShort &a, int b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateAnd(a.v, b, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator&(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateAnd(a.v, b.v, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator|(const SSAShort &a, int b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateOr(a.v, b, SSAScope::hint()));
|
||
|
}
|
||
|
|
||
|
SSAShort operator|(const SSAShort &a, const SSAShort &b)
|
||
|
{
|
||
|
return SSAShort::from_llvm(SSAScope::builder().CreateOr(a.v, b.v, SSAScope::hint()));
|
||
|
}
|