mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-03 09:22:53 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace llvm { class Value; }
|
||
|
namespace llvm { class Type; }
|
||
|
|
||
|
class SSAFloat;
|
||
|
|
||
|
class SSAInt
|
||
|
{
|
||
|
public:
|
||
|
SSAInt();
|
||
|
SSAInt(int constant);
|
||
|
SSAInt(SSAFloat f);
|
||
|
explicit SSAInt(llvm::Value *v);
|
||
|
static SSAInt from_llvm(llvm::Value *v) { return SSAInt(v); }
|
||
|
static llvm::Type *llvm_type();
|
||
|
|
||
|
llvm::Value *v;
|
||
|
};
|
||
|
|
||
|
SSAInt operator+(const SSAInt &a, const SSAInt &b);
|
||
|
SSAInt operator-(const SSAInt &a, const SSAInt &b);
|
||
|
SSAInt operator*(const SSAInt &a, const SSAInt &b);
|
||
|
SSAInt operator/(const SSAInt &a, const SSAInt &b);
|
||
|
SSAInt operator%(const SSAInt &a, const SSAInt &b);
|
||
|
|
||
|
SSAInt operator+(int a, const SSAInt &b);
|
||
|
SSAInt operator-(int a, const SSAInt &b);
|
||
|
SSAInt operator*(int a, const SSAInt &b);
|
||
|
SSAInt operator/(int a, const SSAInt &b);
|
||
|
SSAInt operator%(int a, const SSAInt &b);
|
||
|
|
||
|
SSAInt operator+(const SSAInt &a, int b);
|
||
|
SSAInt operator-(const SSAInt &a, int b);
|
||
|
SSAInt operator*(const SSAInt &a, int b);
|
||
|
SSAInt operator/(const SSAInt &a, int b);
|
||
|
SSAInt operator%(const SSAInt &a, int b);
|
||
|
|
||
|
SSAInt operator<<(const SSAInt &a, int bits);
|
||
|
SSAInt operator>>(const SSAInt &a, int bits);
|