summaryrefslogtreecommitdiffstats
path: root/src/mesa/shader/slang/slang_emit.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a few issues with computing storage sizes with respect to swizzles.Brian2007-03-261-39/+26
* remove incorrect assertionsBrian2007-03-261-2/+0
* move some code into new slang_ir.c fileBrian2007-03-241-314/+1
* Fix issues related to the 'continue' statement.Brian2007-03-231-12/+67
* Add the ability to generate programs that doesn't use condition codes.Brian2007-03-231-37/+86
* updated commentBrian2007-03-231-1/+1
* Overhaul emit_compare() function.Brian2007-03-221-27/+129
* First pass at implementing structure compares.Brian2007-03-221-9/+28
* Support for user-defined structures.Brian2007-03-211-7/+65
* remove old assertionBrian2007-03-141-1/+0
* disable some debug outputBrian2007-03-131-1/+1
* Shuffle some code around in the emit_tex() and emit_move() instructions.Brian2007-03-131-9/+16
* add NULL ptr check in emit_cond()Brian2007-03-101-2/+6
* Added IR_SLE and IR_SLT for <= and < operations.Brian2007-03-081-0/+4
* fix tmp storage problem for IR_I_TO_FBrian2007-03-081-0/+4
* fix assertionBrian2007-03-081-1/+1
* IR_CJUMP0/1 no longer used/neededBrian2007-03-081-34/+1
* remove old assertionBrian2007-03-081-1/+0
* remove unneeded return stmtBrian2007-03-071-1/+0
* Fix problem with nested function calls such as y = f(f(x))Brian2007-03-071-0/+4
* fix some int arithmetic problemsBrian2007-03-061-3/+7
* Add EmitHighLevelInstructions, EmitComments booleans to gl_shader_state.Brian2007-02-261-11/+16
* Overhaul of error handling.Brian2007-02-261-6/+12
* Use new slang_emit_info struct for passing context info around.Brian2007-02-261-143/+160
* comments, clean-upBrian2007-02-231-5/+11
* Replace slang_ir_node::Target w/ Field. Remove Comment field. Clean-up.Brian2007-02-231-5/+4
* Re-implement branching with slang_labels.Brian2007-02-231-26/+28
* debug code for emitting variable allocation commentsBrian2007-02-221-1/+16
* remove dead codeBrian2007-02-211-18/+2
* adjustments to STATE_ token layout/format so token[1] is always the array indexBrian2007-02-211-1/+2
* checkpoint overhaul of pre-defined uniform codeBrian2007-02-211-0/+18
* clean-up, move IR_ELEMENT codeBrian2007-02-201-30/+36
* alloc IR_FIELD's Storage in codegen, like IR_ELEMENTBrian2007-02-201-4/+5
* implement support for pre-defined uniform structs (state vars)Brian2007-02-201-0/+34
* implement IR_I_TO_FBrian2007-02-161-1/+6
* comments, etcBrian2007-02-091-3/+19
* optimize conditional breaks/continuesBrian2007-02-081-6/+14
* cont at top of loop, little clean-upsBrian2007-02-081-5/+12
* fix broken BRA for return stmtsBrian2007-02-081-0/+1
* Use conditional break in for/do/while loops.Brian2007-02-081-2/+42
* high vs. low level if/then/else code emitBrian2007-02-071-77/+112
* Use IR_LOOP to represent do-while and for-loops.Brian2007-02-071-32/+50
* Implement CONT, improve BRK.Brian2007-02-061-12/+35
* replace IR_BEGIN_LOOP/IR_END_LOOP with IR_LOOPBrian2007-02-061-16/+19
* redo IR_IF node, removing IR_ELSE, IR_ENDIFBrian2007-02-061-46/+56
* BRK instruction's BranchTarget field now used for efficiently breaking out of...Brian2007-02-051-5/+19
* Use IR node's BranchNode field for IF/ELSE/ENDIF instructions.Brian2007-02-051-0/+12
* Initial implementation of high-level flow-control instructions.Brian2007-02-051-0/+72
* Initial support of loop and subroutine instructions.Brian2007-02-051-3/+26
* fix emit_tex() breakageBrian2007-02-021-0/+2