Lines Matching defs:is_64

1324 #define GEN_LOAD(buf, rt, ra, si, is_64)	(is_64 ? \
1327 #define GEN_STORE(buf, rt, ra, si, is_64) (is_64 ? \
1331 #define GEN_LOAD(buf, rt, ra, si, is_64) GEN_LWZ (buf, rt, ra, si)
1332 #define GEN_STORE(buf, rt, ra, si, is_64) GEN_STW (buf, rt, ra, si)
1339 gen_limm (uint32_t *buf, int reg, uint64_t imm, int is_64)
1357 if (imm & (1u << 31) && is_64)
1362 gdb_assert (is_64);
1388 int is_64)
1402 p += gen_limm (p, r_lock, lock, is_64);
1403 p += gen_limm (p, r_old, old_value, is_64);
1418 gen_call (uint32_t *buf, CORE_ADDR fn, int is_64, int is_opd)
1423 p += gen_limm (p, 12, fn, is_64);
1426 p += GEN_LOAD (p, 11, 12, 16, is_64);
1427 p += GEN_LOAD (p, 2, 12, 8, is_64);
1428 p += GEN_LOAD (p, 12, 12, 0, is_64);
1613 int is_64 = register_size (regcache->tdesc, 0) == 8;
1614 int is_opd = is_64 && !is_elfv2_inferior ();
1616 int is_64 = 0, is_opd = 0;
1620 if (is_64)
1671 if (is_64)
1679 p += GEN_STORE (p, j, 1, min_frame + j * rsz, is_64);
1680 p += GEN_STORE (p, 0, 1, min_frame + 0 * rsz, is_64);
1684 p += GEN_STORE (p, 0, 1, min_frame + 1 * rsz, is_64);
1691 p += GEN_STORE (p, 3, 1, min_frame + 32 * rsz, is_64);/* std r3, 32(r1) */
1692 p += GEN_STORE (p, 4, 1, min_frame + 33 * rsz, is_64);/* std r4, 33(r1) */
1693 p += GEN_STORE (p, 5, 1, min_frame + 34 * rsz, is_64);/* std r5, 34(r1) */
1694 p += GEN_STORE (p, 6, 1, min_frame + 35 * rsz, is_64);/* std r6, 35(r1) */
1697 p += gen_limm (p, 3, tpaddr, is_64);
1698 p += GEN_STORE (p, 3, 1, min_frame + 36 * rsz, is_64);
1705 p += gen_limm (p, 3, tpoint, is_64);
1708 p += GEN_STORE (p, 3, 1, min_frame + 37 * rsz, is_64);
1709 p += GEN_STORE (p, tp_reg, 1, min_frame + 38 * rsz, is_64);
1714 p += gen_atomic_xchg (p, lockaddr, 0, 5, is_64);
1718 p += gen_call (p, collector, is_64, is_opd);
1721 p += gen_limm (p, 3, lockaddr, is_64);
1722 p += gen_limm (p, 4, 0, is_64);
1724 p += GEN_STORE (p, 4, 3, 0, is_64);
1727 p += GEN_LOAD (p, 3, 1, min_frame + 32 * rsz, is_64); /* ld r3, 32(r1) */
1728 p += GEN_LOAD (p, 4, 1, min_frame + 33 * rsz, is_64); /* ld r4, 33(r1) */
1729 p += GEN_LOAD (p, 5, 1, min_frame + 34 * rsz, is_64); /* ld r5, 34(r1) */
1730 p += GEN_LOAD (p, 6, 1, min_frame + 35 * rsz, is_64); /* ld r6, 35(r1) */
1738 p += GEN_LOAD (p, j, 1, min_frame + j * rsz, is_64);
1739 p += GEN_LOAD (p, 0, 1, min_frame + 0 * rsz, is_64);