Changeset b3f8fb7 in mainline for kernel/arch/ia64/include/context.h


Ignore:
Timestamp:
2007-01-28T13:25:49Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8e8c1a5
Parents:
1ba41c5
Message:

huge type system cleanup
remove cyclical type dependencies across multiple header files
many minor coding style fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/include/context.h

    r1ba41c5 rb3f8fb7  
    3838#include <arch/types.h>
    3939#include <arch/register.h>
    40 #include <typedefs.h>
    4140#include <align.h>
    4241#include <arch/stack.h>
     
    4847 * One item is put onto the stack to support get_stack_base().
    4948 */
    50 #define SP_DELTA        (0+ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT))
     49#define SP_DELTA        (0 + ALIGN_UP(STACK_ITEM_SIZE, STACK_ALIGNMENT))
    5150
    5251#ifdef context_set
     
    106105        uint64_t pr;
    107106
    108         __r128 f2 __attribute__ ((aligned(16)));
    109         __r128 f3;
    110         __r128 f4;
    111         __r128 f5;
     107        uint128_t f2 __attribute__ ((aligned(16)));
     108        uint128_t f3;
     109        uint128_t f4;
     110        uint128_t f5;
    112111
    113         __r128 f16;
    114         __r128 f17;
    115         __r128 f18;
    116         __r128 f19;
    117         __r128 f20;
    118         __r128 f21;
    119         __r128 f22;
    120         __r128 f23;
    121         __r128 f24;
    122         __r128 f25;
    123         __r128 f26;
    124         __r128 f27;
    125         __r128 f28;
    126         __r128 f29;
    127         __r128 f30;
    128         __r128 f31;
     112        uint128_t f16;
     113        uint128_t f17;
     114        uint128_t f18;
     115        uint128_t f19;
     116        uint128_t f20;
     117        uint128_t f21;
     118        uint128_t f22;
     119        uint128_t f23;
     120        uint128_t f24;
     121        uint128_t f25;
     122        uint128_t f26;
     123        uint128_t f27;
     124        uint128_t f28;
     125        uint128_t f29;
     126        uint128_t f30;
     127        uint128_t f31;
    129128       
    130129        ipl_t ipl;
Note: See TracChangeset for help on using the changeset viewer.