search for: exact_precision

Displaying 2 results from an estimated 2 matches for "exact_precision".

2010 Jan 15
0
[LLVMdev] Presenting Unsafe Math Flag to Optimizer
...usual way of handling this is that any assignment in the source code will truncate to the memory representation, while intermediate results in an expression are allowed to be kept at 80 bits precision (i.e. frontend decides which operations must be rounded). - this can be represented with a 'exact_precision' bit 3) exceptions, you might need to have the right number of exceptions triggered in the right order so basically no optimizations are allowed. - this can be represented with a 'trapping_math' and/or 'signaling_NaN' bit, or maybe it can be encoded as 'no_reorder' &...
2010 Jan 14
2
[LLVMdev] Presenting Unsafe Math Flag to Optimizer
On Jan 14, 2010, at 2:01 AM, Duncan Sands wrote: > Hi Bill, > >> The current implementation of the "allow unsafe math" option is to >> specify it via the TargetOptions object. However, this prevents the >> target-independent optimizer from using it. Are there any opinions >> (ha!) on how this could be achieved in a nice clean manner which >>