Skip to content
  1. Feb 22, 2007
  2. Feb 21, 2007
  3. Feb 20, 2007
    • Evan Cheng's avatar
      This cast broke lots of tests. · 71b8723f
      Evan Cheng authored
      llvm-svn: 34457
      71b8723f
    • Dan Gohman's avatar
      Fix typos in comments. · 8c8597c4
      Dan Gohman authored
      llvm-svn: 34456
      8c8597c4
    • Reid Spencer's avatar
      Clean up variable names in operator*. · 4bb430c4
      Reid Spencer authored
      Attempt #3 for getting a portable INFINITY value.
      
      llvm-svn: 34454
      4bb430c4
    • Reid Spencer's avatar
      Use INFINITY macro from math.h instead of constructing hex floating point · a83af6e1
      Reid Spencer authored
      constants (avoids warnings).
      
      llvm-svn: 34452
      a83af6e1
    • Reid Spencer's avatar
      First version that can process arith.cpp test case up to 1024 bits: · fb77b2ba
      Reid Spencer authored
      1. Ensure pVal is set to 0 in each constructor.
      2. Fix roundToDouble to make correct calculations and not read beyond the
         end of allocated memory.
      3. Implement Knuth's "classical algorithm" for division from scratch and
         eliminate buffer overflows and uninitialized mememory reads. Document
         it properly too.
      4. Implement a wrapper function for KnuthDiv which handles the 64-bit to
         32-bit conversion and back. It also implement short division for the
         n == 1 case that Knuth's algorithm can't handle.
      5. Simplify the logic of udiv and urem a little, make them exit early, and
         have them use the "divide" wrapper function to perform the division
         or remainder operation.
      6. Move the toString function to the end of the file, closer to where
         the division functions are located.
      
      Note: division is still broken for some > 64 bit values, but at least it
            doesn't crash any more.
      llvm-svn: 34449
      fb77b2ba
Loading