-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Cast matchers to match the value
- Loading branch information
1 parent
70ee461
commit 37dca87
Showing
4 changed files
with
100 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
## Cast Instructions Matchers | ||
|
||
| Function | Parameters | Return | Description | | ||
| :---------------: | :--------: | :---------: | :--------------------------------------------------------: | | ||
| m_trunc | | InstMatcher | Build Inst Matcher that matchers trunc instruction | | ||
| m_fp_to_ui | | InstMatcher | Build Inst Matcher that matchers fp to ui instruction | | ||
| m_fp_to_si | | InstMatcher | Build Inst Matcher that matchers fp to si instruction | | ||
| m_fp_trunc | | InstMatcher | Build Inst Matcher that matchers trunc instruction | | ||
| m_int_to_ptr | | InstMatcher | Build Inst Matcher that matchers IntToPtr instruction | | ||
| m_ptr_to_int | | InstMatcher | Build Inst Matcher that matchers PtrToInt instruction | | ||
| m_zext | | InstMatcher | Build Inst Matcher that matchers zext instruction | | ||
| m_sext | | InstMatcher | Build Inst Matcher that matchers sext instruction | | ||
| m_bit_cast | | InstMatcher | Build Inst Matcher that matchers Bit cast instruction | | ||
| m_addr_space_cast | | InstMatcher | Build Inst Matcher that matchers AddrSpaceCast instruction | | ||
| Function | Parameters | Return | Description | | ||
| :---------------: | :-------------------: | :---------: | :--------------------------------------------------------: | | ||
| m_trunc | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers trunc instruction | | ||
| m_fp_to_ui | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers fp to ui instruction | | ||
| m_fp_to_si | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers fp to si instruction | | ||
| m_fp_trunc | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers trunc instruction | | ||
| m_int_to_ptr | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers IntToPtr instruction | | ||
| m_ptr_to_int | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers PtrToInt instruction | | ||
| m_zext | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers zext instruction | | ||
| m_sext | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers sext instruction | | ||
| m_bit_cast | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers Bit cast instruction | | ||
| m_addr_space_cast | (value: InstMatcher?) | InstMatcher | Build Inst Matcher that matchers AddrSpaceCast instruction | |
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