gpt4 book ai didi

c++ - 内部编译器错误,同时使用 boost spirit x3

转载 作者:太空狗 更新时间:2023-10-29 20:02:29 25 4
gpt4 key购买 nike

我目前正在使用 boost spirit X3 为我的 DSL 实现表达式和运算符层次结构。

我认为我的解析器在语义上是正确的,但是当我尝试编译它时,在编译时,gcc 和 clang 具有巨大的内存占用,编译了无限长的时间,然后退出并显示“g++:内部编译器错误:被杀死(程序 cc1plus)”。

我试图将表达式解析器周围的代码最小化,但不知何故它并不那么微不足道

Here是一个演示。

谁能告诉我我做错了什么,或者这是一个错误?

编辑: 我认为问题出在某处:

auto const idx = as<ast::Operation>(helper::idxaccess_op > expression > ']');
auto const func = as<ast::Operation>(helper::func_call_op > expression%',' > ')');
auto const data = as<ast::Operation>(helper::access_op > expression);

auto const func_call_expr_def =
primary_expr >> *(idx|func|data);

如果我将 (idx|func|data) 更改为 (idx|func),它也会永远编译并使用多达 16GB 的 ram,但 gcc 能够编译它,然后解析器按照它应有的方式工作。

编辑 II:请查看上面的链接,这是我导致错误的示例。

最佳答案

我已经对您的源文件进行了大量更改。请查看 http://melpon.org/wandbox/permlink/sY2CQkXiMiLoS1BM

变化是:

  1. 更改了 AST。这似乎不正确。主要是在变体中添加“一元”的部分。
  2. 纠正了语法。这是基于我真正能从你的测试中得到的语法。我可能是错的,我只尝试让第一个测试用例工作。最好运行一个 diff 工具来比较我的更改和你的更改,尤其是在“parser.hpp”中

注意:如果我的更改不符合您的要求,我建议您启用调试“BOOST_SPIRIT_X3_DEBUG”并跟踪它。怎么强调 BOOST_SPIRIT_X3_DEBUG 在这种情况下的用处都不为过。

解析器.hpp

#include <boost/spirit/home/x3.hpp>
#include "ast.hpp"
#include "operators.hpp"
namespace parser{
namespace x3 = boost::spirit::x3;


template<typename T>
auto as = [](auto p) { return x3::rule<struct _, T>{} = as_parser(p); };


typedef x3::rule<struct multiplicative_expr_class, ast::Expression> multiplicative_expr_type;
typedef x3::rule<struct expression_class, ast::Expression> expression_type;
typedef x3::rule<struct primary_expr_class, ast::Operand> primary_expr_type;
typedef x3::rule<struct func_call_call_class, ast::Expression> func_call_expr_type;
typedef x3::rule<struct unary_expr_class, ast::Operand> unary_expr_type;



const primary_expr_type primary_expr = "primary_expr";
const func_call_expr_type func_call_expr = "func_call_expr";
const expression_type expression = "expression";
const multiplicative_expr_type multiplicative_expr = "multiplicative_expr";
const unary_expr_type unary_expr = "unary_expr";


auto const primary_expr_def =
+(x3::alpha | x3::char_('.'))
| ( "(" > expression > ")" );

auto const idx = as<ast::Operation>(helper::idxaccess_op > primary_expr > ']');
auto const func = as<ast::Operation>(helper::func_call_op > primary_expr%',' > ')');
auto const data = as<ast::Operation>(helper::access_op > expression);

auto const func_call_expr_def =
primary_expr >> *( idx | func | data );

auto const unary_expr_def =
func_call_expr
| as<ast::Operation>(helper::unary_op > func_call_expr);

auto const multiplicative_expr_def =
primary_expr >> *(idx | func);

auto const expression_def = multiplicative_expr_def;


BOOST_SPIRIT_DEFINE(primary_expr,
func_call_expr,
multiplicative_expr,
unary_expr,
expression);

}

ast.hpp

#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/home/x3/support/ast/variant.hpp>
#include <boost/fusion/include/adapt_struct.hpp>

#include <vector>

namespace ast{
namespace x3 = boost::spirit::x3;

enum class operator_t
{
_eq_, // ==
_ne_, // !=
_lt_, // <
_gt_, // >
_le_, // <=
_ge_, // >=
_add_, // +
_sub_, // -
_mul_, // *
_div_, // /
_mod_, // %
_pos_, // unary +
_neg_, // unary -
_not_, // unary !
_size_, // unary #
_bitnot_, // unary ~
_bitand_, // &
_bitor_, // |
_bitxor_, // ^
_shl_, // <<
_shr_, // >>
_and_, // &&
_or_, // ||
_idx_, // []
_apply_, // ()
_access_ // .
};

struct nil{};
struct Expression;

typedef x3::variant<
nil,
std::string,
x3::forward_ast<Expression>
//std::vector<Expression> //adding this as an operand for function parameter
> Operand;

struct Operation {
operator_t operator_;
Operand operand_;
};

struct Expression {
Operand first_;
std::vector<Operation> rest_;
};
}
BOOST_FUSION_ADAPT_STRUCT(ast::Operation, operator_, operand_)
BOOST_FUSION_ADAPT_STRUCT(ast::Expression, first_, rest_)

关于c++ - 内部编译器错误,同时使用 boost spirit x3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40195894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com