| //===-- cxx_proto.proto - Protobuf description of C++ ---------------------===// |
| // 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 |
| //===----------------------------------------------------------------------===// |
| /// This file describes a subset of C++ as a protobuf. It is used to |
| /// more easily find interesting inputs for fuzzing Clang. |
| //===----------------------------------------------------------------------===// |
| required int32 varnum = 1; |
| required VarRef varref = 1; |
| required Rvalue left = 2; |
| required Rvalue right = 3; |
| message AssignmentStatement { |
| required Lvalue lvalue = 1; |
| required Rvalue rvalue = 2; |
| required Rvalue cond = 1; |
| required StatementSeq if_body = 2; |
| required StatementSeq else_body = 3; |
| required Rvalue cond = 1; |
| required StatementSeq body = 2; |
| AssignmentStatement assignment = 1; |
| repeated Statement statements = 1; |
| required StatementSeq statements = 1; |