HomeSort by: relevance | last modified time | path
    Searched refs:addr_base (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
cu.h 193 std::optional<ULONGEST> addr_base; member in struct:dwarf2_cu
die.h 54 std::optional<ULONGEST> addr_base () function in struct:die_info
read.c 3795 cu->addr_base = stub_comp_unit_die->addr_base ();
4235 str_offsets_base and addr_base from the parent. */
4276 m_new_cu->addr_base = parent_cu->addr_base;
16210 auto maybe_addr_base = (*diep)->addr_base ();
16212 cu->addr_base = *maybe_addr_base;
17312 attributes are the ones that need str_offsets_base or addr_base attributes.
17314 the values of str_offsets_base or addr_base may not have been known. */
17720 ADDR_BASE is the DW_AT_addr_base (DW_AT_GNU_addr_base) attribute or zero
17767 std::optional<ULONGEST> addr_base; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
die.h 55 std::optional<ULONGEST> addr_base () function in struct:die_info
cu.h 352 std::optional<ULONGEST> addr_base; member in struct:dwarf2_cu
read.c 2694 cu->addr_base = stub_comp_unit_die->addr_base ();
3129 provide a default value for str_offsets_base and addr_base. */
3163 m_new_cu->addr_base = parent_cu.addr_base;
14498 auto maybe_addr_base = die->addr_base ();
14500 m_cu->addr_base = *maybe_addr_base;
14937 attributes are the ones that need str_offsets_base or addr_base attributes.
14939 the values of str_offsets_base or addr_base may not have been known. */
15341 ADDR_BASE is the DW_AT_addr_base (DW_AT_GNU_addr_base) attribute or zero
15390 std::optional<ULONGEST> addr_base; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-loop-prefetch.cc 1166 tree addr, addr_base, write_p, local, forward;
1181 addr_base = build_fold_addr_expr_with_type (ref->mem, ptr_type_node);
1182 addr_base = force_gimple_operand_gsi (&bsi, unshare_expr (addr_base),
1194 addr = fold_build_pointer_plus_hwi (addr_base, delta);
1205 addr = fold_build_pointer_plus (addr_base, forward);
1210 if (addr_base != addr
1211 && TREE_CODE (addr_base) == SSA_NAME
1214 duplicate_ssa_name_ptr_info (addr, SSA_NAME_PTR_INFO (addr_base));
tree-ssa-address.cc 302 tree addr_base = NULL_TREE, addr_off = NULL_TREE; local
304 addr_base = fold_convert (type, TMR_BASE (mem_ref));
335 addr = fold_build_pointer_plus (addr_base, addr_off);
337 addr = addr_base;
tree-ssa-sccvn.cc 1363 tree addr_base; local
1369 addr_base = get_addr_base_and_unit_offset_1 (TREE_OPERAND (op->op0, 0),
1371 gcc_checking_assert (addr_base && TREE_CODE (addr_base) != MEM_REF);
1372 if (addr_base != TREE_OPERAND (op->op0, 0))
1379 op->op0 = build_fold_addr_expr (addr_base);
1423 tree addr, addr_base; local
1427 addr_base = get_addr_base_and_unit_offset_1 (TREE_OPERAND (addr, 0),
1433 if (!addr_base
1462 if (!addr_base
    [all...]
tree-vect-data-refs.cc 5151 tree addr_base;
5185 addr_base = fold_build_pointer_plus (data_ref_base, base_offset);
5187 addr_base = build1 (ADDR_EXPR,
5197 addr_base = force_gimple_operand (addr_base, &seq, true, dest);
5201 && TREE_CODE (addr_base) == SSA_NAME
5203 && SSA_NAME_VAR (addr_base) == dest)
5205 gcc_assert (!SSA_NAME_PTR_INFO (addr_base));
5206 vect_duplicate_ssa_name_ptr_info (addr_base, dr_info);
5210 dump_printf_loc (MSG_NOTE, vect_location, "created %T\n", addr_base);
    [all...]
tree-ssa-loop-ivopts.cc 414 tree addr_base; /* Base address with const offset stripped. */ member in struct:iv_use
1523 For address type use, ADDR_BASE is the stripped IV base, ADDR_OFFSET
1525 of the memory being addressed. For uses of other types, ADDR_BASE
1531 tree addr_base, poly_uint64 addr_offset)
1542 use->addr_base = addr_base;
1603 tree addr_base = NULL; local
1614 split_constant_offset (iv->base, &addr_base, &addr_toffset);
1628 && operand_equal_p (addr_base, use->addr_base, 0)
    [all...]
tree-data-ref.cc 2580 tree addr_base = fold_build_pointer_plus (DR_BASE_ADDRESS (d.dr),
2582 addr_base = fold_build_pointer_plus (addr_base, DR_INIT (d.dr));
2593 *seg_min_out = fold_build_pointer_plus (addr_base, min_reach);
2594 *seg_max_out = fold_build_pointer_plus (addr_base, max_reach);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-loop-prefetch.cc 1166 tree addr, addr_base, write_p, local, forward;
1181 addr_base = build_fold_addr_expr_with_type (ref->mem, ptr_type_node);
1182 addr_base = force_gimple_operand_gsi (&bsi, unshare_expr (addr_base),
1194 addr = fold_build_pointer_plus_hwi (addr_base, delta);
1205 addr = fold_build_pointer_plus (addr_base, forward);
1210 if (addr_base != addr
1211 && TREE_CODE (addr_base) == SSA_NAME
1214 duplicate_ssa_name_ptr_info (addr, SSA_NAME_PTR_INFO (addr_base));
tree-ssa-address.cc 302 tree addr_base = NULL_TREE, addr_off = NULL_TREE; local
304 addr_base = fold_convert (type, TMR_BASE (mem_ref));
335 addr = fold_build_pointer_plus (addr_base, addr_off);
337 addr = addr_base;
tree-ssa-sccvn.cc 1335 tree addr_base; local
1341 addr_base = get_addr_base_and_unit_offset_1 (TREE_OPERAND (op->op0, 0),
1343 gcc_checking_assert (addr_base && TREE_CODE (addr_base) != MEM_REF);
1344 if (addr_base != TREE_OPERAND (op->op0, 0))
1351 op->op0 = build_fold_addr_expr (addr_base);
1395 tree addr, addr_base; local
1399 addr_base = get_addr_base_and_unit_offset_1 (TREE_OPERAND (addr, 0),
1405 if (!addr_base
1434 if (!addr_base
    [all...]
tree-vect-data-refs.cc 4828 tree addr_base;
4862 addr_base = fold_build_pointer_plus (data_ref_base, base_offset);
4864 addr_base = build1 (ADDR_EXPR,
4874 addr_base = force_gimple_operand (addr_base, &seq, true, dest);
4878 && TREE_CODE (addr_base) == SSA_NAME
4880 && SSA_NAME_VAR (addr_base) == dest)
4882 gcc_assert (!SSA_NAME_PTR_INFO (addr_base));
4883 vect_duplicate_ssa_name_ptr_info (addr_base, dr_info);
4887 dump_printf_loc (MSG_NOTE, vect_location, "created %T\n", addr_base);
    [all...]
tree-ssa-loop-ivopts.cc 414 tree addr_base; /* Base address with const offset stripped. */ member in struct:iv_use
1521 For address type use, ADDR_BASE is the stripped IV base, ADDR_OFFSET
1523 of the memory being addressed. For uses of other types, ADDR_BASE
1529 tree addr_base, poly_uint64 addr_offset)
1540 use->addr_base = addr_base;
1601 tree addr_base = NULL; local
1610 addr_base = strip_offset (iv->base, &addr_offset);
1623 && operand_equal_p (addr_base, use->addr_base, 0)
    [all...]
  /src/external/gpl3/binutils/dist/binutils/
dwarf.h 176 uint64_t addr_base; member in struct:__anon9893
dwarf.c 2913 else if (debug_info_p->addr_base == DEBUG_INFO_UNAVAILABLE)
2916 base = debug_info_p->addr_base;
3077 uvalue = fetch_indexed_addr (debug_info_p->addr_base
3087 debug_info_p->addr_base = uvalue;
3814 debug_info_p->addr_base = uvalue;
4119 debug_information[unit].addr_base = DEBUG_INFO_UNAVAILABLE;
4331 DW_AT_[GNU_]addr_base are available before attributes that
6999 (debug_info_p->addr_base + idx * pointer_size, pointer_size);
7007 (debug_info_p->addr_base + idx * pointer_size, pointer_size);
7010 (debug_info_p->addr_base + idx * pointer_size, pointer_size)
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
dwarf.h 176 uint64_t addr_base; member in struct:__anon11375
dwarf.c 2844 else if (debug_info_p->addr_base == DEBUG_INFO_UNAVAILABLE)
2847 base = debug_info_p->addr_base;
3008 uvalue = fetch_indexed_addr (debug_info_p->addr_base
3018 debug_info_p->addr_base = uvalue;
3737 debug_info_p->addr_base = uvalue;
4048 debug_information[unit].addr_base = DEBUG_INFO_UNAVAILABLE;
4260 DW_AT_[GNU_]addr_base are available before attributes that
6927 (debug_info_p->addr_base + idx * pointer_size, pointer_size);
6935 (debug_info_p->addr_base + idx * pointer_size, pointer_size);
6938 (debug_info_p->addr_base + idx * pointer_size, pointer_size)
    [all...]
  /src/external/gpl3/gcc/dist/libbacktrace/
dwarf.c 322 uint64_t addr_base; member in struct:unit
1094 uint64_t addr_base, int addrsize, int is_bigendian,
1102 offset = addr_index * addrsize + addr_base;
1630 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1639 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1789 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1803 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1808 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1826 if (!resolve_addr_index (dwarf_sections, u->addr_base,
2028 u->addr_base = val.u.uint
    [all...]
  /src/external/gpl3/gcc.old/dist/libbacktrace/
dwarf.c 322 uint64_t addr_base; member in struct:unit
1094 uint64_t addr_base, int addrsize, int is_bigendian,
1102 offset = addr_index * addrsize + addr_base;
1630 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1639 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1789 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1803 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1808 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1826 if (!resolve_addr_index (dwarf_sections, u->addr_base,
2028 u->addr_base = val.u.uint
    [all...]
  /src/external/gpl3/gdb/dist/libbacktrace/
dwarf.c 322 uint64_t addr_base; member in struct:unit
1094 uint64_t addr_base, int addrsize, int is_bigendian,
1102 offset = addr_index * addrsize + addr_base;
1630 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1639 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1789 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1803 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1808 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1826 if (!resolve_addr_index (dwarf_sections, u->addr_base,
2028 u->addr_base = val.u.uint
    [all...]
  /src/external/gpl3/gdb.old/dist/libbacktrace/
dwarf.c 322 uint64_t addr_base; member in struct:unit
1094 uint64_t addr_base, int addrsize, int is_bigendian,
1102 offset = addr_index * addrsize + addr_base;
1630 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1639 if (!resolve_addr_index (dwarf_sections, u->addr_base, u->addrsize,
1789 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1803 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1808 if (!resolve_addr_index (dwarf_sections, u->addr_base,
1826 if (!resolve_addr_index (dwarf_sections, u->addr_base,
2028 u->addr_base = val.u.uint
    [all...]

Completed in 77 milliseconds

1 2