Age | Commit message (Expand) | Author |
2007-02-09 | comments, etc | Brian |
2007-02-08 | optimize conditional breaks/continues | Brian |
2007-02-08 | cont at top of loop, little clean-ups | Brian |
2007-02-08 | fix broken BRA for return stmts | Brian |
2007-02-08 | Use conditional break in for/do/while loops. | Brian |
2007-02-07 | high vs. low level if/then/else code emit | Brian |
2007-02-07 | Use IR_LOOP to represent do-while and for-loops. | Brian |
2007-02-06 | Implement CONT, improve BRK. | Brian |
2007-02-06 | replace IR_BEGIN_LOOP/IR_END_LOOP with IR_LOOP | Brian |
2007-02-06 | redo IR_IF node, removing IR_ELSE, IR_ENDIF | Brian |
2007-02-05 | BRK instruction's BranchTarget field now used for efficiently breaking out of... | Brian |
2007-02-05 | Use IR node's BranchNode field for IF/ELSE/ENDIF instructions. | Brian |
2007-02-05 | Initial implementation of high-level flow-control instructions. | Brian |
2007-02-05 | Initial support of loop and subroutine instructions. | Brian |
2007-02-02 | fix emit_tex() breakage | Brian |
2007-01-31 | Overhaul handling of writemasks/swizzling. This fixes two problem cases: | Brian |
2007-01-31 | New asm instruction and IR_CLAMP node type to allow clamping to [0,1] with in... | Brian |
2007-01-28 | noise functions | Brian |
2007-01-28 | combine emit_unop(), emit_binop(), emit_triop() into emit_arith() | Brian |
2007-01-28 | implement mix() with LRP instruction | Brian |
2007-01-28 | Lots of vartable clean-ups, fixes. Report an error message when we run out | Brian |
2007-01-28 | minor clean-ups | Brian |
2007-01-27 | Clean-up of var/temp allocation function parameters. | Brian |
2007-01-27 | Improved register allocation: allow four 'float' vars or temporaries to share... | Brian |
2007-01-23 | fix g++ warnings/errors | Brian |
2007-01-20 | Add a simple mechanism for annotating instructions for easier debugging. | Brian |
2007-01-20 | optimization: emit MAD instructions when possible | Brian |
2007-01-20 | remove unused swizzle parameter to -storage_to_src_reg() | Brian |
2007-01-20 | Initial implementation of OPCODE_IF/ELSE/ENDIF instructions. | Brian |
2007-01-20 | Reimplement && and || to do short-circuit evaluation. | Brian |
2007-01-19 | Implement do/while loops. Replace IR_CJUMP with IR_CJUMP0 and IR_CJUMP1 so | Brian |
2007-01-19 | Implement fragment discard/kill. | Brian |
2007-01-18 | Implement constant sharing so that 4 float constants can share a single | Brian |
2007-01-18 | Reimplement code for swizzling so that expressions like (p+q).x for vectors p... | Brian |
2007-01-17 | code clean-up, re-org. Added IR_F_TO_I support. | Brian |
2007-01-17 | Fix/clean-up a number of things related to variable/temporary allocation. | Brian |
2007-01-16 | Implement codegen for the selection operator ( b ? x : y ) | Brian |
2007-01-15 | added IR_ELEMENT | Brian |
2007-01-15 | Redo the way array indexes are handled. Resolve storage location at code emi... | Brian |
2007-01-15 | comments | Brian |
2007-01-13 | Rework code related to temp register allocation, both for user variables | Brian |
2007-01-11 | Fix a problem with inlined "return" statements. Make some attempt to free te... | Brian |
2007-01-10 | checkpoint: codegen for global vars/constants now working | Brian |
2007-01-10 | assorted code clean-ups | Brian |
2007-01-09 | Implement shadow samplers and dFdx(), dFdy() code generation. | Brian |
2007-01-08 | implement biased texture functions | Brian |
2007-01-08 | Implement projective texture sampling, 3D textures. Disable some debug output. | Brian |
2007-01-08 | Move storage allocation functions from slang_emit.c to slang_codegen.c | Brian |
2007-01-08 | checkpoint: more work on variable/storage allocation | Brian |
2007-01-08 | Checkpoint: re-org of (global) variable allocation code. More to come... | Brian |