Home
last modified time | relevance | path

Searched refs:MEM_SIZE (Results 1 – 25 of 33) sorted by relevance

12

/netbsd/src/external/gpl3/gdb/dist/sim/rl78/
Dgdb-if.c212 if (addr >= MEM_SIZE) in sim_read()
214 else if (addr + length > MEM_SIZE) in sim_read()
215 length = MEM_SIZE - addr; in sim_read()
228 if (addr >= MEM_SIZE) in sim_write()
230 else if (addr + length > MEM_SIZE) in sim_write()
231 length = MEM_SIZE - addr; in sim_write()
Dmem.h25 #define MEM_SIZE 0x100000 macro
Dmem.c37 unsigned char memory[MEM_SIZE];
40 unsigned char initted[MEM_SIZE];
/netbsd/src/external/gpl3/gcc/dist/gcc/
Ddce.cc371 && MEM_SIZE (mem).is_constant (&size)) in check_argument_load()
426 if (!MEM_SIZE_KNOWN_P (mem) || !MEM_SIZE (mem).is_constant (&size)) in find_call_stack_args()
448 HOST_WIDE_INT size = MEM_SIZE (mem).to_constant (); in find_call_stack_args()
493 || !MEM_SIZE (mem).is_constant (&size) in find_call_stack_args()
Dalias.cc324 && maybe_gt ((MEM_OFFSET (mem) + MEM_SIZE (mem)) * BITS_PER_UNIT, in ao_ref_from_mem()
332 ref->size = MEM_SIZE (mem) * BITS_PER_UNIT; in ao_ref_from_mem()
2896 MEM_SIZE (x), MEM_SIZE (y))); in nonoverlapping_memrefs_p()
2967 : MEM_SIZE_KNOWN_P (rtlx) ? MEM_SIZE (rtlx) in nonoverlapping_memrefs_p()
2970 : MEM_SIZE_KNOWN_P (rtly) ? MEM_SIZE (rtly) in nonoverlapping_memrefs_p()
2984 sizex = MEM_SIZE (x); in nonoverlapping_memrefs_p()
2986 sizey = MEM_SIZE (y); in nonoverlapping_memrefs_p()
Dcfgcleanup.cc880 else if (known_le (MEM_SIZE (x), MEM_SIZE (y))) in merge_memattrs()
881 set_mem_size (x, MEM_SIZE (y)); in merge_memattrs()
882 else if (known_le (MEM_SIZE (y), MEM_SIZE (x))) in merge_memattrs()
883 set_mem_size (y, MEM_SIZE (x)); in merge_memattrs()
Dread-rtl-function.cc2169 ASSERT_KNOWN_EQ (8, MEM_SIZE (mem1)); in test_loading_mem()
2185 ASSERT_KNOWN_EQ (9, MEM_SIZE (mem2)); in test_loading_mem()
Ddse.cc1422 || maybe_le (MEM_SIZE (mem), 0) in record_store()
1425 || (MEM_SIZE (mem).is_constant (&const_size) in record_store()
1452 width = MEM_SIZE (mem); in record_store()
Dprint-rtl.cc964 print_poly_int (m_outfile, MEM_SIZE (in_rtx)); in print_rtx()
Dexpmed.cc854 0, MEM_SIZE (op0)); in store_bit_field_1()
1797 0, MEM_SIZE (op0)); in extract_bit_field_1()
Drtl.h2649 #define MEM_SIZE(RTX) (get_mem_attrs (RTX)->size)
Drtlanal.cc3191 poly_int64 size = MEM_SIZE_KNOWN_P (x) ? MEM_SIZE (x) : -1; in may_trap_p_1()
Dvar-tracking.cc5288 && maybe_gt (MEM_SIZE (decl_rtl), MAX_VAR_PARTS)) in track_expr_p()
DChangeLog-201117882 (MEM_OFFSET, MEM_SIZE_KNOWN_P, MEM_SIZE): Likewise.
17928 (MEM_SIZE): Change from returning an rtx to returning a HOST_WIDE_INT.
17930 (MEM_SIZE): Return a HOST_WIDE_INT rather than an rtx.
17935 * alias.c (ao_ref_from_mem): Adjust uses of MEM_SIZE, using
17936 MEM_SIZE_KNOWN_P to test whether the size is known, and MEM_SIZE
17986 (MEM_SIZE, MEM_ALIGN): Redefine in terms of get_mem_attrs.
30163 * config/arm/arm.c (arm_print_operand): Use MEM_SIZE to get the
DChangeLog-2008175 MEM_SIZE is set on the MEM. Use the new positions_needed
192 set MEM_SIZE on DESTMEM.
198 * config/i386/i386.c (expand_movmem_via_rep_mov): Set MEM_SIZE
6257 * function.c (assign_parm_find_stack_rtl): Set correct MEM_SIZE
Ddwarf2out.cc17648 if (!poly_uint64 (MEM_SIZE (varloc)).is_constant (&memsize)) in dw_sra_loc_expr()
/netbsd/src/external/gpl3/gdb/dist/sim/mips/
Dinterp.c143 #define MEM_SIZE (8 << 20) /* 8 MBytes */ macro
434 mem_size = MEM_SIZE; in sim_open()
DChangeLog-20211012 * interp.c (MEM_SIZE): Increase default memory size from 2 to 8
3068 (MONITOR_BASE, MONITOR_SIZE, MEM_SIZE): Define.
/netbsd/src/external/gpl3/gdb/dist/sim/v850/
DChangeLog-20211706 * interp.c (MEM_SIZE): It's now bytes, not a power of 2.
1710 * (sim_size): MEM_SIZE is now bytes, not shift factor.
/netbsd/src/external/gpl3/gcc/dist/gcc/doc/
Drtl.texi428 @samp{MEM_SIZE (@var{x})} provides its size if so.
430 @findex MEM_SIZE
431 @item MEM_SIZE (@var{x})
/netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/
Drs6000.cc18149 *size = MEM_SIZE (mem); in get_memref_parts()
18983 HOST_WIDE_INT size = MEM_SIZE (*str_mem); in is_fusable_store()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/
Di386-expand.cc7948 set_mem_size (dst, MEM_SIZE (orig_dst) - align_bytes); in expand_set_or_cpymem_constant_prologue()
7971 set_mem_size (src, MEM_SIZE (orig_src) - align_bytes); in expand_set_or_cpymem_constant_prologue()
Di386.cc24155 ASSERT_EQ (4, MEM_SIZE (dest)); in ix86_test_loading_dump_fragment_1()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/mips/
Dmips.cc8617 && MEM_SIZE (x) == GET_MODE_SIZE (mode)); in mips_mem_fits_mode_p()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/
Darm.cc24424 memsize = MEM_SIZE (x); in arm_print_operand()

12