├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE.TXT ├── README.md ├── android └── app │ ├── README.md │ ├── prebuilt-apks │ ├── app-gwp_asan-release.apk │ ├── app-hwasan-release.apk │ ├── app-memtag_async-release.apk │ ├── app-memtag_sync-release.apk │ └── app-none-release.apk │ └── src │ ├── .gitignore │ ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── native-lib.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── sanitizertest │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build-and-sign.sh │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── dashboard ├── .gitignore ├── README.md ├── dashboard.go ├── go.mod └── go.sum ├── gwp-asan └── icse2024 │ ├── paper.pdf │ ├── paper │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── acmart.cls │ ├── acmnumeric.bbx │ ├── acmnumeric.cbx │ ├── fig │ │ └── crashes.svg │ ├── gwpasan.tex │ ├── ref.bib │ └── tex │ │ ├── abstract.tex │ │ ├── background.tex │ │ ├── conclusion.tex │ │ ├── eval.tex │ │ ├── future.tex │ │ ├── gwpasan.tex │ │ ├── intro.tex │ │ └── related.tex │ └── slides.pdf ├── hwaddress-sanitizer ├── Hardware Memory Tagging to make C_C++ memory safe(r) - iSecCon 2018.pdf ├── MTE-iSecCon-2018.pdf ├── MarkUs-GC.md ├── Memory tagging in LLVM and Android - LLVM DevMtg 2020.pdf ├── Top-byte-ignore and memory tagging_ Why would RISC-V care.pdf ├── check_registers │ ├── README.md │ └── check_registers.cc ├── create_qemu_image.sh ├── dumptags.cc ├── kernel-untag.patch ├── login_summer19_03_serebryany.pdf ├── outlined_calling_convention.h ├── plemm-2019.pdf ├── prove_hwasanwrap.smt2 ├── run_in_qemu_with_lam.sh ├── scan.cc └── sort_masks.py ├── memory-sanitizer └── Optimizing MemorySanitizer.pdf └── mte-dynamic-carveout ├── README.md └── spec.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/README.md -------------------------------------------------------------------------------- /android/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/README.md -------------------------------------------------------------------------------- /android/app/prebuilt-apks/app-gwp_asan-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/prebuilt-apks/app-gwp_asan-release.apk -------------------------------------------------------------------------------- /android/app/prebuilt-apks/app-hwasan-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/prebuilt-apks/app-hwasan-release.apk -------------------------------------------------------------------------------- /android/app/prebuilt-apks/app-memtag_async-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/prebuilt-apks/app-memtag_async-release.apk -------------------------------------------------------------------------------- /android/app/prebuilt-apks/app-memtag_sync-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/prebuilt-apks/app-memtag_sync-release.apk -------------------------------------------------------------------------------- /android/app/prebuilt-apks/app-none-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/prebuilt-apks/app-none-release.apk -------------------------------------------------------------------------------- /android/app/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/.gitignore -------------------------------------------------------------------------------- /android/app/src/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /android/app/src/app/src/main/java/com/example/sanitizertest/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/java/com/example/sanitizertest/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/build-and-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/build-and-sign.sh -------------------------------------------------------------------------------- /android/app/src/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/build.gradle -------------------------------------------------------------------------------- /android/app/src/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/gradle.properties -------------------------------------------------------------------------------- /android/app/src/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/app/src/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/gradlew -------------------------------------------------------------------------------- /android/app/src/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/android/app/src/gradlew.bat -------------------------------------------------------------------------------- /android/app/src/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Sanitizer Test App' 3 | -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- 1 | dashboard 2 | -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/dashboard/dashboard.go -------------------------------------------------------------------------------- /dashboard/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/dashboard/go.mod -------------------------------------------------------------------------------- /dashboard/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/dashboard/go.sum -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper.pdf -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/.gitignore -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/Makefile -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/README -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/acmart.cls -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/acmnumeric.bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/acmnumeric.bbx -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/acmnumeric.cbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/acmnumeric.cbx -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/fig/crashes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/fig/crashes.svg -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/gwpasan.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/gwpasan.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/ref.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/ref.bib -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/abstract.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/background.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/conclusion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/conclusion.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/eval.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/eval.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/future.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/future.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/gwpasan.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/gwpasan.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/intro.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/paper/tex/related.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/paper/tex/related.tex -------------------------------------------------------------------------------- /gwp-asan/icse2024/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/gwp-asan/icse2024/slides.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/Hardware Memory Tagging to make C_C++ memory safe(r) - iSecCon 2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/Hardware Memory Tagging to make C_C++ memory safe(r) - iSecCon 2018.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/MTE-iSecCon-2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/MTE-iSecCon-2018.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/MarkUs-GC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/MarkUs-GC.md -------------------------------------------------------------------------------- /hwaddress-sanitizer/Memory tagging in LLVM and Android - LLVM DevMtg 2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/Memory tagging in LLVM and Android - LLVM DevMtg 2020.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/Top-byte-ignore and memory tagging_ Why would RISC-V care.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/Top-byte-ignore and memory tagging_ Why would RISC-V care.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/check_registers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/check_registers/README.md -------------------------------------------------------------------------------- /hwaddress-sanitizer/check_registers/check_registers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/check_registers/check_registers.cc -------------------------------------------------------------------------------- /hwaddress-sanitizer/create_qemu_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/create_qemu_image.sh -------------------------------------------------------------------------------- /hwaddress-sanitizer/dumptags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/dumptags.cc -------------------------------------------------------------------------------- /hwaddress-sanitizer/kernel-untag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/kernel-untag.patch -------------------------------------------------------------------------------- /hwaddress-sanitizer/login_summer19_03_serebryany.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/login_summer19_03_serebryany.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/outlined_calling_convention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/outlined_calling_convention.h -------------------------------------------------------------------------------- /hwaddress-sanitizer/plemm-2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/plemm-2019.pdf -------------------------------------------------------------------------------- /hwaddress-sanitizer/prove_hwasanwrap.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/prove_hwasanwrap.smt2 -------------------------------------------------------------------------------- /hwaddress-sanitizer/run_in_qemu_with_lam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/run_in_qemu_with_lam.sh -------------------------------------------------------------------------------- /hwaddress-sanitizer/scan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/scan.cc -------------------------------------------------------------------------------- /hwaddress-sanitizer/sort_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/hwaddress-sanitizer/sort_masks.py -------------------------------------------------------------------------------- /memory-sanitizer/Optimizing MemorySanitizer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/memory-sanitizer/Optimizing MemorySanitizer.pdf -------------------------------------------------------------------------------- /mte-dynamic-carveout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/mte-dynamic-carveout/README.md -------------------------------------------------------------------------------- /mte-dynamic-carveout/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/sanitizers/HEAD/mte-dynamic-carveout/spec.md --------------------------------------------------------------------------------