summaryrefslogtreecommitdiff
path: root/src/passes/Inlining.cpp
Commit message (Expand)AuthorAgeFilesLines
* [NFC-ish] Stop creating unneeded blocks around calls when inlining (#6969)Alon Zakai2024-09-261-6/+3
* [NFC-ish] Avoid repeated ReFinalize etc. when inlining (#6967)Alon Zakai2024-09-241-6/+24
* [NFC] Parallelize the actual inlining part of the Inlining pass (#6966)Alon Zakai2024-09-241-27/+86
* Make FunctionInfo's assignment operator argument const (#6780)Derek Schuff2024-07-221-1/+1
* [DebugInfo] Copy debug info in call-utils.h (#6652)Alon Zakai2024-06-121-2/+2
* Improve inlining of `return_call*` (#6477)Jérôme Vouillon2024-04-101-28/+60
* Handle return calls correctlyThomas Lively2024-04-081-58/+152
* Add sourcemap support to wasm-metadce and wasm-merge (#6372)Jérôme Vouillon2024-03-061-3/+1
* [NFC] Fix typo in Inlining (#6187)Alon Zakai2023-12-201-2/+2
* [NFC] Use a reference instead of a pointer in Inlining (#6153)Alon Zakai2023-12-071-11/+11
* Add no-inline IR annotation, and passes to set it based on function name (#6146)Alon Zakai2023-12-061-8/+14
* Inlining: Inline trivial calls (#6143)Alon Zakai2023-12-051-9/+43
* [NFC] Move ModuleUtils copying and renaming logic from header to cpp (#5855)Alon Zakai2023-08-021-0/+1
* Gate all partial inlining behind the partial-inlining-ifs flag (#5710)Alon Zakai2023-05-101-6/+10
* [NFC] Add some comments for split inlining crossing the normal limit (#5702)Alon Zakai2023-05-051-3/+46
* Generate unique block names when inlining (#5697)Alon Zakai2023-05-051-3/+16
* Fallback to direct inlining if the outline will be inlined. (#5698)Goktug Gokdogan2023-05-041-4/+38
* [NFC] Start tracking InliningMode and memoize it to avoid re-analysis. (#5695)Goktug Gokdogan2023-05-021-73/+72
* [NFC] Inlining: Split maybeSplit into canSplit/doSplit (#5691)Goktug Gokdogan2023-04-281-115/+108
* Never flip a call from unreachable to reachable during inlining (#5493)Alon Zakai2023-02-161-8/+33
* Unreachability fixes for inlining (#5492)Alon Zakai2023-02-151-5/+10
* Replace `RefIs` with `RefIsNull` (#5401)Thomas Lively2023-01-091-1/+1
* Fix an Inlining bug with a name collision in a br nested in a call param (#5323)Alon Zakai2022-12-061-5/+19
* Use C++17's [[maybe_unused]]. NFC (#5309)Sam Clegg2022-12-021-2/+1
* Fix validation and inlining bugs (#5301)Thomas Lively2022-11-291-1/+3
* Switch from `typedef` to `using` in C++ code. NFC (#5258)Sam Clegg2022-11-151-1/+1
* Make `Name` a pointer, length pair (#5122)Thomas Lively2022-10-111-2/+3
* Implement bottom heap types (#5115)Thomas Lively2022-10-071-10/+26
* Refactor interaction between Pass and PassRunner (#5093)Thomas Lively2022-09-301-15/+14
* [Inlining] Preserve return_calls when possible (#4589)Thomas Lively2022-04-111-0/+10
* Use LiteralUtils::canMakeZero before calling makeZero (#4568)Alon Zakai2022-04-011-3/+3
* [EH] Handle nested pops after inlining (#4404)Heejin Ahn2021-12-201-0/+5
* Modernize code to C++17 (#3104)Max Graey2021-11-221-3/+1
* Change from storing Signature to HeapType on CallIndirect (#4352)Thomas Lively2021-11-221-7/+6
* Fix inlining name collision (#4206)Alon Zakai2021-10-041-0/+17
* Disable partial inlining by default and add a flag for it. (#4191)Alon Zakai2021-09-271-2/+1
* Inlining: Remove unneeded functions in linear time (#4190)Alon Zakai2021-09-271-2/+7
* Fix an unused variable warning. NFC (#4170)walkingeyerobot2021-09-201-0/+1
* Partial inlining via function splitting (#4152)Alon Zakai2021-09-171-40/+588
* Inlining: Track names over multiple iterations, not pointers (#4127)Alon Zakai2021-09-071-2/+6
* Improve inlining limits for recursion (#4067)Alon Zakai2021-08-101-18/+50
* [Wasm GC] Add a isNonNullable() convenience method. NFC (#3978)Alon Zakai2021-07-121-1/+1
* Set an absolute maximum inlining limit (#3959)Alon Zakai2021-07-011-0/+21
* Preserve Function HeapTypes (#3952)Thomas Lively2021-06-301-4/+4
* [Wasm GC] Fix inlining + non-nullable locals (#3945)Alon Zakai2021-06-181-1/+8
* [Wasm GC] Do not inline a function with an RTT parameter (#3808)Alon Zakai2021-04-141-2/+17
* Scan module-level code in necessary places (#3744)Alon Zakai2021-03-291-11/+3
* [RT] Support expressions in element segments (#3666)Abbas Mashayekh2021-03-241-5/+3
* [Wasm GC] Add support for non-nullable types, all except for locals (#3710)Alon Zakai2021-03-231-0/+2
* [reference-types] Support passive elem segments (#3572)Abbas Mashayekh2021-03-051-5/+3