You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
469 B

define: DUK_USE_FASTINT
requires:
- DUK_USE_64BIT_OPS
introduced: 1.2.0
default: false
tags:
- performance
- fastpath
description: >
Enable support for 48-bit signed "fastint" integer values. Fastints are
transparent to user code (both C and ECMAScript) but may be faster than
IEEE doubles on some platforms, especially those using softints. The
downside of fastints is increased code footprint and a small performance
penalty for some kinds of code.