2 * Copyright (C) 1998, 1999, 2002, 2003, 2005 Hewlett-Packard Co
3 * David Mosberger-Tang <davidm@hpl.hp.com>
5 * Register stack engine related helper functions. This file may be
6 * used in applications, so be careful about the name-space and give
7 * some consideration to non-GNU C compilers (though __inline__ is
13 #include <libunwind.h>
15 static inline uint64_t
16 rse_slot_num (uint64_t addr
)
18 return (addr
>> 3) & 0x3f;
22 * Return TRUE if ADDR is the address of an RNAT slot.
24 static inline uint64_t
25 rse_is_rnat_slot (uint64_t addr
)
27 return rse_slot_num (addr
) == 0x3f;
31 * Returns the address of the RNAT slot that covers the slot at
34 static inline uint64_t
35 rse_rnat_addr (uint64_t slot_addr
)
37 return slot_addr
| (0x3f << 3);
41 * Calculate the number of registers in the dirty partition starting at
42 * BSPSTORE and ending at BSP. This isn't simply (BSP-BSPSTORE)/8
43 * because every 64th slot stores ar.rnat.
45 static inline uint64_t
46 rse_num_regs (uint64_t bspstore
, uint64_t bsp
)
48 uint64_t slots
= (bsp
- bspstore
) >> 3;
50 return slots
- (rse_slot_num(bspstore
) + slots
)/0x40;
54 * The inverse of the above: given bspstore and the number of
55 * registers, calculate ar.bsp.
57 static inline uint64_t
58 rse_skip_regs (uint64_t addr
, long num_regs
)
60 long delta
= rse_slot_num(addr
) + num_regs
;
64 return addr
+ ((num_regs
+ delta
/0x3f) << 3);