-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document how to use InterDex #5
Comments
Documentation add in docs/Interdex.md |
facebook-github-bot
pushed a commit
that referenced
this issue
Oct 15, 2019
Summary: Report: fbandroid/native/redex/libresource/VectorImpl.cpp:507:22: runtime error: null pointer passed as argument 2, which is declared to never be null fbcode/third-party-buck/platform007/build/glibc/include/string.h:43:28: note: nonnull attribute specified here Stack trace: ``` #0 android::VectorImpl::_do_copy (this=<optimized out>, dest=0x7fffd140c818, from=0x0, num=0) at fbandroid/native/redex/libresource/VectorImpl.cpp:507 #1 android::VectorImpl::setCapacity (this=0x7fffffff5ac0, new_capacity=25420576) at fbandroid/native/redex/libresource/VectorImpl.cpp:341 #2 0x0000000001f34f4a in android::Vector<char>::setCapacity (this=<optimized out>, size=17592186039131) at buck-out/gen/fbandroid/native/redex/libresource#header-mode-symlink-tree-with-header-map,headers/utils/Vector.h:85 #3 android::Vector<char>::reserve (this=<optimized out>, n=17592186039131) at buck-out/gen/fbandroid/native/redex/libresource#header-mode-symlink-tree-with-header-map,headers/utils/Vector.h:196 #4 android::ResTable::serialize (this=0x7fffffff66b0, cVec=..., resTableIndex=<optimized out>) at fbandroid/native/redex/libresource/ResourceTypes.cpp:4006 #5 0x0000000001e049eb in ResourcesArscFile::serialize (this=0x7fffffff66b0) at fbandroid/native/redex/libredex/RedexResources.cpp:1262 #6 0x00000000014ad94d in OptimizeResourcesPass::run_pass (this=0x24d25e0 <_ZL6s_pass>, stores=..., conf=..., mgr=...) at fbandroid/native/redex/facebook/opt/optimize_resources/OptimizeResources.cpp:630 #7 0x0000000001c6b2a9 in PassManager::run_passes (this=0x7fffffffb660, stores=..., conf=...) at fbandroid/native/redex/libredex/PassManager.cpp:258 #8 0x0000000000d2bb3a in main (argc=-25816, argv=0x7fffffffaf48) at fbandroid/native/redex/tools/redex-all/main.cpp:1122 ``` Reviewed By: int3 Differential Revision: D17889740 fbshipit-source-id: 360c1e7bd341a09f3537b9115cd2967d98b0c36c
facebook-github-bot
pushed a commit
that referenced
this issue
Nov 8, 2019
…point iteration. (#5) Summary: This implements the Weak Partial Ordering (WPO) of a graph that generalizes the WTO. It can be used to implement concurrent fixpoint iteration algorithms. It is implemented in an iterative style so that it does not stack overflow during the WPO construction. - Test cases are added, including the cases for the irreducible graphs. - Ran clang-format to clean up the codes. Publications: - Sung Kook Kim, Arnaud J. Venet, and Aditya V. Thakur. Deterministic Parallel Fixpoint Computation. To appear in POPL 2020 - preprint: [arXiv:1909.05951](https://arxiv.org/abs/1909.05951) Pull Request resolved: facebook/SPARTA#5 Reviewed By: yuxuanchen1997 Differential Revision: D18169499 Pulled By: int3 fbshipit-source-id: 64fcc87ce94b33c34fdbe89a327ebb7e99b64697
facebook-github-bot
pushed a commit
that referenced
this issue
Nov 8, 2019
…point iteration. (#5) Summary: This implements the Weak Partial Ordering (WPO) of a graph that generalizes the WTO. It can be used to implement concurrent fixpoint iteration algorithms. It is implemented in an iterative style so that it does not stack overflow during the WPO construction. - Test cases are added, including the cases for the irreducible graphs. - Ran clang-format to clean up the codes. Publications: - Sung Kook Kim, Arnaud J. Venet, and Aditya V. Thakur. Deterministic Parallel Fixpoint Computation. To appear in POPL 2020 - preprint: [arXiv:1909.05951](https://arxiv.org/abs/1909.05951) Pull Request resolved: facebook/SPARTA#5 Reviewed By: yuxuanchen1997 Differential Revision: D18169499 Pulled By: int3 fbshipit-source-id: 64fcc87ce94b33c34fdbe89a327ebb7e99b64697
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
InterDex is the feedback-directed class layout pass (perhaps it should have a clearer name as well, but that's a separate issue). We should document:
The text was updated successfully, but these errors were encountered: