-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move some large stack frames off recursive paths. (#8507)
* Remove large stack frames from recursive paths There were several large (>2kb) stack frames on recursive paths, which invites stack overflow. In all cases the code could be moved into a helper function out of the recursive path, eliminating the problem. Some of these stack frames were also shrunk by removing state from the Intrin IR matcher, and removing unnecessary precision in the IsInt and IsUInt IR matchers. Also added IRMatcher helpers for a few more intrinsics Note the tables in HexagonOptimize are unchanged, they just got indented more by being moved into a lambda. * Update ConstantBounds.cpp --------- Co-authored-by: Steven Johnson <[email protected]>
- Loading branch information
1 parent
c3f4de0
commit 5f17d6f
Showing
8 changed files
with
387 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters