2016-11-01 20:44:33 +00:00
|
|
|
/*
|
|
|
|
** SSA vec4 float
|
|
|
|
** Copyright (c) 2016 Magnus Norddahl
|
|
|
|
**
|
|
|
|
** This software is provided 'as-is', without any express or implied
|
|
|
|
** warranty. In no event will the authors be held liable for any damages
|
|
|
|
** arising from the use of this software.
|
|
|
|
**
|
|
|
|
** Permission is granted to anyone to use this software for any purpose,
|
|
|
|
** including commercial applications, and to alter it and redistribute it
|
|
|
|
** freely, subject to the following restrictions:
|
|
|
|
**
|
|
|
|
** 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
** claim that you wrote the original software. If you use this software
|
|
|
|
** in a product, an acknowledgment in the product documentation would be
|
|
|
|
** appreciated but is not required.
|
|
|
|
** 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
** misrepresented as being the original software.
|
|
|
|
** 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
**
|
|
|
|
*/
|
2016-09-26 07:00:19 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace llvm { class Value; }
|
|
|
|
namespace llvm { class Type; }
|
|
|
|
|
|
|
|
class SSAVec4i;
|
|
|
|
class SSAFloat;
|
|
|
|
class SSAInt;
|
|
|
|
|
|
|
|
class SSAVec4f
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SSAVec4f();
|
2016-10-01 09:47:21 +00:00
|
|
|
explicit SSAVec4f(float constant);
|
|
|
|
explicit SSAVec4f(float constant0, float constant1, float constant2, float constant3);
|
2016-09-26 07:00:19 +00:00
|
|
|
SSAVec4f(SSAFloat f);
|
|
|
|
SSAVec4f(SSAFloat f0, SSAFloat f1, SSAFloat f2, SSAFloat f3);
|
|
|
|
explicit SSAVec4f(llvm::Value *v);
|
|
|
|
SSAVec4f(SSAVec4i i32);
|
|
|
|
SSAFloat operator[](SSAInt index) const;
|
2016-10-01 09:47:21 +00:00
|
|
|
SSAFloat operator[](int index) const;
|
2016-09-26 07:00:19 +00:00
|
|
|
static SSAVec4f insert_element(SSAVec4f vec4f, SSAFloat value, int index);
|
|
|
|
static SSAVec4f bitcast(SSAVec4i i32);
|
|
|
|
static SSAVec4f sqrt(SSAVec4f f);
|
|
|
|
static SSAVec4f rcp(SSAVec4f f);
|
|
|
|
static SSAVec4f sin(SSAVec4f val);
|
|
|
|
static SSAVec4f cos(SSAVec4f val);
|
|
|
|
static SSAVec4f pow(SSAVec4f val, SSAVec4f power);
|
|
|
|
static SSAVec4f exp(SSAVec4f val);
|
|
|
|
static SSAVec4f log(SSAVec4f val);
|
|
|
|
static SSAVec4f fma(SSAVec4f a, SSAVec4f b, SSAVec4f c);
|
|
|
|
static void transpose(SSAVec4f &row0, SSAVec4f &row1, SSAVec4f &row2, SSAVec4f &row3);
|
|
|
|
static SSAVec4f shuffle(const SSAVec4f &f0, int index0, int index1, int index2, int index3);
|
|
|
|
static SSAVec4f shuffle(const SSAVec4f &f0, const SSAVec4f &f1, int index0, int index1, int index2, int index3);
|
|
|
|
static SSAVec4f from_llvm(llvm::Value *v) { return SSAVec4f(v); }
|
|
|
|
static llvm::Type *llvm_type();
|
|
|
|
|
|
|
|
llvm::Value *v;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static SSAVec4f shuffle(const SSAVec4f &f0, const SSAVec4f &f1, int mask);
|
|
|
|
};
|
|
|
|
|
|
|
|
SSAVec4f operator+(const SSAVec4f &a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator-(const SSAVec4f &a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator*(const SSAVec4f &a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator/(const SSAVec4f &a, const SSAVec4f &b);
|
|
|
|
|
|
|
|
SSAVec4f operator+(float a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator-(float a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator*(float a, const SSAVec4f &b);
|
|
|
|
SSAVec4f operator/(float a, const SSAVec4f &b);
|
|
|
|
|
|
|
|
SSAVec4f operator+(const SSAVec4f &a, float b);
|
|
|
|
SSAVec4f operator-(const SSAVec4f &a, float b);
|
|
|
|
SSAVec4f operator*(const SSAVec4f &a, float b);
|
|
|
|
SSAVec4f operator/(const SSAVec4f &a, float b);
|