├── README.md ├── hash ├── AdaptiveArrayHashSet.java ├── AdaptiveArrayHashSetOpt.java ├── BenchOpsThread.java ├── CheckingThread.java ├── ConcurrentHashSet.java ├── ISet.java ├── LFArrayFSet.java ├── LFArrayHashSet.java ├── LFArrayHashSetOpt.java ├── LFListFSet.java ├── LFListHashSet.java ├── LFListNode.java ├── Makefile ├── README ├── ResizingThread.java ├── SOHashSet.java ├── SetBench.java ├── WFArrayFSet.java ├── WFArrayHashSet.java ├── WFArrayOp.java ├── WFListFSet.java ├── WFListHashSet.java ├── WFListNode.java ├── lib │ └── java-getopt-1.0.13.jar └── test │ ├── mix.sh │ ├── mkcsv.sh │ ├── mkeps.sh │ └── mkpdf.sh ├── list ├── AdaptiveWFList.java ├── BenchOpsThread.java ├── HarrisList.java ├── HarrisListRTTI.java ├── ISet.java ├── LFList.java ├── LFList2.java ├── LazyList.java ├── ListBench.java ├── Makefile ├── README ├── SanityCheckThread.java ├── WFList.java ├── lib │ └── java-getopt-1.0.13.jar └── test │ ├── mix.sh │ ├── mkcsv.sh │ ├── mkeps.sh │ └── mkpdf.sh └── tsx_acceleration ├── Makefile.inc ├── alt-license └── rand_r_32.h ├── chash ├── Makefile ├── alt-license │ └── rand_r_32.h ├── bst.hpp ├── bst_cptr.hpp ├── bst_htm1.hpp ├── bst_htm1ff.hpp ├── bst_htm2.hpp ├── bst_htm2ff.hpp ├── bst_htm3.hpp ├── bst_htm3ff.hpp ├── common.hpp ├── hash.hpp ├── hash_cptr.hpp ├── hash_htm.hpp ├── hash_inplace.hpp ├── mm.hpp ├── mound.hpp ├── mound_htm.hpp ├── mound_htmff.hpp ├── pqbench.cpp ├── setbench.cpp ├── skip.hpp ├── skip_htm.hpp ├── skip_htmff.hpp ├── slpq.hpp ├── slpq_htm.hpp └── slpq_htmff.hpp ├── common ├── ThreadLocal.hpp ├── locks.hpp ├── platform.hpp └── pool.src ├── config.h ├── config.pl └── mindicator ├── Makefile ├── Mindicator.hpp ├── common.hpp ├── farray.hpp ├── fraser.hpp ├── fraser_HTM.hpp ├── lin32.hpp ├── lin32_static.hpp ├── list.cpp ├── list.hpp ├── lockcache.hpp ├── lockmin.hpp ├── mindicator_RTM.hpp ├── mindicator_RTM_cgl.hpp ├── mindicator_RTM_fgl.hpp ├── mindicator_cgl.hpp ├── mindicatortest.cpp ├── qc32.hpp ├── qc32_static.hpp ├── run_test.sh ├── skiplist.cpp ├── skiplist.hpp └── wf32.hpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/README.md -------------------------------------------------------------------------------- /hash/AdaptiveArrayHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/AdaptiveArrayHashSet.java -------------------------------------------------------------------------------- /hash/AdaptiveArrayHashSetOpt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/AdaptiveArrayHashSetOpt.java -------------------------------------------------------------------------------- /hash/BenchOpsThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/BenchOpsThread.java -------------------------------------------------------------------------------- /hash/CheckingThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/CheckingThread.java -------------------------------------------------------------------------------- /hash/ConcurrentHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/ConcurrentHashSet.java -------------------------------------------------------------------------------- /hash/ISet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/ISet.java -------------------------------------------------------------------------------- /hash/LFArrayFSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFArrayFSet.java -------------------------------------------------------------------------------- /hash/LFArrayHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFArrayHashSet.java -------------------------------------------------------------------------------- /hash/LFArrayHashSetOpt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFArrayHashSetOpt.java -------------------------------------------------------------------------------- /hash/LFListFSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFListFSet.java -------------------------------------------------------------------------------- /hash/LFListHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFListHashSet.java -------------------------------------------------------------------------------- /hash/LFListNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/LFListNode.java -------------------------------------------------------------------------------- /hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/Makefile -------------------------------------------------------------------------------- /hash/README: -------------------------------------------------------------------------------- 1 | java -cp .:./lib/java-getopt-1.0.13.jar SetBench 2 | -------------------------------------------------------------------------------- /hash/ResizingThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/ResizingThread.java -------------------------------------------------------------------------------- /hash/SOHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/SOHashSet.java -------------------------------------------------------------------------------- /hash/SetBench.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/SetBench.java -------------------------------------------------------------------------------- /hash/WFArrayFSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFArrayFSet.java -------------------------------------------------------------------------------- /hash/WFArrayHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFArrayHashSet.java -------------------------------------------------------------------------------- /hash/WFArrayOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFArrayOp.java -------------------------------------------------------------------------------- /hash/WFListFSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFListFSet.java -------------------------------------------------------------------------------- /hash/WFListHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFListHashSet.java -------------------------------------------------------------------------------- /hash/WFListNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/WFListNode.java -------------------------------------------------------------------------------- /hash/lib/java-getopt-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/lib/java-getopt-1.0.13.jar -------------------------------------------------------------------------------- /hash/test/mix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/test/mix.sh -------------------------------------------------------------------------------- /hash/test/mkcsv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/test/mkcsv.sh -------------------------------------------------------------------------------- /hash/test/mkeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/test/mkeps.sh -------------------------------------------------------------------------------- /hash/test/mkpdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/hash/test/mkpdf.sh -------------------------------------------------------------------------------- /list/AdaptiveWFList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/AdaptiveWFList.java -------------------------------------------------------------------------------- /list/BenchOpsThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/BenchOpsThread.java -------------------------------------------------------------------------------- /list/HarrisList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/HarrisList.java -------------------------------------------------------------------------------- /list/HarrisListRTTI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/HarrisListRTTI.java -------------------------------------------------------------------------------- /list/ISet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/ISet.java -------------------------------------------------------------------------------- /list/LFList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/LFList.java -------------------------------------------------------------------------------- /list/LFList2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/LFList2.java -------------------------------------------------------------------------------- /list/LazyList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/LazyList.java -------------------------------------------------------------------------------- /list/ListBench.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/ListBench.java -------------------------------------------------------------------------------- /list/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/Makefile -------------------------------------------------------------------------------- /list/README: -------------------------------------------------------------------------------- 1 | Run with: "java -cp .:./lib/java-getopt-1.0.13.jar ListBench" 2 | -------------------------------------------------------------------------------- /list/SanityCheckThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/SanityCheckThread.java -------------------------------------------------------------------------------- /list/WFList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/WFList.java -------------------------------------------------------------------------------- /list/lib/java-getopt-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/lib/java-getopt-1.0.13.jar -------------------------------------------------------------------------------- /list/test/mix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/test/mix.sh -------------------------------------------------------------------------------- /list/test/mkcsv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/test/mkcsv.sh -------------------------------------------------------------------------------- /list/test/mkeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/test/mkeps.sh -------------------------------------------------------------------------------- /list/test/mkpdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/list/test/mkpdf.sh -------------------------------------------------------------------------------- /tsx_acceleration/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/Makefile.inc -------------------------------------------------------------------------------- /tsx_acceleration/alt-license/rand_r_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/alt-license/rand_r_32.h -------------------------------------------------------------------------------- /tsx_acceleration/chash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/Makefile -------------------------------------------------------------------------------- /tsx_acceleration/chash/alt-license/rand_r_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/alt-license/rand_r_32.h -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_cptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_cptr.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm1.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm1ff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm1ff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm2.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm2ff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm2ff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm3.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/bst_htm3ff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/bst_htm3ff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/common.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/hash.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/hash_cptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/hash_cptr.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/hash_htm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/hash_htm.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/hash_inplace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/hash_inplace.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/mm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/mm.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/mound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/mound.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/mound_htm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/mound_htm.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/mound_htmff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/mound_htmff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/pqbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/pqbench.cpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/setbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/setbench.cpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/skip.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/skip_htm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/skip_htm.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/skip_htmff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/skip_htmff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/slpq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/slpq.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/slpq_htm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/slpq_htm.hpp -------------------------------------------------------------------------------- /tsx_acceleration/chash/slpq_htmff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/chash/slpq_htmff.hpp -------------------------------------------------------------------------------- /tsx_acceleration/common/ThreadLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/common/ThreadLocal.hpp -------------------------------------------------------------------------------- /tsx_acceleration/common/locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/common/locks.hpp -------------------------------------------------------------------------------- /tsx_acceleration/common/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/common/platform.hpp -------------------------------------------------------------------------------- /tsx_acceleration/common/pool.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/common/pool.src -------------------------------------------------------------------------------- /tsx_acceleration/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/config.h -------------------------------------------------------------------------------- /tsx_acceleration/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/config.pl -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/Makefile -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/Mindicator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/Mindicator.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/common.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/farray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/farray.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/fraser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/fraser.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/fraser_HTM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/fraser_HTM.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/lin32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/lin32.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/lin32_static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/lin32_static.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/list.cpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/list.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/lockcache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/lockcache.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/lockmin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/lockmin.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/mindicator_RTM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/mindicator_RTM.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/mindicator_RTM_cgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/mindicator_RTM_cgl.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/mindicator_RTM_fgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/mindicator_RTM_fgl.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/mindicator_cgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/mindicator_cgl.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/mindicatortest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/mindicatortest.cpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/qc32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/qc32.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/qc32_static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/qc32_static.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/run_test.sh -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/skiplist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/skiplist.cpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/skiplist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/skiplist.hpp -------------------------------------------------------------------------------- /tsx_acceleration/mindicator/wf32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfs409/nonblocking/HEAD/tsx_acceleration/mindicator/wf32.hpp --------------------------------------------------------------------------------