summaryrefslogtreecommitdiff
path: root/src/passes/DeNaN.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [NFC] DeNaN: Avoid calls on constants (#6326)Alon Zakai2024-02-211-3/+3
| | | | | A constant is either fixed up immediately, or does not need a call. This makes us slightly faster in the fuzzer, but does not change behavior as before those calls all ended up doing nothing (as the numbers were not nans).
* Fuzzer: Add SIMD support to DeNaN (#6318)Alon Zakai2024-02-201-22/+90
|
* Automatically discard global effects in the rare passes that add effects (#5999)Alon Zakai2023-10-061-0/+2
| | | | | All logging/instrumentation passes need to do this, to avoid us using stale global effects that are too low (too high is not optimal either, but at least it cannot cause bugs).
* Preserve Function HeapTypes (#3952)Thomas Lively2021-06-301-4/+2
| | | | | | | | | When using nominal types, func.ref of two functions with identical signatures but different HeapTypes will yield different types. To preserve these semantics, Functions need to track their HeapTypes, not just their Signatures. This PR replaces the Signature field in Function with a HeapType field and adds new utility methods to make it almost as simple to update and query the function HeapType as it was to update and query the Function Signature.
* Fix DeNaN pass to handle existing colliding names (#3631)Alon Zakai2021-03-011-8/+19
|
* Add a builder.makeConst helper template (#2971)Alon Zakai2020-07-211-2/+2
|
* DeNaN improvements (#2888)Alon Zakai2020-06-031-1/+45
| | | | | | | | | Instead of instrumenting every local.get, instrument parameters on arrival at a function once on entry. After that, every local will always contain a de-naned value (since we would denan on a local.set). This is more efficient and also less confusing I think. Also avoid doing anything to values that fall through as they have already been fixed up.
* DeNaN pass (#2877)Alon Zakai2020-05-271-0/+96
This moves the fuzzer de-NaN logic out into a separate pass. This is cleaner and also better since the old way would de-NaN once, but then the reducer could generate code with nans. The new way lets us de-NaN while reducing.