62 lines
1.9 KiB
C++
62 lines
1.9 KiB
C++
/* Utilities to manipulate GCC trees.
|
|
Copyright (C) 2025 Free Software Foundation, Inc.
|
|
|
|
GCC is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
GCC is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#pragma once
|
|
|
|
#include <forward_list>
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "coretypes.h"
|
|
#include "tree.h"
|
|
#include "tree-iterator.h"
|
|
#include "stringpool.h"
|
|
|
|
#include "elna/boot/ast.h"
|
|
#include "elna/boot/symbol.h"
|
|
|
|
namespace elna
|
|
{
|
|
namespace gcc
|
|
{
|
|
bool is_pointer_type(tree type);
|
|
bool is_integral_type(tree type);
|
|
bool is_numeric_type(tree type);
|
|
bool is_array_type(tree type);
|
|
bool is_procedure_type(tree type);
|
|
bool is_void_type(tree type);
|
|
|
|
/**
|
|
* \param lhs Left hand value.
|
|
* \param rhs Right hand value.
|
|
* \return Whether rhs can be assigned to lhs.
|
|
*/
|
|
bool are_compatible_pointers(tree lhs, tree rhs);
|
|
|
|
void append_statement(tree statement_tree);
|
|
void defer(tree statement_tree);
|
|
tree chain_defer();
|
|
|
|
tree do_pointer_arithmetic(boot::binary_operator binary_operator, tree left, tree right);
|
|
tree build_binary_operation(bool condition, boot::binary_expression *expression,
|
|
tree_code operator_code, tree left, tree right, tree target_type);
|
|
tree build_arithmetic_operation(boot::binary_expression *expression,
|
|
tree_code operator_code, tree left, tree right);
|
|
tree build_field(location_t location, tree record_type, const std::string name, tree type);
|
|
}
|
|
}
|