8000 Intrusive SHAMap smart pointers for efficient memory use and lock-free synchronization by vlntb · Pull Request #5152 · XRPLF/rippled · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Intrusive SHAMap smart pointers for efficient memory use and lock-free synchronization #5152

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

Merged
merged 60 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
3f07882
Split tagged cache into .h and .ipp files cc
Oct 22, 2023
da72b7d
[remove] Scripts to measure and plot memory savings
Oct 25, 2023
da2ba2f
Replace SHAMapTreeNodes with intrusive pointers:
Oct 14, 2023
136db4f
[fold] Replace jthread with thread (mac does not have jthread yet)
Nov 21, 2023
19464a0
adding missing headers
vlntb Oct 14, 2024
c0659ff
[remove] Temporary change to measure maximum strong and weak referenc…
vlntb Oct 17, 2024
c20d442
[remove] Temporary change to measure max ref counts when switching fr…
vlntb Nov 5, 2024
f68dda8
[remove] stack trace printout
vlntb Nov 15, 2024
785fefc
sync with develop
vlntb Nov 15, 2024
aa1022d
clang-reformat
vlntb Nov 15, 2024
392ded3
clang-reformat
vlntb Nov 18, 2024
2510c2d
resolve levelization issues
vlntb Nov 18, 2024
f54e434
trigger GitHub actions
vlntb Nov 18, 2024
a2fa231
revert stack trace printout
vlntb Nov 19, 2024
82af26a
revert Temporary change to measure max ref counts when switching from…
vlntb Nov 19, 2024
d607e78
revert Temporary change to measure maximum strong and weak reference …
vlntb Nov 19, 2024
5819fa6
revert Scripts to measure and plot memory savings
vlntb Nov 19, 2024
4b875e9
inlining template functions
vlntb Nov 19, 2024
666d9ea
addressing review comments #1
vlntb Nov 19, 2024
ce3e00f
addressing review comments
vlntb Nov 20, 2024
8c27b3a
addressing review comments
vlntb Nov 20, 2024
ac9ef08
addressing review comments
vlntb Nov 21, 2024
3f8ab63
code cleanup
vlntb Nov 21, 2024
0050eab
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Nov 21, 2024
3beaa43
fixing ValueEntry checks based on the combined shared and weak
vlntb Nov 27, 2024
1fa8519
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Nov 27, 2024
5a1790b
sync with develop
vlntb Dec 6, 2024
d8588d0
new ASSERTs for Antithesis
vlntb Dec 13, 2024
d610533
moving to structured bindings
vlntb Dec 16, 2024
cc2563f
Addressing review comments #1
vlntb Dec 16, 2024
f9650ea
Addressing review comments #2
vlntb Dec 16, 2024
f54fb8f
Addressing review comments #3
vlntb Dec 16, 2024
5bdab50
messages in ASSERTS
vlntb Dec 16, 2024
0b613fe
clang-format
vlntb Dec 16, 2024
0df59d4
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Dec 16, 2024
a5ccaf5
Revert "moving to structured bindings"
vlntb Dec 16, 2024
eefdb89
sync with develop
vlntb Dec 17, 2024
6aa0a0a
fixed special case in isWeak
vlntb Dec 31, 2024
4d5f016
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Dec 31, 2024
2cdabe6
removed formatter override
vlntb Jan 3, 2025
f371d88
adding comment
vlntb Jan 3, 2025
da54c14
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Jan 3, 2025
6a1c5da
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Mar 7, 2025
fe5efc8
ignore unknown pragmas
vlntb Mar 10, 2025
a8395dc
ignore unknown pragmas for MSVC
vlntb Mar 10, 2025
8b9ed31
handling linkage error for older version of GCC
vlntb Mar 10, 2025
a1a4a27
handling linkage error for different compilers
vlntb Mar 10, 2025
81ba89c
handling linkage error for different compilers 2
vlntb Mar 10, 2025
a1cb079
refactore add_compile_options
vlntb Mar 12, 2025
ddb2d9a
refactore add_compile_options 1
vlntb Mar 12, 2025
4952a67
sync with develop
vlntb Mar 12, 2025
03841c4
sync with develop
vlntb Mar 13, 2025
49993ca
clang-format
vlntb Mar 13, 2025
05b6a03
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Mar 21, 2025
3b0850e
remove unused
vlntb Mar 21, 2025
57e54a1
cleaned up includes using iwyu_tool.py
vlntb Mar 24, 2025
a518a16
clang-format
vlntb Mar 24, 2025
015f639
cosmetic
vlntb Mar 24, 2025
5ea915b
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Mar 25, 2025
d4a4344
Merge branch 'develop' into intrusive_shamap_inner_final
vlntb Mar 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
# GCC-specific fixes
add_compile_options(-Wno-unknown-pragmas -Wno-subobject-linkage)
# -Wno-subobject-linkage can be removed when we upgrade GCC version to at least 13.3
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# Clang-specific fixes
add_compile_options(-Wno-unknown-warning-option) # Ignore unknown warning options
elseif(MSVC)
# MSVC-specific fixes
add_compile_options(/wd4068) # Ignore unknown pragmas
endif()

# make GIT_COMMIT_HASH define available to all sources
find_package(Git)
if(Git_FOUND)
Expand Down
Loading
Loading
0