├── .clang-format ├── .gitattributes ├── .gitignore ├── featureflags └── libmalloc.plist ├── include └── malloc │ ├── _malloc.h │ └── malloc.h ├── libmalloc.xcodeproj └── project.pbxproj ├── man ├── malloc.3 ├── malloc_size.3 ├── malloc_zone_malloc.3 └── manpages.lst ├── private ├── make_tapi_happy.h ├── malloc_implementation.h ├── malloc_private.h └── stack_logging.h ├── resolver ├── resolver.c ├── resolver.h └── resolver_internal.h ├── src ├── base.h ├── bitarray.c ├── bitarray.h ├── debug.h ├── dtrace.h ├── empty.s ├── frozen_malloc.c ├── frozen_malloc.h ├── internal.h ├── legacy_malloc.c ├── legacy_malloc.h ├── locking.h ├── magazine_inline.h ├── magazine_large.c ├── magazine_malloc.c ├── magazine_malloc.h ├── magazine_medium.c ├── magazine_rack.c ├── magazine_rack.h ├── magazine_small.c ├── magazine_tiny.c ├── magazine_zone.h ├── magmallocProvider.d ├── malloc.c ├── malloc_common.c ├── malloc_common.h ├── malloc_printf.c ├── msl_lite_support.c ├── nano_malloc.c ├── nano_malloc.h ├── nano_malloc_common.c ├── nano_malloc_common.h ├── nano_zone.h ├── nano_zone_common.h ├── nanov2_malloc.c ├── nanov2_malloc.h ├── nanov2_zone.h ├── pguard_malloc.c ├── pguard_malloc.h ├── platform.h ├── printf.h ├── purgeable_malloc.c ├── purgeable_malloc.h ├── thresholds.h ├── trace.h ├── vm.c └── vm.h ├── tests ├── Makefile ├── MallocBenchTest │ ├── BMALLOC │ │ └── bmalloc │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── Configurations │ │ │ ├── Base.xcconfig │ │ │ ├── DebugRelease.xcconfig │ │ │ ├── DebugRelease.xcconfigsv │ │ │ ├── bmalloc.xcconfig │ │ │ └── mbmalloc.xcconfig │ │ │ ├── Makefile │ │ │ ├── PlatformMac.cmake │ │ │ ├── bmalloc.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── bmalloc │ │ │ ├── Algorithm.h │ │ │ ├── AllIsoHeaps.cpp │ │ │ ├── AllIsoHeaps.h │ │ │ ├── AllIsoHeapsInlines.h │ │ │ ├── Allocator.cpp │ │ │ ├── Allocator.h │ │ │ ├── AvailableMemory.cpp │ │ │ ├── AvailableMemory.h │ │ │ ├── BAssert.h │ │ │ ├── BCompiler.h │ │ │ ├── BExport.h │ │ │ ├── BInline.h │ │ │ ├── BMalloced.h │ │ │ ├── BPlatform.h │ │ │ ├── Bits.h │ │ │ ├── BulkDecommit.h │ │ │ ├── BumpAllocator.h │ │ │ ├── BumpRange.h │ │ │ ├── Cache.cpp │ │ │ ├── Cache.h │ │ │ ├── Chunk.h │ │ │ ├── CryptoRandom.cpp │ │ │ ├── CryptoRandom.h │ │ │ ├── Deallocator.cpp │ │ │ ├── Deallocator.h │ │ │ ├── DebugHeap.cpp │ │ │ ├── DebugHeap.h │ │ │ ├── DeferredDecommit.h │ │ │ ├── DeferredDecommitInlines.h │ │ │ ├── DeferredTrigger.h │ │ │ ├── DeferredTriggerInlines.h │ │ │ ├── EligibilityResult.h │ │ │ ├── EligibilityResultInlines.h │ │ │ ├── Environment.cpp │ │ │ ├── Environment.h │ │ │ ├── FixedVector.h │ │ │ ├── FreeList.cpp │ │ │ ├── FreeList.h │ │ │ ├── FreeListInlines.h │ │ │ ├── Gigacage.cpp │ │ │ ├── Gigacage.h │ │ │ ├── Heap.cpp │ │ │ ├── Heap.h │ │ │ ├── HeapKind.cpp │ │ │ ├── HeapKind.h │ │ │ ├── IsoAllocator.h │ │ │ ├── IsoAllocatorInlines.h │ │ │ ├── IsoConfig.h │ │ │ ├── IsoDeallocator.h │ │ │ ├── IsoDeallocatorInlines.h │ │ │ ├── IsoDirectory.h │ │ │ ├── IsoDirectoryInlines.h │ │ │ ├── IsoDirectoryPage.h │ │ │ ├── IsoDirectoryPageInlines.h │ │ │ ├── IsoHeap.h │ │ │ ├── IsoHeapImpl.cpp │ │ │ ├── IsoHeapImpl.h │ │ │ ├── IsoHeapImplInlines.h │ │ │ ├── IsoHeapInlines.h │ │ │ ├── IsoPage.cpp │ │ │ ├── IsoPage.h │ │ │ ├── IsoPageInlines.h │ │ │ ├── IsoPageTrigger.h │ │ │ ├── IsoTLS.cpp │ │ │ ├── IsoTLS.h │ │ │ ├── IsoTLSAllocatorEntry.h │ │ │ ├── IsoTLSAllocatorEntryInlines.h │ │ │ ├── IsoTLSDeallocatorEntry.h │ │ │ ├── IsoTLSDeallocatorEntryInlines.h │ │ │ ├── IsoTLSEntry.cpp │ │ │ ├── IsoTLSEntry.h │ │ │ ├── IsoTLSEntryInlines.h │ │ │ ├── IsoTLSInlines.h │ │ │ ├── IsoTLSLayout.cpp │ │ │ ├── IsoTLSLayout.h │ │ │ ├── LargeMap.cpp │ │ │ ├── LargeMap.h │ │ │ ├── LargeRange.h │ │ │ ├── LineMetadata.h │ │ │ ├── List.h │ │ │ ├── Logging.cpp │ │ │ ├── Logging.h │ │ │ ├── Map.h │ │ │ ├── Mutex.cpp │ │ │ ├── Mutex.h │ │ │ ├── Object.h │ │ │ ├── ObjectType.cpp │ │ │ ├── ObjectType.h │ │ │ ├── PerHeapKind.h │ │ │ ├── PerProcess.cpp │ │ │ ├── PerProcess.h │ │ │ ├── PerThread.cpp │ │ │ ├── PerThread.h │ │ │ ├── PhysicalPageMap.h │ │ │ ├── ProcessCheck.h │ │ │ ├── ProcessCheck.mm │ │ │ ├── Range.h │ │ │ ├── Scavenger.cpp │ │ │ ├── Scavenger.h │ │ │ ├── ScopeExit.h │ │ │ ├── Sizes.h │ │ │ ├── SmallLine.h │ │ │ ├── SmallPage.h │ │ │ ├── Syscall.h │ │ │ ├── VMAllocate.h │ │ │ ├── VMHeap.cpp │ │ │ ├── VMHeap.h │ │ │ ├── Vector.h │ │ │ ├── Zone.cpp │ │ │ ├── Zone.h │ │ │ ├── bmalloc.cpp │ │ │ ├── bmalloc.h │ │ │ ├── darwin │ │ │ │ ├── BSoftLinking.h │ │ │ │ └── MemoryStatusSPI.h │ │ │ └── mbmalloc.cpp │ │ │ └── test │ │ │ └── testbmalloc.cpp │ ├── MALLOC_BENCH │ │ ├── CMakeLists.txt │ │ ├── MallocBench.xcodeproj │ │ │ └── project.pbxproj │ │ ├── MallocBench │ │ │ ├── Benchmark.cpp │ │ │ ├── Benchmark.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CPUCount.cpp │ │ │ ├── CPUCount.h │ │ │ ├── CommandLine.cpp │ │ │ ├── CommandLine.h │ │ │ ├── Interpreter.cpp │ │ │ ├── Interpreter.h │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── alloc_free.cpp │ │ │ ├── alloc_free.h │ │ │ ├── balloon.cpp │ │ │ ├── balloon.h │ │ │ ├── big.cpp │ │ │ ├── big.h │ │ │ ├── churn.cpp │ │ │ ├── churn.h │ │ │ ├── facebook.cpp │ │ │ ├── facebook.h │ │ │ ├── facebook.ops │ │ │ ├── flickr.cpp │ │ │ ├── flickr.h │ │ │ ├── flickr.ops │ │ │ ├── flickr_memory_warning.ops │ │ │ ├── fragment.cpp │ │ │ ├── fragment.h │ │ │ ├── list.cpp │ │ │ ├── list.h │ │ │ ├── main.cpp │ │ │ ├── mbmalloc.cpp │ │ │ ├── mbmalloc.h │ │ │ ├── medium.cpp │ │ │ ├── medium.h │ │ │ ├── message.cpp │ │ │ ├── message.h │ │ │ ├── nimlang.cpp │ │ │ ├── nimlang.h │ │ │ ├── nimlang.ops │ │ │ ├── realloc.cpp │ │ │ ├── realloc.h │ │ │ ├── reddit.cpp │ │ │ ├── reddit.h │ │ │ ├── reddit.ops │ │ │ ├── reddit_memory_warning.ops │ │ │ ├── stress.cpp │ │ │ ├── stress.h │ │ │ ├── stress_aligned.cpp │ │ │ ├── stress_aligned.h │ │ │ ├── theverge.cpp │ │ │ ├── theverge.h │ │ │ ├── theverge.ops │ │ │ ├── theverge_memory_warning.ops │ │ │ ├── tree.cpp │ │ │ └── tree.h │ │ └── run-malloc-benchmarks │ ├── Makefile.dummy │ ├── Makefile.malloc-bench │ ├── MallocBench.plist │ ├── get_task_allow_entitlement.plist │ └── scripts │ │ ├── BenchBMallocToSystemV2 │ │ ├── benchrun-mallocbench.lua │ │ ├── env.setup │ │ └── run-malloc-benchmarks.lua ├── aligned_alloc_test.c ├── asan.c ├── basic_malloc_free_perf.c ├── calloc_test.c ├── introspect_tests.c ├── libmalloc_tests.xcodeproj │ └── project.pbxproj ├── madvise.c ├── magazine_malloc.c ├── magazine_medium_test.c ├── magazine_rack.c ├── magazine_small_test.c ├── magazine_testing.h ├── magazine_tiny_test.c ├── malloc_claimed_address_tests.c ├── malloc_free_test.c ├── malloc_heap_check_test.c ├── malloc_size_test.c ├── malloc_zone_unregister_test.c ├── memory_pressure.c ├── nano_tests.c ├── perf_contended_malloc_free.c ├── perf_realloc.c ├── pguard_allocator.c ├── pguard_internals.c ├── pguard_testing.h ├── posix_memalign_test.c ├── reallocarray.c ├── region_cookie_test.c ├── stress_test.c └── tsan.c ├── tools ├── malloc_replay.cpp ├── malloc_replay.h ├── malloc_replay_plotter.py └── read-radix-tree ├── xcodeconfig ├── interposable.list ├── libmalloc.xcconfig ├── libmalloc_eos.xcconfig ├── libmalloc_resolved.xcconfig ├── libmalloc_resolver.xcconfig └── libmalloc_static.xcconfig └── xcodescripts ├── install-codes.sh ├── manpages.sh ├── reindent.sh └── sanitise_headers.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/.gitignore -------------------------------------------------------------------------------- /featureflags/libmalloc.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/featureflags/libmalloc.plist -------------------------------------------------------------------------------- /include/malloc/_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/include/malloc/_malloc.h -------------------------------------------------------------------------------- /include/malloc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/include/malloc/malloc.h -------------------------------------------------------------------------------- /libmalloc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/libmalloc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /man/malloc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/man/malloc.3 -------------------------------------------------------------------------------- /man/malloc_size.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/man/malloc_size.3 -------------------------------------------------------------------------------- /man/malloc_zone_malloc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/man/malloc_zone_malloc.3 -------------------------------------------------------------------------------- /man/manpages.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/man/manpages.lst -------------------------------------------------------------------------------- /private/make_tapi_happy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/private/make_tapi_happy.h -------------------------------------------------------------------------------- /private/malloc_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/private/malloc_implementation.h -------------------------------------------------------------------------------- /private/malloc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/private/malloc_private.h -------------------------------------------------------------------------------- /private/stack_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/private/stack_logging.h -------------------------------------------------------------------------------- /resolver/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/resolver/resolver.c -------------------------------------------------------------------------------- /resolver/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/resolver/resolver.h -------------------------------------------------------------------------------- /resolver/resolver_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/resolver/resolver_internal.h -------------------------------------------------------------------------------- /src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/base.h -------------------------------------------------------------------------------- /src/bitarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/bitarray.c -------------------------------------------------------------------------------- /src/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/bitarray.h -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/dtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/dtrace.h -------------------------------------------------------------------------------- /src/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/empty.s -------------------------------------------------------------------------------- /src/frozen_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/frozen_malloc.c -------------------------------------------------------------------------------- /src/frozen_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/frozen_malloc.h -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/legacy_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/legacy_malloc.c -------------------------------------------------------------------------------- /src/legacy_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/legacy_malloc.h -------------------------------------------------------------------------------- /src/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/locking.h -------------------------------------------------------------------------------- /src/magazine_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_inline.h -------------------------------------------------------------------------------- /src/magazine_large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_large.c -------------------------------------------------------------------------------- /src/magazine_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_malloc.c -------------------------------------------------------------------------------- /src/magazine_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_malloc.h -------------------------------------------------------------------------------- /src/magazine_medium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_medium.c -------------------------------------------------------------------------------- /src/magazine_rack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_rack.c -------------------------------------------------------------------------------- /src/magazine_rack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_rack.h -------------------------------------------------------------------------------- /src/magazine_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_small.c -------------------------------------------------------------------------------- /src/magazine_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_tiny.c -------------------------------------------------------------------------------- /src/magazine_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magazine_zone.h -------------------------------------------------------------------------------- /src/magmallocProvider.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/magmallocProvider.d -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/malloc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/malloc_common.c -------------------------------------------------------------------------------- /src/malloc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/malloc_common.h -------------------------------------------------------------------------------- /src/malloc_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/malloc_printf.c -------------------------------------------------------------------------------- /src/msl_lite_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/msl_lite_support.c -------------------------------------------------------------------------------- /src/nano_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_malloc.c -------------------------------------------------------------------------------- /src/nano_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_malloc.h -------------------------------------------------------------------------------- /src/nano_malloc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_malloc_common.c -------------------------------------------------------------------------------- /src/nano_malloc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_malloc_common.h -------------------------------------------------------------------------------- /src/nano_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_zone.h -------------------------------------------------------------------------------- /src/nano_zone_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nano_zone_common.h -------------------------------------------------------------------------------- /src/nanov2_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nanov2_malloc.c -------------------------------------------------------------------------------- /src/nanov2_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nanov2_malloc.h -------------------------------------------------------------------------------- /src/nanov2_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/nanov2_zone.h -------------------------------------------------------------------------------- /src/pguard_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/pguard_malloc.c -------------------------------------------------------------------------------- /src/pguard_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/pguard_malloc.h -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/printf.h -------------------------------------------------------------------------------- /src/purgeable_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/purgeable_malloc.c -------------------------------------------------------------------------------- /src/purgeable_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/purgeable_malloc.h -------------------------------------------------------------------------------- /src/thresholds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/thresholds.h -------------------------------------------------------------------------------- /src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/trace.h -------------------------------------------------------------------------------- /src/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/vm.c -------------------------------------------------------------------------------- /src/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/src/vm.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/ChangeLog -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/Base.xcconfig -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/DebugRelease.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/DebugRelease.xcconfig -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/DebugRelease.xcconfigsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/DebugRelease.xcconfigsv -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/bmalloc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/bmalloc.xcconfig -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/mbmalloc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/Configurations/mbmalloc.xcconfig -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/PlatformMac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/PlatformMac.cmake -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Algorithm.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeaps.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeaps.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeapsInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AllIsoHeapsInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Allocator.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Allocator.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AvailableMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AvailableMemory.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AvailableMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/AvailableMemory.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BAssert.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BCompiler.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BExport.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BInline.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BMalloced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BMalloced.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BPlatform.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Bits.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BulkDecommit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BulkDecommit.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BumpAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BumpAllocator.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BumpRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/BumpRange.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Cache.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Cache.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Chunk.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/CryptoRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/CryptoRandom.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/CryptoRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/CryptoRandom.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Deallocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Deallocator.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Deallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Deallocator.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DebugHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DebugHeap.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DebugHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DebugHeap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredDecommit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredDecommit.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredDecommitInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredDecommitInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredTrigger.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredTriggerInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/DeferredTriggerInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/EligibilityResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/EligibilityResult.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/EligibilityResultInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/EligibilityResultInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Environment.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Environment.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FixedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FixedVector.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeList.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeList.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeListInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/FreeListInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Gigacage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Gigacage.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Gigacage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Gigacage.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Heap.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Heap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/HeapKind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/HeapKind.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/HeapKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/HeapKind.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoAllocator.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoAllocatorInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoAllocatorInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoConfig.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDeallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDeallocator.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDeallocatorInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDeallocatorInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectory.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryPage.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryPageInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoDirectoryPageInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImpl.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImpl.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImplInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapImplInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoHeapInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPage.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPage.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPageInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPageInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPageTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoPageTrigger.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLS.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLS.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSAllocatorEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSAllocatorEntry.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSAllocatorEntryInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSAllocatorEntryInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSDeallocatorEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSDeallocatorEntry.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSDeallocatorEntryInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSDeallocatorEntryInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntry.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntry.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntryInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSEntryInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSInlines.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSLayout.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/IsoTLSLayout.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeMap.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeMap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LargeRange.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LineMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/LineMetadata.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/List.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Logging.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Logging.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Map.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Mutex.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Mutex.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Object.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ObjectType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ObjectType.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ObjectType.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerHeapKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerHeapKind.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerProcess.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerProcess.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerThread.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PerThread.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PhysicalPageMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/PhysicalPageMap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ProcessCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ProcessCheck.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ProcessCheck.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ProcessCheck.mm -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Range.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Scavenger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Scavenger.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Scavenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Scavenger.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ScopeExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/ScopeExit.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Sizes.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/SmallLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/SmallLine.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/SmallPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/SmallPage.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Syscall.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMAllocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMAllocate.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMHeap.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/VMHeap.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Vector.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Zone.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/Zone.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/bmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/bmalloc.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/bmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/bmalloc.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/darwin/BSoftLinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/darwin/BSoftLinking.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/darwin/MemoryStatusSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/darwin/MemoryStatusSPI.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/mbmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/bmalloc/mbmalloc.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/BMALLOC/bmalloc/test/testbmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/BMALLOC/bmalloc/test/testbmalloc.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(MallocBench) 2 | -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Benchmark.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Benchmark.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CMakeLists.txt -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CPUCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CPUCount.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CPUCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CPUCount.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CommandLine.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/CommandLine.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Interpreter.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Interpreter.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Memory.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/Memory.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/alloc_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/alloc_free.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/alloc_free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/alloc_free.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/balloon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/balloon.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/balloon.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/big.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/big.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/big.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/big.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/churn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/churn.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/churn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/churn.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/facebook.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr_memory_warning.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/flickr_memory_warning.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/fragment.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/fragment.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/list.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/list.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/main.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/mbmalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/mbmalloc.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/mbmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/mbmalloc.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/medium.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/medium.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/message.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/message.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/nimlang.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/realloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/realloc.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/realloc.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit_memory_warning.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/reddit_memory_warning.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress_aligned.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress_aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/stress_aligned.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge_memory_warning.ops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/theverge_memory_warning.ops -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/tree.cpp -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/MallocBench/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/MallocBench/tree.h -------------------------------------------------------------------------------- /tests/MallocBenchTest/MALLOC_BENCH/run-malloc-benchmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MALLOC_BENCH/run-malloc-benchmarks -------------------------------------------------------------------------------- /tests/MallocBenchTest/Makefile.dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/Makefile.dummy -------------------------------------------------------------------------------- /tests/MallocBenchTest/Makefile.malloc-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/Makefile.malloc-bench -------------------------------------------------------------------------------- /tests/MallocBenchTest/MallocBench.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/MallocBench.plist -------------------------------------------------------------------------------- /tests/MallocBenchTest/get_task_allow_entitlement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/get_task_allow_entitlement.plist -------------------------------------------------------------------------------- /tests/MallocBenchTest/scripts/BenchBMallocToSystemV2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/scripts/BenchBMallocToSystemV2 -------------------------------------------------------------------------------- /tests/MallocBenchTest/scripts/benchrun-mallocbench.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/scripts/benchrun-mallocbench.lua -------------------------------------------------------------------------------- /tests/MallocBenchTest/scripts/env.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/scripts/env.setup -------------------------------------------------------------------------------- /tests/MallocBenchTest/scripts/run-malloc-benchmarks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/MallocBenchTest/scripts/run-malloc-benchmarks.lua -------------------------------------------------------------------------------- /tests/aligned_alloc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/aligned_alloc_test.c -------------------------------------------------------------------------------- /tests/asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/asan.c -------------------------------------------------------------------------------- /tests/basic_malloc_free_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/basic_malloc_free_perf.c -------------------------------------------------------------------------------- /tests/calloc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/calloc_test.c -------------------------------------------------------------------------------- /tests/introspect_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/introspect_tests.c -------------------------------------------------------------------------------- /tests/libmalloc_tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/libmalloc_tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/madvise.c -------------------------------------------------------------------------------- /tests/magazine_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_malloc.c -------------------------------------------------------------------------------- /tests/magazine_medium_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_medium_test.c -------------------------------------------------------------------------------- /tests/magazine_rack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_rack.c -------------------------------------------------------------------------------- /tests/magazine_small_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_small_test.c -------------------------------------------------------------------------------- /tests/magazine_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_testing.h -------------------------------------------------------------------------------- /tests/magazine_tiny_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/magazine_tiny_test.c -------------------------------------------------------------------------------- /tests/malloc_claimed_address_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/malloc_claimed_address_tests.c -------------------------------------------------------------------------------- /tests/malloc_free_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/malloc_free_test.c -------------------------------------------------------------------------------- /tests/malloc_heap_check_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/malloc_heap_check_test.c -------------------------------------------------------------------------------- /tests/malloc_size_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/malloc_size_test.c -------------------------------------------------------------------------------- /tests/malloc_zone_unregister_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/malloc_zone_unregister_test.c -------------------------------------------------------------------------------- /tests/memory_pressure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/memory_pressure.c -------------------------------------------------------------------------------- /tests/nano_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/nano_tests.c -------------------------------------------------------------------------------- /tests/perf_contended_malloc_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/perf_contended_malloc_free.c -------------------------------------------------------------------------------- /tests/perf_realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/perf_realloc.c -------------------------------------------------------------------------------- /tests/pguard_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/pguard_allocator.c -------------------------------------------------------------------------------- /tests/pguard_internals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/pguard_internals.c -------------------------------------------------------------------------------- /tests/pguard_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/pguard_testing.h -------------------------------------------------------------------------------- /tests/posix_memalign_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/posix_memalign_test.c -------------------------------------------------------------------------------- /tests/reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/reallocarray.c -------------------------------------------------------------------------------- /tests/region_cookie_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/region_cookie_test.c -------------------------------------------------------------------------------- /tests/stress_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/stress_test.c -------------------------------------------------------------------------------- /tests/tsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tests/tsan.c -------------------------------------------------------------------------------- /tools/malloc_replay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tools/malloc_replay.cpp -------------------------------------------------------------------------------- /tools/malloc_replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tools/malloc_replay.h -------------------------------------------------------------------------------- /tools/malloc_replay_plotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tools/malloc_replay_plotter.py -------------------------------------------------------------------------------- /tools/read-radix-tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/tools/read-radix-tree -------------------------------------------------------------------------------- /xcodeconfig/interposable.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodeconfig/interposable.list -------------------------------------------------------------------------------- /xcodeconfig/libmalloc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodeconfig/libmalloc.xcconfig -------------------------------------------------------------------------------- /xcodeconfig/libmalloc_eos.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodeconfig/libmalloc_eos.xcconfig -------------------------------------------------------------------------------- /xcodeconfig/libmalloc_resolved.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodeconfig/libmalloc_resolved.xcconfig -------------------------------------------------------------------------------- /xcodeconfig/libmalloc_resolver.xcconfig: -------------------------------------------------------------------------------- 1 | #include "libmalloc.xcconfig" 2 | 3 | 4 | -------------------------------------------------------------------------------- /xcodeconfig/libmalloc_static.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodeconfig/libmalloc_static.xcconfig -------------------------------------------------------------------------------- /xcodescripts/install-codes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodescripts/install-codes.sh -------------------------------------------------------------------------------- /xcodescripts/manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodescripts/manpages.sh -------------------------------------------------------------------------------- /xcodescripts/reindent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodescripts/reindent.sh -------------------------------------------------------------------------------- /xcodescripts/sanitise_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-opensource/libmalloc/HEAD/xcodescripts/sanitise_headers.sh --------------------------------------------------------------------------------