| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include <cstdint>
- #include <cstring>
- #include "llvm/ADT/StringRef.h"
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- #include "toolchain/diagnostics/null_diagnostics.h"
- #include "toolchain/lexer/string_literal.h"
- namespace Carbon::Testing {
- // NOLINTNEXTLINE: Match the documented fuzzer entry point declaration style.
- extern "C" int LLVMFuzzerTestOneInput(const unsigned char* data,
- std::size_t size) {
- auto token = LexedStringLiteral::Lex(
- llvm::StringRef(reinterpret_cast<const char*>(data), size));
- if (!token) {
- // Lexically not a string literal.
- return 0;
- }
- // Check multiline flag was computed correctly.
- if (token->IsMultiLine() != token->Text().contains('\n')) {
- __builtin_trap();
- }
- volatile auto value =
- token->ComputeValue(NullDiagnosticEmitter<const char*>());
- (void)value;
- return 0;
- }
- } // namespace Carbon::Testing
|