-
Notifications
You must be signed in to change notification settings - Fork 387
Cascaded allocator #2113
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
Open
smithAchang
wants to merge
50
commits into
DOCGroup:master
Choose a base branch
from
smithAchang:cascadedAllocator
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Cascaded allocator #2113
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
bd320b1
can compiled successfully on Windows Plat
smithAchang 37dc8f4
Allocator_Cascaded_Test.cpp增加
smithAchang c61b9be
add the 2*sum(Allocator of hierarchy) testing case
smithAchang 6166f88
bin/fuzz.pl find trailing whitespace
smithAchang 32d3d1f
bin/fuzz.pl find trailing whitespace 2
smithAchang e2a5511
compiler error
smithAchang 6835890
dsfdsdfMerge branch 'cascadedAllocator' of github.com:smithAchang/ACE…
smithAchang 150eb7b
use std::vector
smithAchang 089af45
linux compiling error & fix issue
smithAchang ac87bd4
according the routine of test framework
smithAchang b71f82d
key design comment for free API
smithAchang 34abb6e
fix space indent & const member field
smithAchang cf39680
using instead of typedef, will be fitter for template declaration
smithAchang 78e7165
remove duplicate empty lines
smithAchang e5e55bc
free protected when malloc in constructor failed
smithAchang 00016bf
1. add assert for free API
smithAchang 912d9db
add comments for ACE_NEW fail in constructor
smithAchang 833bc87
Merge branch 'master' into cascadedAllocator
smithAchang 40675b0
fix ""One line, indent is always 2 spaces
smithAchang 148734d
Merge branch 'cascadedAllocator' of github.com:smithAchang/ACE_TAO in…
smithAchang 6e9a17c
for g++ -fno-implicit-templates consideration
smithAchang d065069
implement the dump API
smithAchang eba85a4
fix for statement of dump API
smithAchang 1e1862d
fix trailing whitespace
smithAchang 0f26ecb
add hierarchy_.size () for dump API
smithAchang 4a7fcd0
1、fix some coding style using this keyword to distinguish vars
smithAchang cf686b3
add the pool_sum api
smithAchang 4c27ab0
1、fix constructor description
smithAchang 8210ac0
1、split ACE_NEW* with empty line, the macro function may end the flow
smithAchang e8d9b51
1、fix unsupported API return nullptr
smithAchang 63e543f
add deeply test case for calloc API
smithAchang d4e7d14
modify growth strategy to exponential growth when hierarchy grows fo…
smithAchang 874d9cb
keep the consistent to cascaded malloc branch
smithAchang 92066a1
add exception safety for the growth of chunk sum
smithAchang 4a9c114
fix the exception safety for calling vector push_back API
smithAchang 8450156
Using std::unique_ptr will be more exception-safe literally
smithAchang 0c8067c
delete defence codes
smithAchang cc4053c
delete unused temp stack var
smithAchang ac5f611
fix invalid document of class
smithAchang fec93be
fix coding style of comment
smithAchang 42b409e
fix for right const coding style
smithAchang a837b5d
format using clang-format
smithAchang c9ead44
fix for coding style of function call
smithAchang 021ef62
optimization for cascaded allocator considering the character that on…
smithAchang 92c3499
Merge branch 'master' into cascadedAllocator
smithAchang b84e0c4
modify the branch judgement of the last allocator using const var
smithAchang 58da8c3
Merge branch 'master' into cascadedAllocator
jwillemsen 818c631
fix coderabbitai's refactor suggestions
smithAchang 76ceba9
Merge branch 'cascadedAllocator' of github.com:smithAchang/ACE_TAO in…
smithAchang c19e903
Merge branch 'master' into cascadedAllocator
smithAchang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule MPC
added at
307f1f
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
initialize tmp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the temp var will be assigned or call flow is ended by
ACE_NEWmacroShould it be initialized?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the temp var will be assigned or call flow is ended by
ACE_NEWmacroShould it be initialized?