
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
102 lines
3.4 KiB
C++
102 lines
3.4 KiB
C++
//==-- proto_to_cxx.cpp - Protobuf-C++ conversion --------------------------==//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Implements functions for converting between protobufs and C++.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "proto_to_cxx.h"
|
|
#include "cxx_proto.pb.h"
|
|
|
|
#include <ostream>
|
|
#include <sstream>
|
|
|
|
namespace clang_fuzzer {
|
|
|
|
// Forward decls.
|
|
std::ostream &operator<<(std::ostream &os, const BinaryOp &x);
|
|
std::ostream &operator<<(std::ostream &os, const StatementSeq &x);
|
|
|
|
// Proto to C++.
|
|
std::ostream &operator<<(std::ostream &os, const Const &x) {
|
|
return os << "(" << x.val() << ")";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const VarRef &x) {
|
|
return os << "a[" << (static_cast<uint32_t>(x.varnum()) % 100) << "]";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const Lvalue &x) {
|
|
return os << x.varref();
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const Rvalue &x) {
|
|
if (x.has_varref()) return os << x.varref();
|
|
if (x.has_cons()) return os << x.cons();
|
|
if (x.has_binop()) return os << x.binop();
|
|
return os << "1";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const BinaryOp &x) {
|
|
os << "(" << x.left();
|
|
switch (x.op()) {
|
|
case BinaryOp::PLUS: os << "+"; break;
|
|
case BinaryOp::MINUS: os << "-"; break;
|
|
case BinaryOp::MUL: os << "*"; break;
|
|
case BinaryOp::DIV: os << "/"; break;
|
|
case BinaryOp::MOD: os << "%"; break;
|
|
case BinaryOp::XOR: os << "^"; break;
|
|
case BinaryOp::AND: os << "&"; break;
|
|
case BinaryOp::OR: os << "|"; break;
|
|
case BinaryOp::EQ: os << "=="; break;
|
|
case BinaryOp::NE: os << "!="; break;
|
|
case BinaryOp::LE: os << "<="; break;
|
|
case BinaryOp::GE: os << ">="; break;
|
|
case BinaryOp::LT: os << "<"; break;
|
|
case BinaryOp::GT: os << ">"; break;
|
|
}
|
|
return os << x.right() << ")";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const AssignmentStatement &x) {
|
|
return os << x.lvalue() << "=" << x.rvalue() << ";\n";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const IfElse &x) {
|
|
return os << "if (" << x.cond() << "){\n"
|
|
<< x.if_body() << "} else { \n"
|
|
<< x.else_body() << "}\n";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const While &x) {
|
|
return os << "while (" << x.cond() << "){\n" << x.body() << "}\n";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const Statement &x) {
|
|
if (x.has_assignment()) return os << x.assignment();
|
|
if (x.has_ifelse()) return os << x.ifelse();
|
|
if (x.has_while_loop()) return os << x.while_loop();
|
|
return os << "(void)0;\n";
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const StatementSeq &x) {
|
|
for (auto &st : x.statements()) os << st;
|
|
return os;
|
|
}
|
|
std::ostream &operator<<(std::ostream &os, const Function &x) {
|
|
return os << "void foo(int *a) {\n" << x.statements() << "}\n";
|
|
}
|
|
|
|
// ---------------------------------
|
|
|
|
std::string FunctionToString(const Function &input) {
|
|
std::ostringstream os;
|
|
os << input;
|
|
return os.str();
|
|
|
|
}
|
|
std::string ProtoToCxx(const uint8_t *data, size_t size) {
|
|
Function message;
|
|
if (!message.ParsePartialFromArray(data, size))
|
|
return "#error invalid proto\n";
|
|
return FunctionToString(message);
|
|
}
|
|
|
|
} // namespace clang_fuzzer
|