demotool/control.hh

461 lines
8.6 KiB
C++
Raw Normal View History

2017-10-14 12:00:47 +02:00
#pragma once
#include "sync.hh"
#include "opast.hh"
2017-10-14 12:00:47 +02:00
namespace ops {
using namespace ebcl;
enum E_OpType
{
OP_END ,
//
OP_CALL ,
OP_RET ,
OP_COND_JUMP ,
//
OP_RES_STACK ,
OP_PUSH ,
OP_POP ,
//
OP_LOAD ,
OP_SLOAD ,
//
OP_FP_LOAD ,
OP_FP_STORE ,
OP_FP_SLOAD ,
OP_FP_SSTORE ,
OP_FP_SSTORE_INT ,
//
OP_FP_CMP ,
OP_FP_ADD ,
OP_FP_SUB ,
OP_FP_MUL ,
OP_FP_DIV ,
OP_FP_NEG ,
OP_FP_INV ,
};
2017-11-12 17:46:47 +01:00
M_LSHIFT_OP( T_StringBuilder , E_OpType );
uint32_t ArgumentsFor( E_OpType op ) noexcept;
int32_t DeltaMainStack( E_OpType op ) noexcept;
int32_t DeltaFPUStack( E_OpType op ) noexcept;
2017-11-12 17:46:47 +01:00
struct T_Op
{
E_OpType op;
T_SRDLocation location;
uint32_t arg0 , arg1;
T_Op( const E_OpType op ,
T_SRDLocation const& location ,
const uint32_t arg0 = 0 ,
const uint32_t arg1 = 0 ) noexcept
: op( op ) , location( location ) ,
arg0( arg0 ) , arg1( arg1 )
{ }
};
2017-11-12 17:46:47 +01:00
M_LSHIFT_OP( T_StringBuilder , T_Op const& );
union T_OpValue
{
int32_t i;
uint32_t u;
float f;
};
struct T_OpProgram
{
T_MultiArray< T_Op > ops; // All operations
uint32_t init , // Index of initialisation function
frame; // Index of frame rendering function
T_Array< T_OpValue > constants; // Constants values
uint32_t nVariables{ 0 }; // Amount of variables
T_Array< T_String > inputs; // Input definitions
uint32_t nPrograms{ 0 } , // Amount of programs
nFramebuffers{ 0 } , // Amount of framebuffers
nPipelines{ 0 } , // Amount of pipelines
nSamplers{ 0 } , // Amount of samplers
nTextures{ 0 }; // Amount of textures
T_Array< T_String > progNames; // GLSL program files
T_Array< T_String > uiStrings; // UI strings for profiling, etc.
};
using P_OpProgram = T_OwnPtr< T_OpProgram >;
struct T_OpContext
{
T_OpProgram& program; // The program
uint32_t instrPtr; // Instruction pointer
bool aborted; // Did the program fail?
T_Array< T_OpValue > values; // VM data
T_Array< T_OpValue > stack; // Main VM stack
double x87stack[ 8 ]; // x87 FPU emulation stack
int x87sp; // x87 FPU emulation stack pointer
};
class X_OpFailure : public std::exception
{
public:
X_OpFailure( ) = delete;
DEF_COPY( X_OpFailure );
DEF_MOVE( X_OpFailure );
X_OpFailure( T_Op const& op ,
T_String error ) noexcept;
T_Op const& op( ) const noexcept
{ return *op_; }
T_String const& error( ) const noexcept
{ return error_; }
char const* what( ) const noexcept override;
private:
T_Op const* op_;
T_String error_;
T_String fullMessage_;
};
class T_Compiler : public A_PrivateImplementation
{
public:
T_Compiler( ) noexcept;
P_OpProgram compile(
opast::T_ParserOutput const& input ) noexcept;
};
} // namespace ops
/*= FIXME OLD VERSION BELOW ====================================================*/
2017-10-14 12:00:47 +02:00
namespace cops {
2017-10-15 10:22:24 +02:00
struct T_Program;
2017-10-14 12:00:47 +02:00
struct T_Context
{
2017-10-15 10:22:24 +02:00
T_Program const* program;
2017-11-03 11:55:26 +01:00
T_KeyValueTable< T_String , float > vars;
2017-10-14 12:00:47 +02:00
2017-11-03 11:55:26 +01:00
T_Array< float > opStack;
T_Context& store(
2017-11-03 11:55:26 +01:00
T_String const& name ,
const float value );
2017-10-14 12:00:47 +02:00
};
class X_OpFailure : public std::exception
{
public:
X_OpFailure( ) = delete;
DEF_COPY( X_OpFailure );
DEF_MOVE( X_OpFailure );
X_OpFailure(
2017-11-03 11:55:26 +01:00
T_String const& source ,
uint32_t line ,
T_String&& error ) noexcept;
2017-10-14 12:00:47 +02:00
2017-11-03 11:55:26 +01:00
T_String const& source( ) const noexcept
2017-10-14 12:00:47 +02:00
{ return source_; }
uint32_t line( ) const noexcept
{ return line_; }
2017-11-03 11:55:26 +01:00
T_String const& error( ) const noexcept
2017-10-14 12:00:47 +02:00
{ return error_; }
char const* what( ) const noexcept override;
private:
2017-11-03 11:55:26 +01:00
T_String source_;
2017-10-14 12:00:47 +02:00
uint32_t line_;
2017-11-03 11:55:26 +01:00
T_String error_;
T_String fullMessage_;
2017-10-14 12:00:47 +02:00
};
/*--------------------------------------------------------------------*/
enum E_Op
{
OP_LOAD_CONSTANT ,
OP_LOAD_VARIABLE ,
OP_LOAD_INPUT ,
OP_STORE_VARIABLE ,
//
OP_ADD , OP_MUL ,
OP_NEG , OP_INV ,
//
OP_DUP , OP_XCHG ,
//
OP_SET_UNIFORM ,
OP_USE_PIPELINE ,
OP_USE_TEXTURE ,
OP_USE_FRAMEBUFFER ,
2017-10-14 21:10:46 +02:00
OP_SET_VIEWPORT ,
//
OP_CLEAR ,
2017-10-15 10:22:24 +02:00
OP_FULLSCREEN ,
//
OP_CALL
2017-10-14 12:00:47 +02:00
};
struct T_Op
{
explicit T_Op(
2017-11-03 11:55:26 +01:00
const E_Op op );
2017-10-14 12:00:47 +02:00
virtual ~T_Op( ) = 0;
E_Op op( ) const noexcept
{ return op_; }
virtual void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const = 0;
2017-10-14 12:00:47 +02:00
2017-11-03 11:55:26 +01:00
T_String source{};
2017-10-15 10:22:24 +02:00
uint32_t line{0};
2017-10-14 12:00:47 +02:00
protected:
X_OpFailure error(
2017-11-03 11:55:26 +01:00
ebcl::T_StringBuilder& message ) const noexcept;
X_OpFailure error(
T_String const& message ) const noexcept;
2017-10-14 12:00:47 +02:00
private:
E_Op op_;
};
2017-11-03 11:55:26 +01:00
using P_Op = T_OwnPtr< T_Op >;
using T_Operations = T_Array< P_Op >;
2017-10-14 12:00:47 +02:00
template< typename T >
inline T_Operations& operator <<(
2017-11-03 11:55:26 +01:00
T_Operations& ops ,
T&& item )
{
2017-11-03 11:55:26 +01:00
ops.add( NewOwned< T >( std::move( item ) ) );
return ops;
}
2017-10-15 10:22:24 +02:00
void Execute(
2017-11-03 11:55:26 +01:00
T_Operations const& operations ,
T_Context& context );
2017-10-15 10:22:24 +02:00
/*--------------------------------------------------------------------*/
struct T_Function
{
2017-11-03 11:55:26 +01:00
T_String name;
2017-10-15 10:22:24 +02:00
uint32_t arguments;
T_Operations operations;
2017-11-03 11:55:26 +01:00
T_Function( T_String const& name ,
const uint32_t arguments )
2017-10-15 10:22:24 +02:00
: name( name ) , arguments( arguments )
{ }
DEF_COPY( T_Function );
DEF_MOVE( T_Function );
};
struct T_Program
{
2017-11-03 11:55:26 +01:00
T_ObjectTable< T_String , T_Function > functions;
2017-10-15 10:22:24 +02:00
T_Operations main;
2017-11-03 11:55:26 +01:00
T_Program( )
: functions( []( T_Function const& f ) -> T_String {
return f.name;
} )
{ }
2017-10-15 10:22:24 +02:00
T_Operations& function(
2017-11-03 11:55:26 +01:00
T_String const& name ,
const uint32_t args );
2017-10-15 10:22:24 +02:00
2017-11-03 11:55:26 +01:00
void execute( T_Context& context )
2017-10-15 10:22:24 +02:00
{
context.program = this;
Execute( main , context );
}
};
2017-10-14 12:00:47 +02:00
/*====================================================================*/
struct OPLoadConstant : public T_Op
{
explicit OPLoadConstant(
2017-11-03 11:55:26 +01:00
const float constant );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
float constant;
};
struct OPLoadVariable : public T_Op
{
explicit OPLoadVariable(
2017-11-03 11:55:26 +01:00
T_String const& variable );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
T_String variable;
2017-10-14 12:00:47 +02:00
};
struct OPLoadInput : public T_Op
{
explicit OPLoadInput(
T_String const& input );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
T_String input;
2017-10-14 12:00:47 +02:00
};
struct OPStoreVariable : public T_Op
{
explicit OPStoreVariable(
2017-11-03 11:55:26 +01:00
T_String const& variable );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
T_String variable;
2017-10-14 12:00:47 +02:00
};
/*--------------------------------------------------------------------*/
struct OPAdd : public T_Op
{
OPAdd( ) : T_Op( OP_ADD ) {}
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
};
struct OPMul : public T_Op
{
OPMul( ) : T_Op( OP_MUL ) {}
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
};
struct OPNeg : public T_Op
{
OPNeg( ) : T_Op( OP_NEG ) {}
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
};
struct OPInv : public T_Op
{
OPInv( ) : T_Op( OP_INV ) {}
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
};
/*--------------------------------------------------------------------*/
struct OPDup : public T_Op
{
explicit OPDup( uint32_t stackIndex = 0 );
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
uint32_t stackIndex;
};
struct OPXchg : public T_Op
{
explicit OPXchg( uint32_t stackIndex = 1 );
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
uint32_t stackIndex;
};
/*--------------------------------------------------------------------*/
struct OPSetUniform : public T_Op
{
OPSetUniform(
2017-11-03 11:55:26 +01:00
const uint32_t count ,
const bool integer );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
uint32_t count;
bool integer;
};
struct OPUsePipeline : public T_Op
{
explicit OPUsePipeline(
2017-11-03 11:55:26 +01:00
const uint32_t index );
2017-10-14 12:00:47 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 12:00:47 +02:00
uint32_t pipeline;
};
2017-10-14 21:10:46 +02:00
struct OPUseTexture : public T_Op
{
OPUseTexture(
2017-11-03 11:55:26 +01:00
const uint32_t binding ,
const uint32_t texture ,
const uint32_t sampler = 0 );
2017-10-14 21:10:46 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 21:10:46 +02:00
uint32_t binding;
uint32_t texture;
uint32_t sampler;
};
struct OPUseFramebuffer : public T_Op
{
explicit OPUseFramebuffer(
2017-11-03 11:55:26 +01:00
const uint32_t framebuffer );
2017-10-14 21:10:46 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 21:10:46 +02:00
uint32_t framebuffer;
};
struct OPSetViewport : public T_Op
{
OPSetViewport( ) : T_Op( OP_SET_VIEWPORT ) { }
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 21:10:46 +02:00
};
/*--------------------------------------------------------------------*/
struct OPClear : public T_Op
{
OPClear( ) : T_Op( OP_CLEAR ) { }
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 21:10:46 +02:00
};
struct OPFullscreen : public T_Op
{
OPFullscreen( ) : T_Op( OP_FULLSCREEN ) { }
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-14 21:10:46 +02:00
};
2017-10-15 10:22:24 +02:00
/*--------------------------------------------------------------------*/
2017-10-14 12:00:47 +02:00
2017-10-15 10:22:24 +02:00
struct OPCall : public T_Op
{
explicit OPCall(
2017-11-03 11:55:26 +01:00
T_String const& function );
2017-10-15 10:22:24 +02:00
void execute(
2017-11-03 11:55:26 +01:00
T_Context& ctx ) const override;
2017-10-15 10:22:24 +02:00
2017-11-03 11:55:26 +01:00
T_String function;
2017-10-15 10:22:24 +02:00
};
2017-10-14 12:00:47 +02:00
} // namespace cops