User Details
- User Since
- Jan 16 2017, 11:05 AM (359 w, 4 d)
Nov 10 2021
Originally, this patch is for helping another optimization (https://reviews.llvm.org/D30900). But potentially, removing duplication may affect other optimizations in general.
If you have a strong example to push this optimization, I think it is reasonable to submit a new patch with the description on how it improve the code with a large switch.
Mar 4 2020
I forget to close this. The problem has been addressed by another patch https://reviews.llvm.org/D73653.
Thanks for all the comments.
Jan 17 2020
- rebased to f6d6b98eec4
Jan 15 2020
- make links to glossary in Tutorial and LangRef relative path.
Jan 14 2020
@lucyrfox @mehdi_amini The relative links may not work if someone reads the tutorial directly on github since now Tutorial and Glossary is in the different repos. Is it acceptable?
@ftynse @jpienaar I got it. Thank you so much for the clarification.
Instead of adding Glossary.md in the repo, broken links to Glossary.md are replaced with links to https://mlir.llvm.org/getting_started/Glossary/
Jan 13 2020
@mehdi_amini @stephenneuendorffer Thank you for the suggestions.
- remove cyclic dependencies among MLIR components.
- simplify add_mlir_library CMake function
Jan 10 2020
Jan 9 2020
- capture the name of symbols instead of using hard-coded names
Jan 8 2020
Jun 25 2019
May 13 2019
@amyk I see. Please let me know you need some help.
Apr 9 2019
Feb 5 2019
Jan 29 2019
Jan 8 2019
Dec 29 2018
BitPermutationSelector has been enhanced to generate better code for bitfield insert. So we do not need to specially handle bitfield insert anymore.
https://reviews.llvm.org/D49076
Dec 28 2018
Dec 27 2018
Dec 24 2018
LGTM.
Thank you for finding the problem. I do not remember my intention on checking SeenUse here.
Dec 14 2018
Nov 6 2018
@AntonBikineev How about GCC Compile Farm? https://cfarm.tetaneutral.net/
Although I have never used it, the GCC Compile Farm provides access to powerpc machines.
I am sorry for the late reply.
Oct 17 2018
Oct 16 2018
Oct 15 2018
@AntonBikineev When I revoke this patch on my machine, the problem is gone.
I somewhat digged into the problem, although I still cannot catch the true reason.
- The problem is caused in the constructor of __shared_ptr called from std::_Construct. The call chain for the _Construct is std::__uninitialized_construct_buf, std::__stable_sort.
- When I disabled EarlyCSE in the __shared_ptr constructor, the problem does not happen.
If a constructor is called from std::Construct, may this pointer potentially alias with other memory references?
Oct 12 2018
@AntonBikineev It seems that this patch is causing failures in a ppc64 buildbot http://lab.llvm.org:8011/builders/clang-ppc64le-linux-multistage/ . Do you have any idea on the reason of the problem by looking at the errors?
Oct 10 2018
gentle ping
Sep 29 2018
@RKSimon Other colleagues in IBM are working on this and hopefully they will submit a patch separately. So I abandone this.
Thank you so much for your comments.
Sep 27 2018
Sep 26 2018
Sep 25 2018
Sep 24 2018
I'm just curious, is there something that runs after this pass that will clean up unreachable blocks if any became unreachable? For example, if MBB1 is the only predecessor of MBB2 and MBB2 is removed as a successor to MBB1, will something remove MBB2 afterwards.
Actually, no pass can eliminate unreachable block from this optimization. So I added a simple unrechable block elimination and modify a testcase for this.
Sep 21 2018
add -verify-machineinstrs options in unit tests
Sep 7 2018
@hfinkel do you have any further suggestions?
- rebased to the latest source (fix conflicts and update unit tests)
Aug 31 2018
LGTM with nitpicking.
LGTM
Aug 29 2018
Does this code pattern frequently happen?
Aug 28 2018
rebased to the latest revision
This patch increases the number of record-form rotates we emit by more than 70%.
Do you mean reducing the record-form rotates by 70%? If so, it is great!
Aug 21 2018
I added a missing dependency in CMakeFiles for ARCMigrate to fix build break in build bot (http://lab.llvm.org:8011/builders/clang-ppc64le-linux-multistage/)
https://reviews.llvm.org/rC340271
- check the explicit visibility attribute before changing the visibility to default
- add more tests
Aug 20 2018
Oh, thanks! I have not found this document.
Aug 8 2018
gentle ping
Aug 3 2018
Aug 2 2018
Does the comment about normalization only pertain to ISA 2.07?
As I browse the document, neither ISA 2.07 nor 3.0 mention about normalization by xscpsgndp.
P8 UM says xscpsgndp, xvcpsgndp and fmr are normalizing instruction. P9 UM say nothing.
Since fmr is also a normalizing instruction, I feel it is acceptable to use xscpsgndp for coping register.
@spatel @lebedev.ri Do you have any further comments before committing this?
Jul 31 2018
I submitted new patches for instsimplify to catch this opportunity.
https://reviews.llvm.org/D48828
https://reviews.llvm.org/D49981
XSCPSGNDP has longer latency (6 cycles) than XXLOR (2 cycles) on POWER8 while it has higher throughput with the same latency on POWER9. So XXLOR is preferable for pre-P9.
Please add/adjust the tests with baseline checks as a preliminary step; we don't want to lose those in case the code change gets reverted.
I have updated baseline checks.
Jul 30 2018
- Separate the patch into two; this one is the first of the two.
- Add test cases with vector data type.
Jul 28 2018
Yes, I'd also like to see the tests get committed now with baseline CHECKs.
I have committed unit tests in https://reviews.llvm.org/rL338107