Code Monkey home page Code Monkey logo

Comments (1)

haoyu234 avatar haoyu234 commented on July 28, 2024

The following changes seem to fix the issue.

  #define nimAddInt64(a, b, res) __builtin_add_overflow(a, b, res)
  #define nimSubInt64(a, b, res) __builtin_sub_overflow(a, b, res)
  #define nimMulInt64(a, b, res) __builtin_mul_overflow(a, b, res)

  #define nimAddInt(a, b, res) __builtin_add_overflow(a, b, res)
  #define nimSubInt(a, b, res) __builtin_sub_overflow(a, b, res)
  #define nimMulInt(a, b, res) __builtin_mul_overflow(a, b, res)

the test:

discard """
  targets: "c cpp"
"""

# Bug #23894

proc checkSucc(tp: typedesc) =
  let v = high(tp)
  let v2 = tp(uint64(v) div uint64(2))
  let v3 = succ v2
  discard v3

proc checkSuccOverflow(tp: typedesc) =
  let v = high(tp)
  try:
    let v2 = succ v
    discard v2
  except OverflowDefect:
    return

  doAssert false, "unreachable"

block: # overflow

  checkSuccOverflow(char)
  checkSuccOverflow(cint)
  checkSuccOverflow(cuint)
  checkSuccOverflow(csize_t)

  checkSuccOverflow(uint)
  checkSuccOverflow(uint8)
  checkSuccOverflow(uint16)
  checkSuccOverflow(uint32)
  checkSuccOverflow(uint64)

  checkSuccOverflow(int)
  checkSuccOverflow(int8)
  checkSuccOverflow(int16)
  checkSuccOverflow(int32)
  checkSuccOverflow(int64)

  checkSuccOverflow(cint)
  checkSuccOverflow(cuint)
  checkSuccOverflow(csize_t)

block: # should't overflow

  checkSucc(char)
  checkSucc(cint)
  checkSucc(cuint)
  checkSucc(csize_t)

  checkSucc(uint)
  checkSucc(uint8)
  checkSucc(uint16)
  checkSucc(uint32)
  checkSucc(uint64)

  checkSucc(int)
  checkSucc(int8)
  checkSucc(int16)
  checkSucc(int32)
  checkSucc(int64)

from nim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.