aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/float64.glsl
Commit message (Expand)AuthorAgeFilesLines
* soft-fp64/fadd: Common code optimization for differing sign caseIan Romanick2020-03-181-21/+11
* soft-fp64/fadd: Move common code out of both branches of an if-statementIan Romanick2020-03-181-22/+11
* soft-fp64/fadd: Use absolute value of expDiffIan Romanick2020-03-181-3/+4
* soft-fp64/fadd: Rename aFrac and bFrac variablesIan Romanick2020-03-181-6/+21
* soft-fp64/fadd: Combine an if-statement into the preceeding else-clauseIan Romanick2020-03-181-4/+2
* soft-fp64/fadd: Reformat after previous commitIan Romanick2020-03-181-19/+21
* soft-fp64/fadd: Delete a redundant condition checkIan Romanick2020-03-181-1/+1
* soft-fp64/fadd: Just let the subtraction happen when the result will be zeroIan Romanick2020-03-181-4/+5
* soft-fp64/fadd: Pick zero or non-zero result based on subtraction resultIan Romanick2020-03-181-6/+1
* soft-fp64/fadd: Massively split the live range of zFrac0 and zFrac1Ian Romanick2020-03-181-3/+12
* soft-fp64/fadd: Instead of tracking "b < a", track sign of the differenceIan Romanick2020-03-181-5/+5
* soft-fp64: Optimize __fmin64 and __fmax64 by using different evaluation order...Ian Romanick2020-03-181-8/+16
* soft-fp64/ffloor: Simplify the >= 0 comparisonIan Romanick2020-03-181-1/+13
* soft-fp64: Relax the way NaN is propagatedIan Romanick2020-03-181-2/+19
* soft-fp64/fsat: Micro-optimize x >= 1 testIan Romanick2020-03-181-1/+19
* soft-fp64/fsat: Micro-optimize x < 0 testIan Romanick2020-03-181-1/+3
* soft-fp64/fsat: Correctly handle NaNIan Romanick2020-03-181-2/+3
* soft-fp64/flt: Perform checks in a different orderIan Romanick2020-03-181-16/+56
* soft-fp64/fneg: Don't treat NaN speciallyIan Romanick2020-03-181-4/+1
* soft-fp64: Store sign value as 0 or 0x80000000Ian Romanick2020-03-181-16/+16
* soft-fp64: Pick a single idiom for treating sign value as a BooleanIan Romanick2020-03-181-10/+10
* soft-fp64: Simplify __countLeadingZeros32 functionIan Romanick2020-03-181-3/+1
* soft-fp64: Don't open-code umulExtendedIan Romanick2020-03-181-32/+8
* soft-fp64/b2f: Reimplement using bitwise logic opsIan Romanick2020-03-181-1/+1
* glsl: Fix software 64-bit integer to 32-bit float conversions.Francisco Jerez2020-01-101-22/+14
* glsl: Fix round64 conversion functionSagar Ghuge2019-06-251-9/+12
* compiler: Add lowering support for 64-bit saturate operations to softwareAnuj Phogat2019-05-151-0/+12
* glsl: Add "built-in" functions to do fp32_to_int64(fp32)Sagar Ghuge2019-01-091-0/+31
* glsl: Add "built-in" functions to do fp32_to_uint64(fp32)Sagar Ghuge2019-01-091-0/+29
* glsl: Add "built-in" functions to do fp64_to_int64(fp64)Sagar Ghuge2019-01-091-0/+29
* glsl: Add utility function to round and pack int64_t valueSagar Ghuge2019-01-091-0/+36
* glsl: Add "built-in" functions to do fp64_to_uint64(fp64)Sagar Ghuge2019-01-091-0/+27
* glsl: Add utility function to round and pack uint64_t valueSagar Ghuge2019-01-091-0/+32
* glsl: Add "built-in" functions to do int64_to_fp32(int64_t)Sagar Ghuge2019-01-091-0/+22
* glsl: Add "built-in" functions to do uint64_to_fp32(uint64_t)Sagar Ghuge2019-01-091-0/+20
* glsl: Add "built-in" functions to do int64_to_fp64(int64_t)Sagar Ghuge2019-01-091-0/+18
* glsl: Add "built-in" functions to do uint64_to_fp64(uint64_t)Sagar Ghuge2019-01-091-0/+18
* glsl: Add "built-in" functions to convert bool to doubleMatt Turner2019-01-091-0/+12
* glsl: Add "built-in" functions to do ffract(fp64)Matt Turner2019-01-091-0/+6
* glsl: Add "built-in" function to do ffloor(fp64)Matt Turner2019-01-091-0/+13
* glsl: Add "built-in" functions to do fmin/fmax(fp64)Matt Turner2019-01-091-0/+20
* glsl: Add "built-in" functions to do ffma(fp64)Matt Turner2019-01-091-0/+6
* glsl: Add "built-in" functions to do round(fp64)Elie Tournier2019-01-091-0/+42
* glsl: Add "built-in" functions to do trunc(fp64)Elie Tournier2019-01-091-0/+22
* glsl: Add "built-in" functions to do sqrt(fp64)Elie Tournier2019-01-091-0/+272
* glsl: Add "built-in" functions to do fp32_to_fp64(fp32)Elie Tournier2019-01-091-0/+38
* glsl: Add "built-in" functions to do fp64_to_fp32(fp64)Elie Tournier2019-01-091-0/+101
* glsl: Add "built-in" functions to do int_to_fp64(int)Elie Tournier2019-01-091-0/+23
* glsl: Add "built-in" functions to do fp64_to_int(fp64)Elie Tournier2019-01-091-0/+41
* glsl: Add "built-in" functions to do uint_to_fp64(uint)Elie Tournier2019-01-091-0/+22