| /*------------------------------------------------------------------------- |
| * drawElements Quality Program OpenGL (ES) Module |
| * ----------------------------------------------- |
| * |
| * Copyright 2014 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| * |
| *//*! |
| * \file |
| * \brief Precision and range tests for GLSL builtins and types. |
| * |
| *//*--------------------------------------------------------------------*/ |
| |
| #include "glsBuiltinPrecisionTests.hpp" |
| |
| #include "deMath.h" |
| #include "deMemory.h" |
| #include "deDefs.hpp" |
| #include "deRandom.hpp" |
| #include "deSTLUtil.hpp" |
| #include "deStringUtil.hpp" |
| #include "deUniquePtr.hpp" |
| #include "deSharedPtr.hpp" |
| #include "deArrayUtil.hpp" |
| |
| #include "tcuCommandLine.hpp" |
| #include "tcuFloatFormat.hpp" |
| #include "tcuInterval.hpp" |
| #include "tcuTestCase.hpp" |
| #include "tcuTestLog.hpp" |
| #include "tcuVector.hpp" |
| #include "tcuMatrix.hpp" |
| #include "tcuResultCollector.hpp" |
| |
| #include "gluContextInfo.hpp" |
| #include "gluVarType.hpp" |
| #include "gluRenderContext.hpp" |
| #include "glwDefs.hpp" |
| |
| #include "glsShaderExecUtil.hpp" |
| |
| #include <cmath> |
| #include <string> |
| #include <sstream> |
| #include <iostream> |
| #include <map> |
| #include <utility> |
| #include <limits> |
| |
| // Uncomment this to get evaluation trace dumps to std::cerr |
| // #define GLS_ENABLE_TRACE |
| |
| // set this to true to dump even passing results |
| #define GLS_LOG_ALL_RESULTS false |
| |
| enum |
| { |
| // Computing reference intervals can take a non-trivial amount of time, especially on |
| // platforms where toggling floating-point rounding mode is slow (emulated arm on x86). |
| // As a workaround watchdog is kept happy by touching it periodically during reference |
| // interval computation. |
| TOUCH_WATCHDOG_VALUE_FREQUENCY = 4096 |
| }; |
| |
| namespace deqp |
| { |
| namespace gls |
| { |
| namespace BuiltinPrecisionTests |
| { |
| |
| using std::string; |
| using std::map; |
| using std::ostream; |
| using std::ostringstream; |
| using std::pair; |
| using std::vector; |
| using std::set; |
| |
| using de::MovePtr; |
| using de::Random; |
| using de::SharedPtr; |
| using de::UniquePtr; |
| using tcu::Interval; |
| using tcu::FloatFormat; |
| using tcu::MessageBuilder; |
| using tcu::TestCase; |
| using tcu::TestLog; |
| using tcu::Vector; |
| using tcu::Matrix; |
| namespace matrix = tcu::matrix; |
| using glu::Precision; |
| using glu::RenderContext; |
| using glu::VarType; |
| using glu::DataType; |
| using glu::ShaderType; |
| using glu::ContextInfo; |
| using gls::ShaderExecUtil::Symbol; |
| |
| typedef TestCase::IterateResult IterateResult; |
| |
| using namespace glw; |
| using namespace tcu; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Generic singleton creator. |
| * |
| * instance<T>() returns a reference to a unique default-constructed instance |
| * of T. This is mainly used for our GLSL function implementations: each |
| * function is implemented by an object, and each of the objects has a |
| * distinct class. It would be extremely toilsome to maintain a separate |
| * context object that contained individual instances of the function classes, |
| * so we have to resort to global singleton instances. |
| * |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| const T& instance (void) |
| { |
| static const T s_instance = T(); |
| return s_instance; |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Dummy placeholder type for unused template parameters. |
| * |
| * In the precision tests we are dealing with functions of different arities. |
| * To minimize code duplication, we only define templates with the maximum |
| * number of arguments, currently four. If a function's arity is less than the |
| * maximum, Void us used as the type for unused arguments. |
| * |
| * Although Voids are not used at run-time, they still must be compilable, so |
| * they must support all operations that other types do. |
| * |
| *//*--------------------------------------------------------------------*/ |
| struct Void |
| { |
| typedef Void Element; |
| enum |
| { |
| SIZE = 0, |
| }; |
| |
| template <typename T> |
| explicit Void (const T&) {} |
| Void (void) {} |
| operator double (void) const { return TCU_NAN; } |
| |
| // These are used to make Voids usable as containers in container-generic code. |
| Void& operator[] (int) { return *this; } |
| const Void& operator[] (int) const { return *this; } |
| }; |
| |
| ostream& operator<< (ostream& os, Void) { return os << "()"; } |
| |
| //! Returns true for all other types except Void |
| template <typename T> bool isTypeValid (void) { return true; } |
| template <> bool isTypeValid<Void> (void) { return false; } |
| |
| //! Utility function for getting the name of a data type. |
| //! This is used in vector and matrix constructors. |
| template <typename T> |
| const char* dataTypeNameOf (void) |
| { |
| return glu::getDataTypeName(glu::dataTypeOf<T>()); |
| } |
| |
| template <> |
| const char* dataTypeNameOf<Void> (void) |
| { |
| DE_FATAL("Impossible"); |
| return DE_NULL; |
| } |
| |
| //! A hack to get Void support for VarType. |
| template <typename T> |
| VarType getVarTypeOf (Precision prec = glu::PRECISION_LAST) |
| { |
| return glu::varTypeOf<T>(prec); |
| } |
| |
| template <> |
| VarType getVarTypeOf<Void> (Precision) |
| { |
| DE_FATAL("Impossible"); |
| return VarType(); |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Type traits for generalized interval types. |
| * |
| * We are trying to compute sets of acceptable values not only for |
| * float-valued expressions but also for compound values: vectors and |
| * matrices. We approximate a set of vectors as a vector of intervals and |
| * likewise for matrices. |
| * |
| * We now need generalized operations for each type and its interval |
| * approximation. These are given in the type Traits<T>. |
| * |
| * The type Traits<T>::IVal is the approximation of T: it is `Interval` for |
| * scalar types, and a vector or matrix of intervals for container types. |
| * |
| * To allow template inference to take place, there are function wrappers for |
| * the actual operations in Traits<T>. Hence we can just use: |
| * |
| * makeIVal(someFloat) |
| * |
| * instead of: |
| * |
| * Traits<float>::doMakeIVal(value) |
| * |
| *//*--------------------------------------------------------------------*/ |
| |
| template <typename T> struct Traits; |
| |
| //! Create container from elementwise singleton values. |
| template <typename T> |
| typename Traits<T>::IVal makeIVal (const T& value) |
| { |
| return Traits<T>::doMakeIVal(value); |
| } |
| |
| //! Elementwise union of intervals. |
| template <typename T> |
| typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a, |
| const typename Traits<T>::IVal& b) |
| { |
| return Traits<T>::doUnion(a, b); |
| } |
| |
| //! Returns true iff every element of `ival` contains the corresponding element of `value`. |
| template <typename T> |
| bool contains (const typename Traits<T>::IVal& ival, const T& value) |
| { |
| return Traits<T>::doContains(ival, value); |
| } |
| |
| //! Returns true iff every element of `ival` contains corresponding element of `value` within the warning interval |
| template <typename T> |
| bool containsWarning(const typename Traits<T>::IVal& ival, const T& value) |
| { |
| return Traits<T>::doContainsWarning(ival, value); |
| } |
| |
| //! Print out an interval with the precision of `fmt`. |
| template <typename T> |
| void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os) |
| { |
| Traits<T>::doPrintIVal(fmt, ival, os); |
| } |
| |
| template <typename T> |
| string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival) |
| { |
| ostringstream oss; |
| printIVal<T>(fmt, ival, oss); |
| return oss.str(); |
| } |
| |
| //! Print out a value with the precision of `fmt`. |
| template <typename T> |
| void printValue (const FloatFormat& fmt, const T& value, ostream& os) |
| { |
| Traits<T>::doPrintValue(fmt, value, os); |
| } |
| |
| template <typename T> |
| string valueToString (const FloatFormat& fmt, const T& val) |
| { |
| ostringstream oss; |
| printValue(fmt, val, oss); |
| return oss.str(); |
| } |
| |
| //! Approximate `value` elementwise to the float precision defined in `fmt`. |
| //! The resulting interval might not be a singleton if rounding in both |
| //! directions is allowed. |
| template <typename T> |
| typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) |
| { |
| return Traits<T>::doRound(fmt, value); |
| } |
| |
| template <typename T> |
| typename Traits<T>::IVal convert (const FloatFormat& fmt, |
| const typename Traits<T>::IVal& value) |
| { |
| return Traits<T>::doConvert(fmt, value); |
| } |
| |
| //! Common traits for scalar types. |
| template <typename T> |
| struct ScalarTraits |
| { |
| typedef Interval IVal; |
| |
| static Interval doMakeIVal (const T& value) |
| { |
| // Thankfully all scalar types have a well-defined conversion to `double`, |
| // hence Interval can represent their ranges without problems. |
| return Interval(double(value)); |
| } |
| |
| static Interval doUnion (const Interval& a, const Interval& b) |
| { |
| return a | b; |
| } |
| |
| static bool doContains (const Interval& a, T value) |
| { |
| return a.contains(double(value)); |
| } |
| |
| static bool doContainsWarning(const Interval& a, T value) |
| { |
| return a.containsWarning(double(value)); |
| } |
| |
| static Interval doConvert (const FloatFormat& fmt, const IVal& ival) |
| { |
| return fmt.convert(ival); |
| } |
| |
| static Interval doRound (const FloatFormat& fmt, T value) |
| { |
| return fmt.roundOut(double(value), false); |
| } |
| }; |
| |
| template<> |
| struct Traits<float> : ScalarTraits<float> |
| { |
| static void doPrintIVal (const FloatFormat& fmt, |
| const Interval& ival, |
| ostream& os) |
| { |
| os << fmt.intervalToHex(ival); |
| } |
| |
| static void doPrintValue (const FloatFormat& fmt, |
| const float& value, |
| ostream& os) |
| { |
| os << fmt.floatToHex(value); |
| } |
| }; |
| |
| template<> |
| struct Traits<bool> : ScalarTraits<bool> |
| { |
| static void doPrintValue (const FloatFormat&, |
| const float& value, |
| ostream& os) |
| { |
| os << (value != 0.0f ? "true" : "false"); |
| } |
| |
| static void doPrintIVal (const FloatFormat&, |
| const Interval& ival, |
| ostream& os) |
| { |
| os << "{"; |
| if (ival.contains(false)) |
| os << "false"; |
| if (ival.contains(false) && ival.contains(true)) |
| os << ", "; |
| if (ival.contains(true)) |
| os << "true"; |
| os << "}"; |
| } |
| }; |
| |
| template<> |
| struct Traits<int> : ScalarTraits<int> |
| { |
| static void doPrintValue (const FloatFormat&, |
| const int& value, |
| ostream& os) |
| { |
| os << value; |
| } |
| |
| static void doPrintIVal (const FloatFormat&, |
| const Interval& ival, |
| ostream& os) |
| { |
| os << "[" << int(ival.lo()) << ", " << int(ival.hi()) << "]"; |
| } |
| }; |
| |
| //! Common traits for containers, i.e. vectors and matrices. |
| //! T is the container type itself, I is the same type with interval elements. |
| template <typename T, typename I> |
| struct ContainerTraits |
| { |
| typedef typename T::Element Element; |
| typedef I IVal; |
| |
| static IVal doMakeIVal (const T& value) |
| { |
| IVal ret; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| ret[ndx] = makeIVal(value[ndx]); |
| |
| return ret; |
| } |
| |
| static IVal doUnion (const IVal& a, const IVal& b) |
| { |
| IVal ret; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| ret[ndx] = unionIVal<Element>(a[ndx], b[ndx]); |
| |
| return ret; |
| } |
| |
| static bool doContains (const IVal& ival, const T& value) |
| { |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| if (!contains(ival[ndx], value[ndx])) |
| return false; |
| |
| return true; |
| } |
| |
| static bool doContainsWarning(const IVal& ival, const T& value) |
| { |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| if (!containsWarning(ival[ndx], value[ndx])) |
| return false; |
| |
| return true; |
| } |
| |
| static void doPrintIVal (const FloatFormat& fmt, const IVal ival, ostream& os) |
| { |
| os << "("; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| { |
| if (ndx > 0) |
| os << ", "; |
| |
| printIVal<Element>(fmt, ival[ndx], os); |
| } |
| |
| os << ")"; |
| } |
| |
| static void doPrintValue (const FloatFormat& fmt, const T& value, ostream& os) |
| { |
| os << dataTypeNameOf<T>() << "("; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| { |
| if (ndx > 0) |
| os << ", "; |
| |
| printValue<Element>(fmt, value[ndx], os); |
| } |
| |
| os << ")"; |
| } |
| |
| static IVal doConvert (const FloatFormat& fmt, const IVal& value) |
| { |
| IVal ret; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| ret[ndx] = convert<Element>(fmt, value[ndx]); |
| |
| return ret; |
| } |
| |
| static IVal doRound (const FloatFormat& fmt, T value) |
| { |
| IVal ret; |
| |
| for (int ndx = 0; ndx < T::SIZE; ++ndx) |
| ret[ndx] = round(fmt, value[ndx]); |
| |
| return ret; |
| } |
| }; |
| |
| template <typename T, int Size> |
| struct Traits<Vector<T, Size> > : |
| ContainerTraits<Vector<T, Size>, Vector<typename Traits<T>::IVal, Size> > |
| { |
| }; |
| |
| template <typename T, int Rows, int Cols> |
| struct Traits<Matrix<T, Rows, Cols> > : |
| ContainerTraits<Matrix<T, Rows, Cols>, Matrix<typename Traits<T>::IVal, Rows, Cols> > |
| { |
| }; |
| |
| //! Void traits. These are just dummies, but technically valid: a Void is a |
| //! unit type with a single possible value. |
| template<> |
| struct Traits<Void> |
| { |
| typedef Void IVal; |
| |
| static Void doMakeIVal (const Void& value) { return value; } |
| static Void doUnion (const Void&, const Void&) { return Void(); } |
| static bool doContains (const Void&, Void) { return true; } |
| static bool doContainsWarning (const Void&, Void) { return true; } |
| static Void doRound (const FloatFormat&, const Void& value) { return value; } |
| static Void doConvert (const FloatFormat&, const Void& value) { return value; } |
| |
| static void doPrintValue (const FloatFormat&, const Void&, ostream& os) |
| { |
| os << "()"; |
| } |
| |
| static void doPrintIVal (const FloatFormat&, const Void&, ostream& os) |
| { |
| os << "()"; |
| } |
| }; |
| |
| //! This is needed for container-generic operations. |
| //! We want a scalar type T to be its own "one-element vector". |
| template <typename T, int Size> struct ContainerOf { typedef Vector<T, Size> Container; }; |
| |
| template <typename T> struct ContainerOf<T, 1> { typedef T Container; }; |
| template <int Size> struct ContainerOf<Void, Size> { typedef Void Container; }; |
| |
| // This is a kludge that is only needed to get the ExprP::operator[] syntactic sugar to work. |
| template <typename T> struct ElementOf { typedef typename T::Element Element; }; |
| template <> struct ElementOf<float> { typedef void Element; }; |
| template <> struct ElementOf<bool> { typedef void Element; }; |
| template <> struct ElementOf<int> { typedef void Element; }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * |
| * \name Abstract syntax for expressions and statements. |
| * |
| * We represent GLSL programs as syntax objects: an Expr<T> represents an |
| * expression whose GLSL type corresponds to the C++ type T, and a Statement |
| * represents a statement. |
| * |
| * To ease memory management, we use shared pointers to refer to expressions |
| * and statements. ExprP<T> is a shared pointer to an Expr<T>, and StatementP |
| * is a shared pointer to a Statement. |
| * |
| * \{ |
| * |
| *//*--------------------------------------------------------------------*/ |
| |
| class ExprBase; |
| class ExpandContext; |
| class Statement; |
| class StatementP; |
| class FuncBase; |
| template <typename T> class ExprP; |
| template <typename T> class Variable; |
| template <typename T> class VariableP; |
| template <typename T> class DefaultSampling; |
| |
| typedef set<const FuncBase*> FuncSet; |
| |
| template <typename T> |
| VariableP<T> variable (const string& name); |
| StatementP compoundStatement (const vector<StatementP>& statements); |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief A variable environment. |
| * |
| * An Environment object maintains the mapping between variables of the |
| * abstract syntax tree and their values. |
| * |
| * \todo [2014-03-28 lauri] At least run-time type safety. |
| * |
| *//*--------------------------------------------------------------------*/ |
| class Environment |
| { |
| public: |
| template<typename T> |
| void bind (const Variable<T>& variable, |
| const typename Traits<T>::IVal& value) |
| { |
| deUint8* const data = new deUint8[sizeof(value)]; |
| |
| deMemcpy(data, &value, sizeof(value)); |
| de::insert(m_map, variable.getName(), SharedPtr<deUint8>(data, de::ArrayDeleter<deUint8>())); |
| } |
| |
| template<typename T> |
| typename Traits<T>::IVal& lookup (const Variable<T>& variable) const |
| { |
| deUint8* const data = de::lookup(m_map, variable.getName()).get(); |
| |
| return *reinterpret_cast<typename Traits<T>::IVal*>(data); |
| } |
| |
| private: |
| map<string, SharedPtr<deUint8> > m_map; |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Evaluation context. |
| * |
| * The evaluation context contains everything that separates one execution of |
| * an expression from the next. Currently this means the desired floating |
| * point precision and the current variable environment. |
| * |
| *//*--------------------------------------------------------------------*/ |
| struct EvalContext |
| { |
| EvalContext (const FloatFormat& format_, |
| Precision floatPrecision_, |
| Environment& env_, |
| int callDepth_ = 0) |
| : format (format_) |
| , floatPrecision (floatPrecision_) |
| , env (env_) |
| , callDepth (callDepth_) {} |
| |
| FloatFormat format; |
| Precision floatPrecision; |
| Environment& env; |
| int callDepth; |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Simple incremental counter. |
| * |
| * This is used to make sure that different ExpandContexts will not produce |
| * overlapping temporary names. |
| * |
| *//*--------------------------------------------------------------------*/ |
| class Counter |
| { |
| public: |
| Counter (int count = 0) : m_count(count) {} |
| int operator() (void) { return m_count++; } |
| |
| private: |
| int m_count; |
| }; |
| |
| class ExpandContext |
| { |
| public: |
| ExpandContext (Counter& symCounter) : m_symCounter(symCounter) {} |
| ExpandContext (const ExpandContext& parent) |
| : m_symCounter(parent.m_symCounter) {} |
| |
| template<typename T> |
| VariableP<T> genSym (const string& baseName) |
| { |
| return variable<T>(baseName + de::toString(m_symCounter())); |
| } |
| |
| void addStatement (const StatementP& stmt) |
| { |
| m_statements.push_back(stmt); |
| } |
| |
| vector<StatementP> getStatements (void) const |
| { |
| return m_statements; |
| } |
| private: |
| Counter& m_symCounter; |
| vector<StatementP> m_statements; |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief A statement or declaration. |
| * |
| * Statements have no values. Instead, they are executed for their side |
| * effects only: the execute() method should modify at least one variable in |
| * the environment. |
| * |
| * As a bit of a kludge, a Statement object can also represent a declaration: |
| * when it is evaluated, it can add a variable binding to the environment |
| * instead of modifying a current one. |
| * |
| *//*--------------------------------------------------------------------*/ |
| class Statement |
| { |
| public: |
| virtual ~Statement (void) { } |
| //! Execute the statement, modifying the environment of `ctx` |
| void execute (EvalContext& ctx) const { this->doExecute(ctx); } |
| void print (ostream& os) const { this->doPrint(os); } |
| //! Add the functions used in this statement to `dst`. |
| void getUsedFuncs (FuncSet& dst) const { this->doGetUsedFuncs(dst); } |
| |
| protected: |
| virtual void doPrint (ostream& os) const = 0; |
| virtual void doExecute (EvalContext& ctx) const = 0; |
| virtual void doGetUsedFuncs (FuncSet& dst) const = 0; |
| }; |
| |
| ostream& operator<<(ostream& os, const Statement& stmt) |
| { |
| stmt.print(os); |
| return os; |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Smart pointer for statements (and declarations) |
| * |
| *//*--------------------------------------------------------------------*/ |
| class StatementP : public SharedPtr<const Statement> |
| { |
| public: |
| typedef SharedPtr<const Statement> Super; |
| |
| StatementP (void) {} |
| explicit StatementP (const Statement* ptr) : Super(ptr) {} |
| StatementP (const Super& ptr) : Super(ptr) {} |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief |
| * |
| * A statement that modifies a variable or a declaration that binds a variable. |
| * |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| class VariableStatement : public Statement |
| { |
| public: |
| VariableStatement (const VariableP<T>& variable, const ExprP<T>& value, |
| bool isDeclaration) |
| : m_variable (variable) |
| , m_value (value) |
| , m_isDeclaration (isDeclaration) {} |
| |
| protected: |
| void doPrint (ostream& os) const |
| { |
| if (m_isDeclaration) |
| os << glu::declare(getVarTypeOf<T>(), m_variable->getName()); |
| else |
| os << m_variable->getName(); |
| |
| os << " = " << *m_value << ";\n"; |
| } |
| |
| void doExecute (EvalContext& ctx) const |
| { |
| if (m_isDeclaration) |
| ctx.env.bind(*m_variable, m_value->evaluate(ctx)); |
| else |
| ctx.env.lookup(*m_variable) = m_value->evaluate(ctx); |
| } |
| |
| void doGetUsedFuncs (FuncSet& dst) const |
| { |
| m_value->getUsedFuncs(dst); |
| } |
| |
| VariableP<T> m_variable; |
| ExprP<T> m_value; |
| bool m_isDeclaration; |
| }; |
| |
| template <typename T> |
| StatementP variableStatement (const VariableP<T>& variable, |
| const ExprP<T>& value, |
| bool isDeclaration) |
| { |
| return StatementP(new VariableStatement<T>(variable, value, isDeclaration)); |
| } |
| |
| template <typename T> |
| StatementP variableDeclaration (const VariableP<T>& variable, const ExprP<T>& definiens) |
| { |
| return variableStatement(variable, definiens, true); |
| } |
| |
| template <typename T> |
| StatementP variableAssignment (const VariableP<T>& variable, const ExprP<T>& value) |
| { |
| return variableStatement(variable, value, false); |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief A compound statement, i.e. a block. |
| * |
| * A compound statement is executed by executing its constituent statements in |
| * sequence. |
| * |
| *//*--------------------------------------------------------------------*/ |
| class CompoundStatement : public Statement |
| { |
| public: |
| CompoundStatement (const vector<StatementP>& statements) |
| : m_statements (statements) {} |
| |
| protected: |
| void doPrint (ostream& os) const |
| { |
| os << "{\n"; |
| |
| for (size_t ndx = 0; ndx < m_statements.size(); ++ndx) |
| os << *m_statements[ndx]; |
| |
| os << "}\n"; |
| } |
| |
| void doExecute (EvalContext& ctx) const |
| { |
| for (size_t ndx = 0; ndx < m_statements.size(); ++ndx) |
| m_statements[ndx]->execute(ctx); |
| } |
| |
| void doGetUsedFuncs (FuncSet& dst) const |
| { |
| for (size_t ndx = 0; ndx < m_statements.size(); ++ndx) |
| m_statements[ndx]->getUsedFuncs(dst); |
| } |
| |
| vector<StatementP> m_statements; |
| }; |
| |
| StatementP compoundStatement(const vector<StatementP>& statements) |
| { |
| return StatementP(new CompoundStatement(statements)); |
| } |
| |
| //! Common base class for all expressions regardless of their type. |
| class ExprBase |
| { |
| public: |
| virtual ~ExprBase (void) {} |
| void printExpr (ostream& os) const { this->doPrintExpr(os); } |
| |
| //! Output the functions that this expression refers to |
| void getUsedFuncs (FuncSet& dst) const |
| { |
| this->doGetUsedFuncs(dst); |
| } |
| |
| protected: |
| virtual void doPrintExpr (ostream&) const {} |
| virtual void doGetUsedFuncs (FuncSet&) const {} |
| }; |
| |
| //! Type-specific operations for an expression representing type T. |
| template <typename T> |
| class Expr : public ExprBase |
| { |
| public: |
| typedef T Val; |
| typedef typename Traits<T>::IVal IVal; |
| |
| IVal evaluate (const EvalContext& ctx) const; |
| |
| protected: |
| virtual IVal doEvaluate (const EvalContext& ctx) const = 0; |
| }; |
| |
| //! Evaluate an expression with the given context, optionally tracing the calls to stderr. |
| template <typename T> |
| typename Traits<T>::IVal Expr<T>::evaluate (const EvalContext& ctx) const |
| { |
| #ifdef GLS_ENABLE_TRACE |
| static const FloatFormat highpFmt (-126, 127, 23, true, |
| tcu::MAYBE, |
| tcu::YES, |
| tcu::MAYBE); |
| EvalContext newCtx (ctx.format, ctx.floatPrecision, |
| ctx.env, ctx.callDepth + 1); |
| const IVal ret = this->doEvaluate(newCtx); |
| |
| if (isTypeValid<T>()) |
| { |
| std::cerr << string(ctx.callDepth, ' '); |
| this->printExpr(std::cerr); |
| std::cerr << " -> " << intervalToString<T>(highpFmt, ret) << std::endl; |
| } |
| return ret; |
| #else |
| return this->doEvaluate(ctx); |
| #endif |
| } |
| |
| template <typename T> |
| class ExprPBase : public SharedPtr<const Expr<T> > |
| { |
| public: |
| }; |
| |
| ostream& operator<< (ostream& os, const ExprBase& expr) |
| { |
| expr.printExpr(os); |
| return os; |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Shared pointer to an expression of a container type. |
| * |
| * Container types (i.e. vectors and matrices) support the subscription |
| * operator. This class provides a bit of syntactic sugar to allow us to use |
| * the C++ subscription operator to create a subscription expression. |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| class ContainerExprPBase : public ExprPBase<T> |
| { |
| public: |
| ExprP<typename T::Element> operator[] (int i) const; |
| }; |
| |
| template <typename T> |
| class ExprP : public ExprPBase<T> {}; |
| |
| // We treat Voids as containers since the dummy parameters in generalized |
| // vector functions are represented as Voids. |
| template <> |
| class ExprP<Void> : public ContainerExprPBase<Void> {}; |
| |
| template <typename T, int Size> |
| class ExprP<Vector<T, Size> > : public ContainerExprPBase<Vector<T, Size> > {}; |
| |
| template <typename T, int Rows, int Cols> |
| class ExprP<Matrix<T, Rows, Cols> > : public ContainerExprPBase<Matrix<T, Rows, Cols> > {}; |
| |
| template <typename T> ExprP<T> exprP (void) |
| { |
| return ExprP<T>(); |
| } |
| |
| template <typename T> |
| ExprP<T> exprP (const SharedPtr<const Expr<T> >& ptr) |
| { |
| ExprP<T> ret; |
| static_cast<SharedPtr<const Expr<T> >&>(ret) = ptr; |
| return ret; |
| } |
| |
| template <typename T> |
| ExprP<T> exprP (const Expr<T>* ptr) |
| { |
| return exprP(SharedPtr<const Expr<T> >(ptr)); |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief A shared pointer to a variable expression. |
| * |
| * This is just a narrowing of ExprP for the operations that require a variable |
| * instead of an arbitrary expression. |
| * |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| class VariableP : public SharedPtr<const Variable<T> > |
| { |
| public: |
| typedef SharedPtr<const Variable<T> > Super; |
| explicit VariableP (const Variable<T>* ptr) : Super(ptr) {} |
| VariableP (void) {} |
| VariableP (const Super& ptr) : Super(ptr) {} |
| |
| operator ExprP<T> (void) const { return exprP(SharedPtr<const Expr<T> >(*this)); } |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \name Syntactic sugar operators for expressions. |
| * |
| * @{ |
| * |
| * These operators allow the use of C++ syntax to construct GLSL expressions |
| * containing operators: e.g. "a+b" creates an addition expression with |
| * operands a and b, and so on. |
| * |
| *//*--------------------------------------------------------------------*/ |
| ExprP<float> operator-(const ExprP<float>& arg0); |
| ExprP<float> operator+(const ExprP<float>& arg0, |
| const ExprP<float>& arg1); |
| ExprP<float> operator-(const ExprP<float>& arg0, |
| const ExprP<float>& arg1); |
| ExprP<float> operator*(const ExprP<float>& arg0, |
| const ExprP<float>& arg1); |
| ExprP<float> operator/(const ExprP<float>& arg0, |
| const ExprP<float>& arg1); |
| template<int Size> |
| ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0); |
| template<int Size> |
| ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0, |
| const ExprP<float>& arg1); |
| template<int Size> |
| ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0, |
| const ExprP<Vector<float, Size> >& arg1); |
| template<int Size> |
| ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0, |
| const ExprP<Vector<float, Size> >& arg1); |
| template<int Left, int Mid, int Right> |
| ExprP<Matrix<float, Left, Right> > operator* (const ExprP<Matrix<float, Left, Mid> >& left, |
| const ExprP<Matrix<float, Mid, Right> >& right); |
| template<int Rows, int Cols> |
| ExprP<Vector<float, Rows> > operator* (const ExprP<Vector<float, Cols> >& left, |
| const ExprP<Matrix<float, Rows, Cols> >& right); |
| template<int Rows, int Cols> |
| ExprP<Vector<float, Cols> > operator* (const ExprP<Matrix<float, Rows, Cols> >& left, |
| const ExprP<Vector<float, Rows> >& right); |
| template<int Rows, int Cols> |
| ExprP<Matrix<float, Rows, Cols> > operator* (const ExprP<Matrix<float, Rows, Cols> >& left, |
| const ExprP<float>& right); |
| template<int Rows, int Cols> |
| ExprP<Matrix<float, Rows, Cols> > operator+ (const ExprP<Matrix<float, Rows, Cols> >& left, |
| const ExprP<Matrix<float, Rows, Cols> >& right); |
| template<int Rows, int Cols> |
| ExprP<Matrix<float, Rows, Cols> > operator- (const ExprP<Matrix<float, Rows, Cols> >& mat); |
| |
| //! @} |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Variable expression. |
| * |
| * A variable is evaluated by looking up its range of possible values from an |
| * environment. |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| class Variable : public Expr<T> |
| { |
| public: |
| typedef typename Expr<T>::IVal IVal; |
| |
| Variable (const string& name) : m_name (name) {} |
| string getName (void) const { return m_name; } |
| |
| protected: |
| void doPrintExpr (ostream& os) const { os << m_name; } |
| IVal doEvaluate (const EvalContext& ctx) const |
| { |
| return ctx.env.lookup<T>(*this); |
| } |
| |
| private: |
| string m_name; |
| }; |
| |
| template <typename T> |
| VariableP<T> variable (const string& name) |
| { |
| return VariableP<T>(new Variable<T>(name)); |
| } |
| |
| template <typename T> |
| VariableP<T> bindExpression (const string& name, ExpandContext& ctx, const ExprP<T>& expr) |
| { |
| VariableP<T> var = ctx.genSym<T>(name); |
| ctx.addStatement(variableDeclaration(var, expr)); |
| return var; |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Constant expression. |
| * |
| * A constant is evaluated by rounding it to a set of possible values allowed |
| * by the current floating point precision. |
| *//*--------------------------------------------------------------------*/ |
| template <typename T> |
| class Constant : public Expr<T> |
| { |
| public: |
| typedef typename Expr<T>::IVal IVal; |
| |
| Constant (const T& value) : m_value(value) {} |
| |
| protected: |
| void doPrintExpr (ostream& os) const { os << m_value; } |
| IVal doEvaluate (const EvalContext&) const { return makeIVal(m_value); } |
| |
| private: |
| T m_value; |
| }; |
| |
| template <typename T> |
| ExprP<T> constant (const T& value) |
| { |
| return exprP(new Constant<T>(value)); |
| } |
| |
| //! Return a reference to a singleton void constant. |
| const ExprP<Void>& voidP (void) |
| { |
| static const ExprP<Void> singleton = constant(Void()); |
| |
| return singleton; |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Four-element tuple. |
| * |
| * This is used for various things where we need one thing for each possible |
| * function parameter. Currently the maximum supported number of parameters is |
| * four. |
| *//*--------------------------------------------------------------------*/ |
| template <typename T0 = Void, typename T1 = Void, typename T2 = Void, typename T3 = Void> |
| struct Tuple4 |
| { |
| explicit Tuple4 (const T0 e0 = T0(), |
| const T1 e1 = T1(), |
| const T2 e2 = T2(), |
| const T3 e3 = T3()) |
| : a (e0) |
| , b (e1) |
| , c (e2) |
| , d (e3) |
| { |
| } |
| |
| T0 a; |
| T1 b; |
| T2 c; |
| T3 d; |
| }; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Function signature. |
| * |
| * This is a purely compile-time structure used to bundle all types in a |
| * function signature together. This makes passing the signature around in |
| * templates easier, since we only need to take and pass a single Sig instead |
| * of a bunch of parameter types and a return type. |
| * |
| *//*--------------------------------------------------------------------*/ |
| template <typename R, |
| typename P0 = Void, typename P1 = Void, |
| typename P2 = Void, typename P3 = Void> |
| struct Signature |
| { |
| typedef R Ret; |
| typedef P0 Arg0; |
| typedef P1 Arg1; |
| typedef P2 Arg2; |
| typedef P3 Arg3; |
| typedef typename Traits<Ret>::IVal IRet; |
| typedef typename Traits<Arg0>::IVal IArg0; |
| typedef typename Traits<Arg1>::IVal IArg1; |
| typedef typename Traits<Arg2>::IVal IArg2; |
| typedef typename Traits<Arg3>::IVal IArg3; |
| |
| typedef Tuple4< const Arg0&, const Arg1&, const Arg2&, const Arg3&> Args; |
| typedef Tuple4< const IArg0&, const IArg1&, const IArg2&, const IArg3&> IArgs; |
| typedef Tuple4< ExprP<Arg0>, ExprP<Arg1>, ExprP<Arg2>, ExprP<Arg3> > ArgExprs; |
| }; |
| |
| typedef vector<const ExprBase*> BaseArgExprs; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Type-independent operations for function objects. |
| * |
| *//*--------------------------------------------------------------------*/ |
| class FuncBase |
| { |
| public: |
| virtual ~FuncBase (void) {} |
| virtual string getName (void) const = 0; |
| //! Name of extension that this function requires, or empty. |
| virtual string getRequiredExtension (void) const { return ""; } |
| virtual void print (ostream&, |
| const BaseArgExprs&) const = 0; |
| //! Index of output parameter, or -1 if none of the parameters is output. |
| virtual int getOutParamIndex (void) const { return -1; } |
| |
| void printDefinition (ostream& os) const |
| { |
| doPrintDefinition(os); |
| } |
| |
| void getUsedFuncs (FuncSet& dst) const |
| { |
| this->doGetUsedFuncs(dst); |
| } |
| |
| protected: |
| virtual void doPrintDefinition (ostream& os) const = 0; |
| virtual void doGetUsedFuncs (FuncSet& dst) const = 0; |
| }; |
| |
| typedef Tuple4<string, string, string, string> ParamNames; |
| |
| /*--------------------------------------------------------------------*//*! |
| * \brief Function objects. |
| * |
| * Each Func object represents a GLSL function. It can be applied to interval |
| * arguments, and it returns the an interval that is a conservative |
| * approximation of the image of the GLSL function over the argument |
| * intervals. That is, it is given a set of possible arguments and it returns |
| * the set of possible values. |
| * |
| *//*--------------------------------------------------------------------*/ |
| template <typename Sig_> |
| class Func : public FuncBase |
| { |
| public: |
| typedef Sig_ Sig; |
| typedef typename Sig::Ret Ret; |
| typedef typename Sig::Arg0 Arg0; |
| typedef typename Sig::Arg1 Arg1; |
| typedef typename Sig::Arg2 Arg2; |
| typedef typename Sig::Arg3 Arg3; |
| typedef typename Sig::IRet IRet; |
| typedef typename Sig::IArg0 IArg0; |
| typedef typename Sig::IArg1 IArg1; |
| typedef typename Sig::IArg2 IArg2; |
| typedef typename Sig::IArg3 IArg3; |
| typedef typename Sig::Args Args; |
| typedef typename Sig::IArgs IArgs; |
| typedef typename Sig::ArgExprs ArgExprs; |
| |
| void print (ostream& os, |
| const BaseArgExprs& args) const |
| { |
| this->doPrint(os, args); |
| } |
| |
| IRet apply (const EvalContext& ctx, |
| const IArg0& arg0 = IArg0(), |
| const IArg1& arg1 = IArg1(), |
| const IArg2& arg2 = IArg2(), |
| const IArg3& arg3 = IArg3()) const |
| { |
| return this->applyArgs(ctx, IArgs(arg0, arg1, arg2, arg3)); |
| } |
| IRet applyArgs (const EvalContext& ctx, |
| const IArgs& args) const |
| { |
| return this->doApply(ctx, args); |
| } |
| ExprP<Ret> operator() (const ExprP<Arg0>& arg0 = voidP(), |
| const ExprP<Arg1>& arg1 = voidP(), |
| const ExprP<Arg2>& arg2 = voidP(), |
| const ExprP<Arg3>& arg3 = voidP()) const; |
| |
| const ParamNames& getParamNames (void) const |
| { |
| return this->doGetParamNames(); |
| } |
| |
| protected: |
| virtual IRet doApply (const EvalContext&, |
| const IArgs&) const = 0; |
| virtual void doPrint (ostream& os, const BaseArgExprs& args) const |
| { |
| os << getName() << "("; |
| |
| if (isTypeValid<Arg0>()) |
| os << *args[0]; |
| |
| if (isTypeValid<Arg1>()) |
| os << ", " << *args[1]; |
| |
| if (isTypeValid<Arg2>()) |
| os << ", " << *args[2]; |
| |
| if (isTypeValid<Arg3>()) |
| os << ", " << *args[3]; |
| |
| os << ")"; |
| } |
| |
| virtual const ParamNames& doGetParamNames (void) const |
| { |
| static ParamNames names ("a", "b", "c", "d"); |
| return names; |
| } |
| }; |
| |
| template <typename Sig> |
| class Apply : public Expr<typename Sig::Ret> |
| { |
| public: |
| typedef typename Sig::Ret Ret; |
| typedef typename Sig::Arg0 Arg0; |
| typedef typename Sig::Arg1 Arg1; |
| typedef typename Sig::Arg2 Arg2; |
| typedef typename Sig::Arg3 Arg3; |
| typedef typename Expr<Ret>::Val Val; |
| typedef typename Expr<Ret>::IVal IVal; |
| typedef Func<Sig> ApplyFunc; |
| typedef typename ApplyFunc::ArgExprs ArgExprs; |
| |
| Apply (const ApplyFunc& func, |
| const ExprP<Arg0>& arg0 = voidP(), |
| const ExprP<Arg1>& arg1 = voidP(), |
| const ExprP<Arg2>& arg2 = voidP(), |
| const ExprP<Arg3>& arg3 = voidP()) |
| : m_func (func), |
| m_args (arg0, arg1, arg2, arg3) {} |
| |
| Apply (const ApplyFunc& func, |
| const ArgExprs& args) |
| : m_func (func), |
| m_args (args) {} |
| protected: |
| void doPrintExpr (ostream& os) const |
| { |
| BaseArgExprs args; |
| args.push_back(m_args.a.get()); |
| args.push_back(m_args.b.get()); |
| args.push_back(m_args.c.get()); |
| args.push_back(m_args.d.get()); |
| m_func.print(os, args); |
| } |
| |
| IVal doEvaluate (const EvalContext& ctx) const |
| { |
| return m_func.apply(ctx, |
| m_args.a->evaluate(ctx), m_args.b->evaluate(ctx), |
| m_args.c->evaluate(ctx), m_args.d->evaluate(ctx)); |
| } |
| |
| void doGetUsedFuncs (FuncSet& dst) const |
| { |
| m_func.getUsedFuncs(dst); |
| m_args.a->getUsedFuncs(dst); |
| m_args.b->getUsedFuncs(dst); |
| m_args.c->getUsedFuncs(dst); |
| m_args.d->getUsedFuncs(dst); |
| } |
| |
| const ApplyFunc& m_func; |
| ArgExprs m_args; |
| }; |
| |
| template<typename T> |
| class Alternatives : public Func<Signature<T, T, T> > |
| { |
| public: |
| typedef typename Alternatives::Sig Sig; |
| |
| protected: |
| typedef typename Alternatives::IRet IRet; |
| typedef typename Alternatives::IArgs IArgs; |
| |
| virtual string getName (void) const { return "alternatives"; } |
| virtual void doPrintDefinition (std::ostream&) const {} |
| void doGetUsedFuncs (FuncSet&) const {} |
| |
| virtual IRet doApply (const EvalContext&, const IArgs& args) const |
| { |
| return unionIVal<T>(args.a, args.b); |
| } |
| |
| virtual void doPrint (ostream& os, const BaseArgExprs& args) const |
| { |
| os << "{" << *args[0] << " | " << *args[1] << "}"; |
| } |
| }; |
| |
| template <typename Sig> |
| ExprP<typename Sig::Ret> createApply (const Func<Sig>& func, |
| const typename Func<Sig>::ArgExprs& args) |
| { |
| return exprP(new Apply<Sig>(func, args)); |
| } |
| |
| template <typename Sig> |
| ExprP<typename Sig::Ret> createApply ( |
| const Func<Sig>& func, |
| const ExprP<typename Sig::Arg0>& arg0 = voidP(), |
| const ExprP<typename Sig::Arg1>& arg1 = voidP(), |
| const ExprP<typename Sig::Arg2>& arg2 = voidP(), |
| const ExprP<typename Sig::Arg3>& arg3 = voidP()) |
| { |
| return exprP(new Apply<Sig>(func, arg0, arg1, arg2, arg3)); |
| } |
| |
| template <typename Sig> |
| ExprP<typename Sig::Ret> Func<Sig>::operator() (const ExprP<typename Sig::Arg0>& arg0, |
| const ExprP<typename Sig::Arg1>& arg1, |
| const ExprP<typename Sig::Arg2>& arg2, |
| const ExprP<typename Sig::Arg3>& arg3) const |
| { |
| return createApply(*this, arg0, arg1, arg2, arg3); |
| } |
| |
| template <typename F> |
| ExprP<typename F::Ret> app (const ExprP<typename F::Arg0>& arg0 = voidP(), |
| const ExprP<typename F::Arg1>& arg1 = voidP(), |
| const ExprP<typename F::Arg2>& arg2 = voidP(), |
| const ExprP<typename F::Arg3>& arg3 = voidP()) |
| { |
| return createApply(instance<F>(), arg0, arg1, arg2, arg3); |
| } |
| |
| template <typename F> |
| typename F::IRet call (const EvalContext& ctx, |
| const typename F::IArg0& arg0 = Void(), |
| const typename F::IArg1& arg1 = Void(), |
| const typename F::IArg2& arg2 = Void(), |
| const typename F::IArg3& arg3 = Void()) |
| { |
| return instance<F>().apply(ctx, arg0, arg1, arg2, arg3); |
| } |
| |
| template <typename T> |
| ExprP<T> alternatives (const ExprP<T>& arg0, |
| const ExprP<T>& arg1) |
| { |
| return createApply<typename Alternatives<T>::Sig>(instance<Alternatives<T> >(), arg0, arg1); |
| } |
| |
| template <typename Sig> |
| class ApplyVar : public Apply<Sig> |
| { |
| public: |
| typedef typename Sig::Ret Ret; |
| typedef typename Sig::Arg0 Arg0; |
| typedef typename Sig::Arg1 Arg1; |
| typedef typename Sig::Arg2 Arg2; |
| typedef typename Sig::Arg3 Arg3; |
| typedef typename Expr<Ret>::Val Val; |
| typedef typename Expr<Ret>::IVal IVal; |
| typedef Func<Sig> ApplyFunc; |
| typedef typename ApplyFunc::ArgExprs ArgExprs; |
| |
| ApplyVar (const ApplyFunc& func, |
| const VariableP<Arg0>& arg0, |
| const VariableP<Arg1>& arg1, |
| const VariableP<Arg2>& arg2, |
| const VariableP<Arg3>& arg3) |
| : Apply<Sig> (func, arg0, arg1, arg2, arg3) {} |
| protected: |
| IVal doEvaluate (const EvalContext& ctx) const |
| { |
| const Variable<Arg0>& var0 = static_cast<const Variable<Arg0>&>(*this->m_args.a); |
| const Variable<Arg1>& var1 = static_cast<const Variable<Arg1>&>(*this->m_args.b); |
| const Variable<Arg2>& var2 = static_cast<const Variable<Arg2>&>(*this->m_args.c); |
| const Variable<Arg3>& var3 = static_cast<const Variable<Arg3>&>(*this->m_args.d); |
| return this->m_func.apply(ctx, |
| ctx.env.lookup(var0), ctx.env.lookup(var1), |
| ctx.env.lookup(var2), ctx.env.lookup(var3)); |
| } |
| }; |
| |
| template <typename Sig> |
| ExprP<typename Sig::Ret> applyVar (const Func<Sig>& func, |
| const VariableP<typename Sig::Arg0>& arg0, |
| const VariableP<typename Sig::Arg1>& arg1, |
| const VariableP<typename Sig::Arg2>& arg2, |
| const VariableP<typename Sig::Arg3>& arg3) |
| { |
| return exprP(new ApplyVar<Sig>(func, arg0, arg1, arg2, arg3)); |
| } |
| |
| template <typename Sig_> |
| class DerivedFunc : public Func<Sig_> |
| { |
| public: |
| typedef typename DerivedFunc::ArgExprs ArgExprs; |
| typedef typename DerivedFunc::IRet IRet; |
| typedef typename DerivedFunc::IArgs IArgs; |
| typedef typename DerivedFunc::Ret Ret; |
| typedef typename DerivedFunc::Arg0 Arg0; |
| typedef typename DerivedFunc::Arg1 Arg1; |
| typedef typename DerivedFunc::Arg2 Arg2; |
| typedef typename DerivedFunc::Arg3 Arg3; |
| typedef typename DerivedFunc::IArg0 IArg0; |
| typedef typename DerivedFunc::IArg1 IArg1; |
| typedef typename DerivedFunc::IArg2 IArg2; |
| typedef typename DerivedFunc::IArg3 IArg3; |
| |
| protected: |
| void doPrintDefinition (ostream& os) const |
| { |
| const ParamNames& paramNames = this->getParamNames(); |
| |
| initialize(); |
| |
| os << dataTypeNameOf<Ret>() << " " << this->getName() |
| << "("; |
| if (isTypeValid<Arg0>()) |
| os << dataTypeNameOf<Arg0>() << " " << paramNames.a; |
| if (isTypeValid<Arg1>()) |
| os << ", " << dataTypeNameOf<Arg1>() << " " << paramNames.b; |
| if (isTypeValid<Arg2>()) |
| os << ", " << dataTypeNameOf<Arg2>() << " " << paramNames.c; |
| if (isTypeValid<Arg3>()) |
| os << ", " << dataTypeNameOf<Arg3>() << " " << paramNames.d; |
| os << ")\n{\n"; |
| |
| for (size_t ndx = 0; ndx < m_body.size(); ++ndx) |
| os << *m_body[ndx]; |
| os << "return " << *m_ret << ";\n"; |
| os << "}\n"; |
| } |
| |
| IRet doApply (const EvalContext& ctx, |
| const IArgs& args) const |
| { |
| Environment funEnv; |
| IArgs& mutArgs = const_cast<IArgs&>(args); |
| IRet ret; |
| |
| initialize(); |
| |
| funEnv.bind(*m_var0, args.a); |
| funEnv.bind(*m_var1, args.b); |
| funEnv.bind(*m_var2, args.c); |
| funEnv.bind(*m_var3, args.d); |
| |
| { |
| EvalContext funCtx(ctx.format, ctx.floatPrecision, funEnv, ctx.callDepth); |
| |
| for (size_t ndx = 0; ndx < m_body.size(); ++ndx) |
| m_body[ndx]->execute(funCtx); |
| |
| ret = m_ret->evaluate(funCtx); |
| } |
| |
| // \todo [lauri] Store references instead of values in environment |
| const_cast<IArg0&>(mutArgs.a) = funEnv.lookup(*m_var0); |
| const_cast<IArg1&>(mutArgs.b) = funEnv.lookup(*m_var1); |
| const_cast<IArg2&>(mutArgs.c) = funEnv.lookup(*m_var2); |
| const_cast<IArg3&>(mutArgs.d) = funEnv.lookup(*m_var3); |
| |
| return ret; |
| } |
| |
| void doGetUsedFuncs (FuncSet& dst) const |
| { |
| initialize(); |
| if (dst.insert(this).second) |
| { |
| for (size_t ndx = 0; ndx < m_body.size(); ++ndx) |
| m_body[ndx]->getUsedFuncs(dst); |
| m_ret->getUsedFuncs(dst); |
| } |
| } |
| |
| virtual ExprP<Ret> doExpand (ExpandContext& ctx, const ArgExprs& args_) const = 0; |
| |
| // These are transparently initialized when first needed. They cannot be |
| // initialized in the constructor because they depend on the doExpand |
| // method of the subclass. |
| |
| mutable VariableP<Arg0> m_var0; |
| mutable VariableP<Arg1> m_var1; |
| mutable VariableP<Arg2> m_var2; |
| mutable VariableP<Arg3> m_var3; |
| mutable vector<StatementP> m_body; |
| mutable ExprP<Ret> m_ret; |
| |
| private: |
| |
| void initialize (void) const |
| { |
| if (!m_ret) |
| { |
| const ParamNames& paramNames = this->getParamNames(); |
| Counter symCounter; |
| ExpandContext ctx (symCounter); |
| ArgExprs args; |
| |
| args.a = m_var0 = variable<Arg0>(paramNames.a); |
| args.b = m_var1 = variable<Arg1>(paramNames.b); |
| args.c = m_var2 = variable<Arg2>(paramNames.c); |
| args.d = m_var3 = variable<Arg3>(paramNames.d); |
| |
| m_ret = this->doExpand(ctx, args); |
| m_body = ctx.getStatements(); |
| } |
| } |
| }; |
| |
| template <typename Sig> |
| class PrimitiveFunc : public Func<Sig> |
| { |
| public: |
| typedef typename PrimitiveFunc::Ret Ret; |
| typedef typename PrimitiveFunc::ArgExprs ArgExprs; |
| |
| protected: |
| void doPrintDefinition (ostream&) const {} |
| void doGetUsedFuncs (FuncSet&) const {} |
| }; |
| |
| template <typename T> |
| class Cond : public PrimitiveFunc<Signature<T, bool, T, T> > |
| { |
| public: |
| typedef typename Cond::IArgs IArgs; |
| typedef typename Cond::IRet IRet; |
| |
| string getName (void) const |
| { |
| return "_cond"; |
| } |
| |
| protected: |
| |
| void doPrint (ostream& os, const BaseArgExprs& args) const |
| { |
| os << "(" << *args[0] << " ? " << *args[1] << " : " << *args[2] << ")"; |
| } |
| |
| IRet doApply (const EvalContext&, const IArgs& iargs)const |
| { |
| IRet ret; |
| |
| if (iargs.a.contains(true)) |
| ret = unionIVal<T>(ret, iargs.b); |
| |
| if (iargs.a.contains(false)) |
| ret = unionIVal<T>(ret, iargs.c); |
| |
| return ret; |
| } |
| }; |
| |
| template <typename T> |
| class CompareOperator : public PrimitiveFunc<Signature<bool, T, T> > |
| { |
| public: |
| typedef typename CompareOperator::IArgs IArgs; |
| typedef typename CompareOperator::IArg0 IArg0; |
| typedef typename CompareOperator::IArg1 IArg1; |
| typedef typename CompareOperator::IRet IRet; |
| |
| protected: |
| void doPrint (ostream& os, const BaseArgExprs& args) const |
| { |
| os << "(" << *args[0] << getSymbol() << *args[1] << ")"; |
| } |
| |
| Interval doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| const IArg0& arg0 = iargs.a; |
| const IArg1& arg1 = iargs.b; |
| IRet ret; |
| |
| if (canSucceed(arg0, arg1)) |
| ret |= true; |
| if (canFail(arg0, arg1)) |
| ret |= false; |
| |
| return ret; |
| } |
| |
| virtual string getSymbol (void) const = 0; |
| virtual bool canSucceed (const IArg0&, const IArg1&) const = 0; |
| virtual bool canFail (const IArg0&, const IArg1&) const = 0; |
| }; |
| |
| template <typename T> |
| class LessThan : public CompareOperator<T> |
| { |
| public: |
| string getName (void) const { return "lessThan"; } |
| |
| protected: |
| string getSymbol (void) const { return "<"; } |
| |
| bool canSucceed (const Interval& a, const Interval& b) const |
| { |
| return (a.lo() < b.hi()); |
| } |
| |
| bool canFail (const Interval& a, const Interval& b) const |
| { |
| return !(a.hi() < b.lo()); |
| } |
| }; |
| |
| template <typename T> |
| ExprP<bool> operator< (const ExprP<T>& a, const ExprP<T>& b) |
| { |
| return app<LessThan<T> >(a, b); |
| } |
| |
| template <typename T> |
| ExprP<T> cond (const ExprP<bool>& test, |
| const ExprP<T>& consequent, |
| const ExprP<T>& alternative) |
| { |
| return app<Cond<T> >(test, consequent, alternative); |
| } |
| |
| /*--------------------------------------------------------------------*//*! |
| * |
| * @} |
| * |
| *//*--------------------------------------------------------------------*/ |
| |
| class FloatFunc1 : public PrimitiveFunc<Signature<float, float> > |
| { |
| protected: |
| Interval doApply (const EvalContext& ctx, const IArgs& iargs) const |
| { |
| return this->applyMonotone(ctx, iargs.a); |
| } |
| |
| Interval applyMonotone (const EvalContext& ctx, const Interval& iarg0) const |
| { |
| Interval ret; |
| |
| TCU_INTERVAL_APPLY_MONOTONE1(ret, arg0, iarg0, val, |
| TCU_SET_INTERVAL(val, point, |
| point = this->applyPoint(ctx, arg0))); |
| |
| ret |= innerExtrema(ctx, iarg0); |
| ret &= (this->getCodomain() | TCU_NAN); |
| |
| return ctx.format.convert(ret); |
| } |
| |
| virtual Interval innerExtrema (const EvalContext&, const Interval&) const |
| { |
| return Interval(); // empty interval, i.e. no extrema |
| } |
| |
| virtual Interval applyPoint (const EvalContext& ctx, double arg0) const |
| { |
| const double exact = this->applyExact(arg0); |
| const double prec = this->precision(ctx, exact, arg0); |
| const double wprec = this->warningPrecision(ctx, exact, arg0); |
| Interval ioutput = exact + Interval(-prec, prec); |
| ioutput.warning(exact - wprec, exact + wprec); |
| return ioutput; |
| } |
| |
| virtual double applyExact (double) const |
| { |
| TCU_THROW(InternalError, "Cannot apply"); |
| } |
| |
| virtual Interval getCodomain (void) const |
| { |
| return Interval::unbounded(true); |
| } |
| |
| virtual double precision (const EvalContext& ctx, double, double) const = 0; |
| |
| virtual double warningPrecision (const EvalContext& ctx, double exact, double arg0) const |
| { |
| return precision(ctx, exact, arg0); |
| } |
| |
| }; |
| |
| class CFloatFunc1 : public FloatFunc1 |
| { |
| public: |
| CFloatFunc1 (const string& name, DoubleFunc1& func) |
| : m_name(name), m_func(func) {} |
| |
| string getName (void) const { return m_name; } |
| |
| protected: |
| double applyExact (double x) const { return m_func(x); } |
| |
| const string m_name; |
| DoubleFunc1& m_func; |
| }; |
| |
| class FloatFunc2 : public PrimitiveFunc<Signature<float, float, float> > |
| { |
| protected: |
| Interval doApply (const EvalContext& ctx, const IArgs& iargs) const |
| { |
| return this->applyMonotone(ctx, iargs.a, iargs.b); |
| } |
| |
| Interval applyMonotone (const EvalContext& ctx, |
| const Interval& xi, |
| const Interval& yi) const |
| { |
| Interval reti; |
| |
| TCU_INTERVAL_APPLY_MONOTONE2(reti, x, xi, y, yi, ret, |
| TCU_SET_INTERVAL(ret, point, |
| point = this->applyPoint(ctx, x, y))); |
| reti |= innerExtrema(ctx, xi, yi); |
| reti &= (this->getCodomain() | TCU_NAN); |
| |
| return ctx.format.convert(reti); |
| } |
| |
| virtual Interval innerExtrema (const EvalContext&, |
| const Interval&, |
| const Interval&) const |
| { |
| return Interval(); // empty interval, i.e. no extrema |
| } |
| |
| virtual Interval applyPoint (const EvalContext& ctx, |
| double x, |
| double y) const |
| { |
| const double exact = this->applyExact(x, y); |
| const double prec = this->precision(ctx, exact, x, y); |
| |
| return exact + Interval(-prec, prec); |
| } |
| |
| virtual double applyExact (double, double) const |
| { |
| TCU_THROW(InternalError, "Cannot apply"); |
| } |
| |
| virtual Interval getCodomain (void) const |
| { |
| return Interval::unbounded(true); |
| } |
| |
| virtual double precision (const EvalContext& ctx, |
| double ret, |
| double x, |
| double y) const = 0; |
| }; |
| |
| class CFloatFunc2 : public FloatFunc2 |
| { |
| public: |
| CFloatFunc2 (const string& name, |
| DoubleFunc2& func) |
| : m_name(name) |
| , m_func(func) |
| { |
| } |
| |
| string getName (void) const { return m_name; } |
| |
| protected: |
| double applyExact (double x, double y) const { return m_func(x, y); } |
| |
| const string m_name; |
| DoubleFunc2& m_func; |
| }; |
| |
| class InfixOperator : public FloatFunc2 |
| { |
| protected: |
| virtual string getSymbol (void) const = 0; |
| |
| void doPrint (ostream& os, const BaseArgExprs& args) const |
| { |
| os << "(" << *args[0] << " " << getSymbol() << " " << *args[1] << ")"; |
| } |
| |
| Interval applyPoint (const EvalContext& ctx, |
| double x, |
| double y) const |
| { |
| const double exact = this->applyExact(x, y); |
| |
| // Allow either representable number on both sides of the exact value, |
| // but require exactly representable values to be preserved. |
| return ctx.format.roundOut(exact, !deIsInf(x) && !deIsInf(y)); |
| } |
| |
| double precision (const EvalContext&, double, double, double) const |
| { |
| return 0.0; |
| } |
| }; |
| |
| class FloatFunc3 : public PrimitiveFunc<Signature<float, float, float, float> > |
| { |
| protected: |
| Interval doApply (const EvalContext& ctx, const IArgs& iargs) const |
| { |
| return this->applyMonotone(ctx, iargs.a, iargs.b, iargs.c); |
| } |
| |
| Interval applyMonotone (const EvalContext& ctx, |
| const Interval& xi, |
| const Interval& yi, |
| const Interval& zi) const |
| { |
| Interval reti; |
| TCU_INTERVAL_APPLY_MONOTONE3(reti, x, xi, y, yi, z, zi, ret, |
| TCU_SET_INTERVAL(ret, point, |
| point = this->applyPoint(ctx, x, y, z))); |
| return ctx.format.convert(reti); |
| } |
| |
| virtual Interval applyPoint (const EvalContext& ctx, |
| double x, |
| double y, |
| double z) const |
| { |
| const double exact = this->applyExact(x, y, z); |
| const double prec = this->precision(ctx, exact, x, y, z); |
| return exact + Interval(-prec, prec); |
| } |
| |
| virtual double applyExact (double, double, double) const |
| { |
| TCU_THROW(InternalError, "Cannot apply"); |
| } |
| |
| virtual double precision (const EvalContext& ctx, |
| double result, |
| double x, |
| double y, |
| double z) const = 0; |
| }; |
| |
| // We define syntactic sugar functions for expression constructors. Since |
| // these have the same names as ordinary mathematical operations (sin, log |
| // etc.), it's better to give them a dedicated namespace. |
| namespace Functions |
| { |
| |
| using namespace tcu; |
| |
| class Add : public InfixOperator |
| { |
| public: |
| string getName (void) const { return "add"; } |
| string getSymbol (void) const { return "+"; } |
| |
| Interval doApply (const EvalContext& ctx, |
| const IArgs& iargs) const |
| { |
| // Fast-path for common case |
| if (iargs.a.isOrdinary() && iargs.b.isOrdinary()) |
| { |
| Interval ret; |
| TCU_SET_INTERVAL_BOUNDS(ret, sum, |
| sum = iargs.a.lo() + iargs.b.lo(), |
| sum = iargs.a.hi() + iargs.b.hi()); |
| return ctx.format.convert(ctx.format.roundOut(ret, true)); |
| } |
| return this->applyMonotone(ctx, iargs.a, iargs.b); |
| } |
| |
| protected: |
| double applyExact (double x, double y) const { return x + y; } |
| }; |
| |
| class Mul : public InfixOperator |
| { |
| public: |
| string getName (void) const { return "mul"; } |
| string getSymbol (void) const { return "*"; } |
| |
| Interval doApply (const EvalContext& ctx, const IArgs& iargs) const |
| { |
| Interval a = iargs.a; |
| Interval b = iargs.b; |
| |
| // Fast-path for common case |
| if (a.isOrdinary() && b.isOrdinary()) |
| { |
| Interval ret; |
| if (a.hi() < 0) |
| { |
| a = -a; |
| b = -b; |
| } |
| if (a.lo() >= 0 && b.lo() >= 0) |
| { |
| TCU_SET_INTERVAL_BOUNDS(ret, prod, |
| prod = iargs.a.lo() * iargs.b.lo(), |
| prod = iargs.a.hi() * iargs.b.hi()); |
| return ctx.format.convert(ctx.format.roundOut(ret, true)); |
| } |
| if (a.lo() >= 0 && b.hi() <= 0) |
| { |
| TCU_SET_INTERVAL_BOUNDS(ret, prod, |
| prod = iargs.a.hi() * iargs.b.lo(), |
| prod = iargs.a.lo() * iargs.b.hi()); |
| return ctx.format.convert(ctx.format.roundOut(ret, true)); |
| } |
| } |
| return this->applyMonotone(ctx, iargs.a, iargs.b); |
| } |
| |
| protected: |
| double applyExact (double x, double y) const { return x * y; } |
| |
| Interval innerExtrema(const EvalContext&, const Interval& xi, const Interval& yi) const |
| { |
| if (((xi.contains(-TCU_INFINITY) || xi.contains(TCU_INFINITY)) && yi.contains(0.0)) || |
| ((yi.contains(-TCU_INFINITY) || yi.contains(TCU_INFINITY)) && xi.contains(0.0))) |
| return Interval(TCU_NAN); |
| |
| return Interval(); |
| } |
| }; |
| |
| class Sub : public InfixOperator |
| { |
| public: |
| string getName (void) const { return "sub"; } |
| string getSymbol (void) const { return "-"; } |
| |
| Interval doApply (const EvalContext& ctx, const IArgs& iargs) const |
| { |
| // Fast-path for common case |
| if (iargs.a.isOrdinary() && iargs.b.isOrdinary()) |
| { |
| Interval ret; |
| |
| TCU_SET_INTERVAL_BOUNDS(ret, diff, |
| diff = iargs.a.lo() - iargs.b.hi(), |
| diff = iargs.a.hi() - iargs.b.lo()); |
| return ctx.format.convert(ctx.format.roundOut(ret, true)); |
| |
| } |
| else |
| { |
| return this->applyMonotone(ctx, iargs.a, iargs.b); |
| } |
| } |
| |
| protected: |
| double applyExact (double x, double y) const { return x - y; } |
| }; |
| |
| class Negate : public FloatFunc1 |
| { |
| public: |
| string getName (void) const { return "_negate"; } |
| void doPrint (ostream& os, const BaseArgExprs& args) const { os << "-" << *args[0]; } |
| |
| protected: |
| double precision (const EvalContext&, double, double) const { return 0.0; } |
| double applyExact (double x) const { return -x; } |
| }; |
| |
| class Div : public InfixOperator |
| { |
| public: |
| string getName (void) const { return "div"; } |
| |
| protected: |
| string getSymbol (void) const { return "/"; } |
| |
| Interval innerExtrema (const EvalContext&, |
| const Interval& nom, |
| const Interval& den) const |
| { |
| Interval ret; |
| |
| if (den.contains(0.0)) |
| { |
| if (nom.contains(0.0)) |
| ret |= TCU_NAN; |
| |
| if (nom.lo() < 0.0 || nom.hi() > 0.0) |
| ret |= Interval::unbounded(); |
| } |
| |
| return ret; |
| } |
| |
| double applyExact (double x, double y) const { return x / y; } |
| |
| Interval applyPoint (const EvalContext& ctx, double x, double y) const |
| { |
| Interval ret = FloatFunc2::applyPoint(ctx, x, y); |
| |
| if (!deIsInf(x) && !deIsInf(y) && y != 0.0) |
| { |
| const Interval dst = ctx.format.convert(ret); |
| if (dst.contains(-TCU_INFINITY)) ret |= -ctx.format.getMaxValue(); |
| if (dst.contains(+TCU_INFINITY)) ret |= +ctx.format.getMaxValue(); |
| } |
| |
| return ret; |
| } |
| |
| double precision (const EvalContext& ctx, double ret, double, double den) const |
| { |
| const FloatFormat& fmt = ctx.format; |
| |
| // \todo [2014-03-05 lauri] Check that the limits in GLSL 3.10 are actually correct. |
| // For now, we assume that division's precision is 2.5 ULP when the value is within |
| // [2^MINEXP, 2^MAXEXP-1] |
| |
| if (den == 0.0) |
| return 0.0; // Result must be exactly inf |
| else if (de::inBounds(deAbs(den), |
| deLdExp(1.0, fmt.getMinExp()), |
| deLdExp(1.0, fmt.getMaxExp() - 1))) |
| return fmt.ulp(ret, 2.5); |
| else |
| return TCU_INFINITY; // Can be any number, but must be a number. |
| } |
| }; |
| |
| class InverseSqrt : public FloatFunc1 |
| { |
| public: |
| string getName (void) const { return "inversesqrt"; } |
| |
| protected: |
| double applyExact (double x) const { return 1.0 / deSqrt(x); } |
| |
| double precision (const EvalContext& ctx, double ret, double x) const |
| { |
| return x <= 0 ? TCU_NAN : ctx.format.ulp(ret, 2.0); |
| } |
| |
| Interval getCodomain (void) const |
| { |
| return Interval(0.0, TCU_INFINITY); |
| } |
| }; |
| |
| class ExpFunc : public CFloatFunc1 |
| { |
| public: |
| ExpFunc (const string& name, DoubleFunc1& func) |
| : CFloatFunc1(name, func) {} |
| protected: |
| double precision (const EvalContext& ctx, double ret, double x) const |
| { |
| switch (ctx.floatPrecision) |
| { |
| case glu::PRECISION_HIGHP: |
| return ctx.format.ulp(ret, 3.0 + 2.0 * deAbs(x)); |
| case glu::PRECISION_MEDIUMP: |
| return ctx.format.ulp(ret, 2.0 + 2.0 * deAbs(x)); |
| case glu::PRECISION_LOWP: |
| return ctx.format.ulp(ret, 2.0); |
| default: |
| DE_FATAL("Impossible"); |
| } |
| return 0; |
| } |
| |
| Interval getCodomain (void) const |
| { |
| return Interval(0.0, TCU_INFINITY); |
| } |
| }; |
| |
| class Exp2 : public ExpFunc { public: Exp2 (void) : ExpFunc("exp2", deExp2) {} }; |
| class Exp : public ExpFunc { public: Exp (void) : ExpFunc("exp", deExp) {} }; |
| |
| ExprP<float> exp2 (const ExprP<float>& x) { return app<Exp2>(x); } |
| ExprP<float> exp (const ExprP<float>& x) { return app<Exp>(x); } |
| |
| class LogFunc : public CFloatFunc1 |
| { |
| public: |
| LogFunc (const string& name, DoubleFunc1& func) |
| : CFloatFunc1(name, func) {} |
| |
| protected: |
| double precision (const EvalContext& ctx, double ret, double x) const |
| { |
| if (x <= 0) |
| return TCU_NAN; |
| |
| switch (ctx.floatPrecision) |
| { |
| case glu::PRECISION_HIGHP: |
| return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -21) : ctx.format.ulp(ret, 3.0); |
| case glu::PRECISION_MEDIUMP: |
| return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -7) : ctx.format.ulp(ret, 2.0); |
| case glu::PRECISION_LOWP: |
| return ctx.format.ulp(ret, 2.0); |
| default: |
| DE_FATAL("Impossible"); |
| } |
| |
| return 0; |
| } |
| |
| // OpenGL API Issue #57 "Clarifying the required ULP precision for GLSL built-in log()". Agreed that |
| // implementations will be allowed 4 ULPs for HIGHP Log/Log2, but CTS should generate a quality warning. |
| double warningPrecision(const EvalContext& ctx, double ret, double x) const |
| { |
| if (ctx.floatPrecision == glu::PRECISION_HIGHP && x > 0) |
| { |
| return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -21) : ctx.format.ulp(ret, 4.0); |
| } |
| else |
| { |
| return precision(ctx, ret, x); |
| } |
| } |
| |
| }; |
| |
| class Log2 : public LogFunc { public: Log2 (void) : LogFunc("log2", deLog2) {} }; |
| class Log : public LogFunc { public: Log (void) : LogFunc("log", deLog) {} }; |
| |
| ExprP<float> log2 (const ExprP<float>& x) { return app<Log2>(x); } |
| ExprP<float> log (const ExprP<float>& x) { return app<Log>(x); } |
| |
| #define DEFINE_CONSTRUCTOR1(CLASS, TRET, NAME, T0) \ |
| ExprP<TRET> NAME (const ExprP<T0>& arg0) { return app<CLASS>(arg0); } |
| |
| #define DEFINE_DERIVED1(CLASS, TRET, NAME, T0, ARG0, EXPANSION) \ |
| class CLASS : public DerivedFunc<Signature<TRET, T0> > /* NOLINT(CLASS) */ \ |
| { \ |
| public: \ |
| string getName (void) const { return #NAME; } \ |
| \ |
| protected: \ |
| ExprP<TRET> doExpand (ExpandContext&, \ |
| const CLASS::ArgExprs& args_) const \ |
| { \ |
| const ExprP<float>& ARG0 = args_.a; \ |
| return EXPANSION; \ |
| } \ |
| }; \ |
| DEFINE_CONSTRUCTOR1(CLASS, TRET, NAME, T0) |
| |
| #define DEFINE_DERIVED_FLOAT1(CLASS, NAME, ARG0, EXPANSION) \ |
| DEFINE_DERIVED1(CLASS, float, NAME, float, ARG0, EXPANSION) |
| |
| #define DEFINE_CONSTRUCTOR2(CLASS, TRET, NAME, T0, T1) \ |
| ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1) \ |
| { \ |
| return app<CLASS>(arg0, arg1); \ |
| } |
| |
| #define DEFINE_DERIVED2(CLASS, TRET, NAME, T0, Arg0, T1, Arg1, EXPANSION) \ |
| class CLASS : public DerivedFunc<Signature<TRET, T0, T1> > /* NOLINT(CLASS) */ \ |
| { \ |
| public: \ |
| string getName (void) const { return #NAME; } \ |
| \ |
| protected: \ |
| ExprP<TRET> doExpand (ExpandContext&, const ArgExprs& args_) const \ |
| { \ |
| const ExprP<T0>& Arg0 = args_.a; \ |
| const ExprP<T1>& Arg1 = args_.b; \ |
| return EXPANSION; \ |
| } \ |
| }; \ |
| DEFINE_CONSTRUCTOR2(CLASS, TRET, NAME, T0, T1) |
| |
| #define DEFINE_DERIVED_FLOAT2(CLASS, NAME, Arg0, Arg1, EXPANSION) \ |
| DEFINE_DERIVED2(CLASS, float, NAME, float, Arg0, float, Arg1, EXPANSION) |
| |
| #define DEFINE_CONSTRUCTOR3(CLASS, TRET, NAME, T0, T1, T2) \ |
| ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1, const ExprP<T2>& arg2) \ |
| { \ |
| return app<CLASS>(arg0, arg1, arg2); \ |
| } |
| |
| #define DEFINE_DERIVED3(CLASS, TRET, NAME, T0, ARG0, T1, ARG1, T2, ARG2, EXPANSION) \ |
| class CLASS : public DerivedFunc<Signature<TRET, T0, T1, T2> > /* NOLINT(CLASS) */ \ |
| { \ |
| public: \ |
| string getName (void) const { return #NAME; } \ |
| \ |
| protected: \ |
| ExprP<TRET> doExpand (ExpandContext&, const ArgExprs& args_) const \ |
| { \ |
| const ExprP<T0>& ARG0 = args_.a; \ |
| const ExprP<T1>& ARG1 = args_.b; \ |
| const ExprP<T2>& ARG2 = args_.c; \ |
| return EXPANSION; \ |
| } \ |
| }; \ |
| DEFINE_CONSTRUCTOR3(CLASS, TRET, NAME, T0, T1, T2) |
| |
| #define DEFINE_DERIVED_FLOAT3(CLASS, NAME, ARG0, ARG1, ARG2, EXPANSION) \ |
| DEFINE_DERIVED3(CLASS, float, NAME, float, ARG0, float, ARG1, float, ARG2, EXPANSION) |
| |
| #define DEFINE_CONSTRUCTOR4(CLASS, TRET, NAME, T0, T1, T2, T3) \ |
| ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1, \ |
| const ExprP<T2>& arg2, const ExprP<T3>& arg3) \ |
| { \ |
| return app<CLASS>(arg0, arg1, arg2, arg3); \ |
| } |
| |
| DEFINE_DERIVED_FLOAT1(Sqrt, sqrt, x, constant(1.0f) / app<InverseSqrt>(x)); |
| DEFINE_DERIVED_FLOAT2(Pow, pow, x, y, exp2(y * log2(x))); |
| DEFINE_DERIVED_FLOAT1(Radians, radians, d, (constant(DE_PI) / constant(180.0f)) * d); |
| DEFINE_DERIVED_FLOAT1(Degrees, degrees, r, (constant(180.0f) / constant(DE_PI)) * r); |
| |
| class TrigFunc : public CFloatFunc1 |
| { |
| public: |
| TrigFunc (const string& name, |
| DoubleFunc1& func, |
| const Interval& loEx, |
| const Interval& hiEx) |
| : CFloatFunc1 (name, func) |
| , m_loExtremum (loEx) |
| , m_hiExtremum (hiEx) {} |
| |
| protected: |
| Interval innerExtrema (const EvalContext&, const Interval& angle) const |
| { |
| const double lo = angle.lo(); |
| const double hi = angle.hi(); |
| const int loSlope = doGetSlope(lo); |
| const int hiSlope = doGetSlope(hi); |
| |
| // Detect the high and low values the function can take between the |
| // interval endpoints. |
| if (angle.length() >= 2.0 * DE_PI_DOUBLE) |
| { |
| // The interval is longer than a full cycle, so it must get all possible values. |
| return m_hiExtremum | m_loExtremum; |
| } |
| else if (loSlope == 1 && hiSlope == -1) |
| { |
| // The slope can change from positive to negative only at the maximum value. |
| return m_hiExtremum; |
| } |
| else if (loSlope == -1 && hiSlope == 1) |
| { |
| // The slope can change from negative to positive only at the maximum value. |
| return m_loExtremum; |
| } |
| else if (loSlope == hiSlope && |
| deIntSign(applyExact(hi) - applyExact(lo)) * loSlope == -1) |
| { |
| // The slope has changed twice between the endpoints, so both extrema are included. |
| return m_hiExtremum | m_loExtremum; |
| } |
| |
| return Interval(); |
| } |
| |
| Interval getCodomain (void) const |
| { |
| // Ensure that result is always within [-1, 1], or NaN (for +-inf) |
| return Interval(-1.0, 1.0) | TCU_NAN; |
| } |
| |
| double precision (const EvalContext& ctx, double ret, double arg) const |
| { |
| if (ctx.floatPrecision == glu::PRECISION_HIGHP) |
| { |
| // Use precision from OpenCL fast relaxed math |
| if (-DE_PI_DOUBLE <= arg && arg <= DE_PI_DOUBLE) |
| { |
| return deLdExp(1.0, -11); |
| } |
| else |
| { |
| // "larger otherwise", let's pick |x| * 2^-12 , which is slightly over |
| // 2^-11 at x == pi. |
| return deLdExp(deAbs(arg), -12); |
| } |
| } |
| else if (ctx.floatPrecision == glu::PRECISION_MEDIUMP) |
| { |
| if (-DE_PI_DOUBLE <= arg && arg <= DE_PI_DOUBLE) |
| { |
| // from OpenCL half-float extension specification |
| return ctx.format.ulp(ret, 2.0); |
| } |
| else |
| { |
| // |x| * 2^-10, slightly larger than 2 ULP at x == pi |
| return deLdExp(deAbs(arg), -10); |
| } |
| } |
| else |
| { |
| DE_ASSERT(ctx.floatPrecision == glu::PRECISION_LOWP); |
| |
| // from OpenCL half-float extension specification |
| return ctx.format.ulp(ret, 2.0); |
| } |
| } |
| |
| virtual int doGetSlope (double angle) const = 0; |
| |
| Interval m_loExtremum; |
| Interval m_hiExtremum; |
| }; |
| |
| class Sin : public TrigFunc |
| { |
| public: |
| Sin (void) : TrigFunc("sin", deSin, -1.0, 1.0) {} |
| |
| protected: |
| int doGetSlope (double angle) const { return deIntSign(deCos(angle)); } |
| }; |
| |
| ExprP<float> sin (const ExprP<float>& x) { return app<Sin>(x); } |
| |
| class Cos : public TrigFunc |
| { |
| public: |
| Cos (void) : TrigFunc("cos", deCos, -1.0, 1.0) {} |
| |
| protected: |
| int doGetSlope (double angle) const { return -deIntSign(deSin(angle)); } |
| }; |
| |
| ExprP<float> cos (const ExprP<float>& x) { return app<Cos>(x); } |
| |
| DEFINE_DERIVED_FLOAT1(Tan, tan, x, sin(x) * (constant(1.0f) / cos(x))); |
| |
| class ASin : public CFloatFunc1 |
| { |
| public: |
| ASin (void) : CFloatFunc1("asin", deAsin) {} |
| |
| protected: |
| double precision (const EvalContext& ctx, double, double x) const |
| { |
| if (!de::inBounds(x, -1.0, 1.0)) |
| return TCU_NAN; |
| |
| if (ctx.floatPrecision == glu::PRECISION_HIGHP) |
| { |
| // Absolute error of 2^-11 |
| return deLdExp(1.0, -11); |
| } |
| else |
| { |
| // Absolute error of 2^-8 |
| return deLdExp(1.0, -8); |
| } |
| |
| } |
| }; |
| |
| class ArcTrigFunc : public CFloatFunc1 |
| { |
| public: |
| ArcTrigFunc (const string& name, |
| DoubleFunc1& func, |
| double precisionULPs, |
| const Interval& domain, |
| const Interval& codomain) |
| : CFloatFunc1 (name, func) |
| , m_precision (precisionULPs) |
| , m_domain (domain) |
| , m_codomain (codomain) {} |
| |
| protected: |
| double precision (const EvalContext& ctx, double ret, double x) const |
| { |
| if (!m_domain.contains(x)) |
| return TCU_NAN; |
| |
| if (ctx.floatPrecision == glu::PRECISION_HIGHP) |
| { |
| // Use OpenCL's fast relaxed math precision |
| return ctx.format.ulp(ret, m_precision); |
| } |
| else |
| { |
| // Use OpenCL half-float spec |
| return ctx.format.ulp(ret, 2.0); |
| } |
| } |
| |
| // We could implement getCodomain with m_codomain, but choose not to, |
| // because it seems too strict with trascendental constants like pi. |
| |
| const double m_precision; |
| const Interval m_domain; |
| const Interval m_codomain; |
| }; |
| |
| class ACos : public ArcTrigFunc |
| { |
| public: |
| ACos (void) : ArcTrigFunc("acos", deAcos, 4096.0, |
| Interval(-1.0, 1.0), |
| Interval(0.0, DE_PI_DOUBLE)) {} |
| }; |
| |
| class ATan : public ArcTrigFunc |
| { |
| public: |
| ATan (void) : ArcTrigFunc("atan", deAtanOver, 4096.0, |
| Interval::unbounded(), |
| Interval(-DE_PI_DOUBLE * 0.5, DE_PI_DOUBLE * 0.5)) {} |
| }; |
| |
| class ATan2 : public CFloatFunc2 |
| { |
| public: |
| ATan2 (void) : CFloatFunc2 ("atan", deAtan2) {} |
| |
| protected: |
| Interval innerExtrema (const EvalContext& ctx, |
| const Interval& yi, |
| const Interval& xi) const |
| { |
| Interval ret; |
| |
| if (yi.contains(0.0)) |
| { |
| if (xi.contains(0.0)) |
| ret |= TCU_NAN; |
| if (xi.intersects(Interval(-TCU_INFINITY, 0.0))) |
| ret |= Interval(-DE_PI_DOUBLE, DE_PI_DOUBLE); |
| } |
| |
| if (ctx.format.hasInf() != YES && (!yi.isFinite() || !xi.isFinite())) |
| { |
| // Infinities may not be supported, allow anything, including NaN |
| ret |= TCU_NAN; |
| } |
| |
| return ret; |
| } |
| |
| double precision (const EvalContext& ctx, double ret, double, double) const |
| { |
| if (ctx.floatPrecision == glu::PRECISION_HIGHP) |
| return ctx.format.ulp(ret, 4096.0); |
| else |
| return ctx.format.ulp(ret, 2.0); |
| } |
| |
| // Codomain could be [-pi, pi], but that would probably be too strict. |
| }; |
| |
| DEFINE_DERIVED_FLOAT1(Sinh, sinh, x, (exp(x) - exp(-x)) / constant(2.0f)); |
| DEFINE_DERIVED_FLOAT1(Cosh, cosh, x, (exp(x) + exp(-x)) / constant(2.0f)); |
| DEFINE_DERIVED_FLOAT1(Tanh, tanh, x, sinh(x) / cosh(x)); |
| |
| // These are not defined as derived forms in the GLSL ES spec, but |
| // that gives us a reasonable precision. |
| DEFINE_DERIVED_FLOAT1(ASinh, asinh, x, log(x + sqrt(x * x + constant(1.0f)))); |
| DEFINE_DERIVED_FLOAT1(ACosh, acosh, x, log(x + sqrt(alternatives((x + constant(1.0f)) * (x - constant(1.0f)), |
| (x*x - constant(1.0f)))))); |
| DEFINE_DERIVED_FLOAT1(ATanh, atanh, x, constant(0.5f) * log((constant(1.0f) + x) / |
| (constant(1.0f) - x))); |
| |
| template <typename T> |
| class GetComponent : public PrimitiveFunc<Signature<typename T::Element, T, int> > |
| { |
| public: |
| typedef typename GetComponent::IRet IRet; |
| |
| string getName (void) const { return "_getComponent"; } |
| |
| void print (ostream& os, |
| const BaseArgExprs& args) const |
| { |
| os << *args[0] << "[" << *args[1] << "]"; |
| } |
| |
| protected: |
| IRet doApply (const EvalContext&, |
| const typename GetComponent::IArgs& iargs) const |
| { |
| IRet ret; |
| |
| for (int compNdx = 0; compNdx < T::SIZE; ++compNdx) |
| { |
| if (iargs.b.contains(compNdx)) |
| ret = unionIVal<typename T::Element>(ret, iargs.a[compNdx]); |
| } |
| |
| return ret; |
| } |
| |
| }; |
| |
| template <typename T> |
| ExprP<typename T::Element> getComponent (const ExprP<T>& container, int ndx) |
| { |
| DE_ASSERT(0 <= ndx && ndx < T::SIZE); |
| return app<GetComponent<T> >(container, constant(ndx)); |
| } |
| |
| template <typename T> string vecNamePrefix (void); |
| template <> string vecNamePrefix<float> (void) { return ""; } |
| template <> string vecNamePrefix<int> (void) { return "i"; } |
| template <> string vecNamePrefix<bool> (void) { return "b"; } |
| |
| template <typename T, int Size> |
| string vecName (void) { return vecNamePrefix<T>() + "vec" + de::toString(Size); } |
| |
| template <typename T, int Size> class GenVec; |
| |
| template <typename T> |
| class GenVec<T, 1> : public DerivedFunc<Signature<T, T> > |
| { |
| public: |
| typedef typename GenVec<T, 1>::ArgExprs ArgExprs; |
| |
| string getName (void) const |
| { |
| return "_" + vecName<T, 1>(); |
| } |
| |
| protected: |
| |
| ExprP<T> doExpand (ExpandContext&, const ArgExprs& args) const { return args.a; } |
| }; |
| |
| template <typename T> |
| class GenVec<T, 2> : public PrimitiveFunc<Signature<Vector<T, 2>, T, T> > |
| { |
| public: |
| typedef typename GenVec::IRet IRet; |
| typedef typename GenVec::IArgs IArgs; |
| |
| string getName (void) const |
| { |
| return vecName<T, 2>(); |
| } |
| |
| protected: |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| return IRet(iargs.a, iargs.b); |
| } |
| }; |
| |
| template <typename T> |
| class GenVec<T, 3> : public PrimitiveFunc<Signature<Vector<T, 3>, T, T, T> > |
| { |
| public: |
| typedef typename GenVec::IRet IRet; |
| typedef typename GenVec::IArgs IArgs; |
| |
| string getName (void) const |
| { |
| return vecName<T, 3>(); |
| } |
| |
| protected: |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| return IRet(iargs.a, iargs.b, iargs.c); |
| } |
| }; |
| |
| template <typename T> |
| class GenVec<T, 4> : public PrimitiveFunc<Signature<Vector<T, 4>, T, T, T, T> > |
| { |
| public: |
| typedef typename GenVec::IRet IRet; |
| typedef typename GenVec::IArgs IArgs; |
| |
| string getName (void) const { return vecName<T, 4>(); } |
| |
| protected: |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| return IRet(iargs.a, iargs.b, iargs.c, iargs.d); |
| } |
| }; |
| |
| |
| |
| template <typename T, int Rows, int Columns> |
| class GenMat; |
| |
| template <typename T, int Rows> |
| class GenMat<T, Rows, 2> : public PrimitiveFunc< |
| Signature<Matrix<T, Rows, 2>, Vector<T, Rows>, Vector<T, Rows> > > |
| { |
| public: |
| typedef typename GenMat::Ret Ret; |
| typedef typename GenMat::IRet IRet; |
| typedef typename GenMat::IArgs IArgs; |
| |
| string getName (void) const |
| { |
| return dataTypeNameOf<Ret>(); |
| } |
| |
| protected: |
| |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| IRet ret; |
| ret[0] = iargs.a; |
| ret[1] = iargs.b; |
| return ret; |
| } |
| }; |
| |
| template <typename T, int Rows> |
| class GenMat<T, Rows, 3> : public PrimitiveFunc< |
| Signature<Matrix<T, Rows, 3>, Vector<T, Rows>, Vector<T, Rows>, Vector<T, Rows> > > |
| { |
| public: |
| typedef typename GenMat::Ret Ret; |
| typedef typename GenMat::IRet IRet; |
| typedef typename GenMat::IArgs IArgs; |
| |
| string getName (void) const |
| { |
| return dataTypeNameOf<Ret>(); |
| } |
| |
| protected: |
| |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| IRet ret; |
| ret[0] = iargs.a; |
| ret[1] = iargs.b; |
| ret[2] = iargs.c; |
| return ret; |
| } |
| }; |
| |
| template <typename T, int Rows> |
| class GenMat<T, Rows, 4> : public PrimitiveFunc< |
| Signature<Matrix<T, Rows, 4>, |
| Vector<T, Rows>, Vector<T, Rows>, Vector<T, Rows>, Vector<T, Rows> > > |
| { |
| public: |
| typedef typename GenMat::Ret Ret; |
| typedef typename GenMat::IRet IRet; |
| typedef typename GenMat::IArgs IArgs; |
| |
| string getName (void) const |
| { |
| return dataTypeNameOf<Ret>(); |
| } |
| |
| protected: |
| IRet doApply (const EvalContext&, const IArgs& iargs) const |
| { |
| IRet ret; |
| ret[0] = iargs.a; |
| ret[1] = iargs.b; |
| ret[2] = iargs.c; |
| ret[3] = iargs.d; |
| return ret; |
| } |
| }; |
| |
| template <typename T, int Rows> |
| ExprP<Matrix<T, Rows, 2> > mat2 (const ExprP<Vector<T, Rows> >& arg0, |
| const ExprP<Vector<T, Rows> >& arg1) |
| { |
| return app<GenMat<T, Rows, 2> >(arg0, arg1); |
| } |
| |
| template <typename T, int Rows> |
| ExprP<Matrix<T, Rows, 3> > mat3 (const ExprP<Vector<T, Rows> >& arg0, |
| const ExprP<Vector<T, Rows> >& arg1, |
| const ExprP<Vector<T, Rows> >& arg2) |
| { |
| return app<GenMat<T, Rows, 3> >(arg0, arg1, arg2); |
| } |
| |
| template <typename T, int Rows> |
| ExprP<Matrix<T, Rows, 4> > mat4 (const ExprP<Vector<T, Rows> >& arg0, |
| const ExprP<Vector<T, Rows> >& arg1, |
| const ExprP<Vector<T, Rows> >& arg2, |
| const ExprP<Vector<T, Rows> >& arg3) |
| { |
|