Ignore:
Timestamp:
2018-07-18T18:56:16Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
40abf56
Parents:
9b1baac
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 14:25:11)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 18:56:16)
Message:

Adds

  • tcb_raw_get(), which returns the value of the TP register without any offsets applied to it,
  • tcb_raw_set(), which does the opposite,
  • tcb_is_set(), which returns true iff the register is not NULL,
  • tcb_reset(), which sets the register to NULL.

Used for debug assertions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/sparc64/include/libarch/tls.h

    r9b1baac r0b05082  
    4141#define CONFIG_TLS_VARIANT_2
    4242
     43#define ARCH_TP_OFFSET 0
     44
    4345typedef struct {
    4446        void *self;
     
    4648} tcb_t;
    4749
    48 static inline void __tcb_set(tcb_t *tcb)
     50static inline void __tcb_raw_set(void *tcb)
    4951{
    5052        asm volatile ("mov %0, %%g7\n" : : "r" (tcb) : "g7");
    5153}
    5254
    53 static inline tcb_t *__tcb_get(void)
     55static inline void *__tcb_raw_get(void)
    5456{
    55         tcb_t *retval;
    56 
     57        void *retval;
    5758        asm volatile ("mov %%g7, %0\n" : "=r" (retval));
    58 
    5959        return retval;
    6060}
Note: See TracChangeset for help on using the changeset viewer.