1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/tools/llvm-rust-demangle-fuzzer/llvm-rust-demangle-fuzzer.cpp
Tomasz Miąsko 944986d882 Add fuzzer for Rust demangler
Reviewed By: dblaikie

Differential Revision: https://reviews.llvm.org/D101823
2021-05-05 12:50:50 -07:00

22 lines
774 B
C++

//===--- llvm-demangle-fuzzer.cpp - Fuzzer for the Rust Demangler ---------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/Demangle/Demangle.h"
#include <cstdint>
#include <cstdlib>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
std::string NullTerminatedString((const char *)Data, Size);
int Status = 0;
char *Demangled = llvm::rustDemangle(NullTerminatedString.c_str(), nullptr,
nullptr, &Status);
std::free(Demangled);
return 0;
}