[compiler-rt] r369606 - [GWP-ASan] Remove c++ standard lib dependency.
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 21 17:22:56 PDT 2019
Author: phosek
Date: Wed Aug 21 17:22:56 2019
New Revision: 369606
URL: http://llvm.org/viewvc/llvm-project?rev=369606&view=rev
Log:
[GWP-ASan] Remove c++ standard lib dependency.
Remove c++ standard library dependency for now for @phosek. They have a
complicated build system that breaks with the fuzzer target here.
Also added a todo to remedy later.
Differential Revision: https://reviews.llvm.org/D66568
Modified:
compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
compiler-rt/trunk/lib/gwp_asan/stack_trace_compressor_fuzzer.cpp
Modified: compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt?rev=369606&r1=369605&r2=369606&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt Wed Aug 21 17:22:56 2019
@@ -108,8 +108,11 @@ if (COMPILER_RT_HAS_GWP_ASAN)
${GWP_ASAN_HEADERS})
set_target_properties(
stack_trace_compressor_fuzzer PROPERTIES FOLDER "Fuzzers")
- target_compile_options(
- stack_trace_compressor_fuzzer PRIVATE -fsanitize=fuzzer-no-link)
+
+ # TODO(phosek): Remove -nostdlib++ and remove the "no c++ standard library
+ # for compiler-rt" dependency here.
+ target_compile_options(stack_trace_compressor_fuzzer
+ PRIVATE -nostdlib++ -fsanitize=fuzzer-no-link)
set_target_properties(
stack_trace_compressor_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
add_dependencies(stack_trace_compressor_fuzzer fuzzer)
Modified: compiler-rt/trunk/lib/gwp_asan/stack_trace_compressor_fuzzer.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/gwp_asan/stack_trace_compressor_fuzzer.cpp?rev=369606&r1=369605&r2=369606&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/stack_trace_compressor_fuzzer.cpp (original)
+++ compiler-rt/trunk/lib/gwp_asan/stack_trace_compressor_fuzzer.cpp Wed Aug 21 17:22:56 2019
@@ -1,8 +1,7 @@
-#include <cstddef>
-#include <cstdint>
-#include <cstdio>
-#include <cstdlib>
-#include <vector>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
#include "gwp_asan/stack_trace_compressor.h"
@@ -10,23 +9,22 @@ constexpr size_t kBytesForLargestVarInt
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
size_t BufferSize = kBytesForLargestVarInt * Size / sizeof(uintptr_t);
- std::vector<uint8_t> Buffer(BufferSize);
- std::vector<uint8_t> Buffer2(BufferSize);
+ uint8_t *Buffer = reinterpret_cast<uint8_t *>(malloc(BufferSize));
+ uint8_t *Buffer2 = reinterpret_cast<uint8_t *>(malloc(BufferSize));
// Unpack the fuzz bytes.
gwp_asan::compression::unpack(Data, Size,
- reinterpret_cast<uintptr_t *>(Buffer2.data()),
+ reinterpret_cast<uintptr_t *>(Buffer2),
BufferSize / sizeof(uintptr_t));
// Pack the fuzz bytes.
- size_t BytesWritten = gwp_asan::compression::pack(
- reinterpret_cast<const uintptr_t *>(Data), Size / sizeof(uintptr_t),
- Buffer.data(), BufferSize);
+ size_t BytesWritten =
+ gwp_asan::compression::pack(reinterpret_cast<const uintptr_t *>(Data),
+ Size / sizeof(uintptr_t), Buffer, BufferSize);
// Unpack the compressed buffer.
size_t DecodedElements = gwp_asan::compression::unpack(
- Buffer.data(), BytesWritten,
- reinterpret_cast<uintptr_t *>(Buffer2.data()),
+ Buffer, BytesWritten, reinterpret_cast<uintptr_t *>(Buffer2),
BufferSize / sizeof(uintptr_t));
// Ensure that every element was encoded and decoded properly.
@@ -35,8 +33,7 @@ extern "C" int LLVMFuzzerTestOneInput(co
// Ensure that the compression and uncompression resulted in the same trace.
const uintptr_t *FuzzPtrs = reinterpret_cast<const uintptr_t *>(Data);
- const uintptr_t *DecodedPtrs =
- reinterpret_cast<const uintptr_t *>(Buffer2.data());
+ const uintptr_t *DecodedPtrs = reinterpret_cast<const uintptr_t *>(Buffer2);
for (size_t i = 0; i < Size / sizeof(uintptr_t); ++i) {
if (FuzzPtrs[i] != DecodedPtrs[i]) {
fprintf(stderr, "FuzzPtrs[%zu] != DecodedPtrs[%zu] (0x%zx vs. 0x%zx)", i,
More information about the llvm-commits
mailing list