Lioncash
5450b64951
Externals/expr: Resolve -Wshadow warning
...
We already made changes to this library, so we can also resolve the lone
shadowing warning within it.
2023-12-13 15:29:31 -05:00
Martino Fontana
5792eefdaf
expr: increase size of varname
2023-11-18 23:53:19 +01:00
TryTwo
76bf1b5f7d
Add callstack to conditional breakpoints. Checks entire stack for value.
...
Use: callstack(0x80000000).
!callstack(value) works as a 'does not contain'.
Add strings to expr.h conditionals.
Use quotations: callstack("anim") to check symbols/name.
2022-12-03 20:52:17 -07:00
smurf3tte and TryTwo
3417920167
Grow internal expr int representation to 64 bits
...
This is necessary to retain precision above 32 bits, but more importantly to prevent an expression like (0x80000000 | 1) from flipping the sign of the result.
2022-10-06 21:34:44 -07:00
smurf3tte and TryTwo
11851a01e6
Expand expr's support for numeric literals
...
- Support hex prefix 0x or OX
- Support scientific notation
Also, reconcile the bitwise complement operator with C (use ~ instead of ^).
2022-10-06 21:34:44 -07:00
smurf3tte and TryTwo
7842f9a715
Debugger: Initial implementation of conditional breakpoints
...
Expression class to store compiled expressions and associated variable list.
Co-authored-by: TryTwo <taolas@gmail.com >
2022-10-06 21:34:44 -07:00