GCC Middle and Back End API Reference
|
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "function.h"
#include "rtl.h"
#include "tree.h"
#include "insn-config.h"
#include "memmodel.h"
#include "emit-rtl.h"
#include "recog.h"
#include "rtlhooks-def.h"
#include "explow.h"
#include "target.h"
Functions | |
rtx | gen_lowpart_general (machine_mode mode, rtx x) |
rtx | reg_num_sign_bit_copies_general (const_rtx, scalar_int_mode, scalar_int_mode, unsigned int *) |
rtx | reg_nonzero_bits_general (const_rtx, scalar_int_mode, scalar_int_mode, unsigned HOST_WIDE_INT *) |
bool | reg_truncated_to_mode_general (machine_mode mode, const_rtx x) |
rtx | gen_lowpart_if_possible (machine_mode mode, rtx x) |
Variables | |
const struct rtl_hooks | general_rtl_hooks = RTL_HOOKS_INITIALIZER |
struct rtl_hooks | rtl_hooks = RTL_HOOKS_INITIALIZER |
References adjust_address, byte_lowpart_offset(), copy_to_reg(), force_reg(), gcc_assert, gen_lowpart_common(), gen_lowpart_general(), GET_CODE, GET_MODE, GET_MODE_SIZE(), is_a(), MEM_P, offset, REG_P, reload_completed, and TRULY_NOOP_TRUNCATION_MODES_P.
Referenced by gen_lowpart_general().
Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a fixed-point number, return an rtx (MEM, SUBREG, or CONST_INT) that refers to the least-significant part of X. MODE specifies how big a part of X to return. If the requested operation cannot be done, 0 is returned. This is similar to gen_lowpart_general.
References adjust_address_nv, byte_lowpart_offset(), gen_lowpart_common(), gen_lowpart_SUBREG(), GET_MODE, MEM_ADDR_SPACE, MEM_P, memory_address_addr_space_p(), offset, subreg_lowpart_offset(), SUBREG_P, validate_subreg(), and XEXP.
Referenced by extract_bit_field_using_extv(), gen_lowpart_for_debug(), and store_bit_field_using_insv().
rtx reg_nonzero_bits_general | ( | const_rtx | , |
scalar_int_mode | , | ||
scalar_int_mode | , | ||
unsigned HOST_WIDE_INT * | ) |
References NULL.
rtx reg_num_sign_bit_copies_general | ( | const_rtx | , |
scalar_int_mode | , | ||
scalar_int_mode | , | ||
unsigned int * | ) |
References NULL.
const struct rtl_hooks general_rtl_hooks = RTL_HOOKS_INITIALIZER |
Generic hooks for the RTL middle-end. Copyright (C) 2004-2025 Free Software Foundation, Inc. This file is part of GCC. 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/>.
For speed, we will copy the RTX hooks struct member-by-member instead of doing indirect calls. For these reason, we initialize *two* struct rtl_hooks globals: rtl_hooks is the one that is used to actually call the hooks, while general_rtl_hooks is used to restore the hooks by passes that modify them.
Referenced by combine_instructions(), and cse_main().
struct rtl_hooks rtl_hooks = RTL_HOOKS_INITIALIZER |
Each pass can provide its own.