blob: a22c44617677bf978af8336cec4d0a4854392ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// This may look like C, but it's really -*- C++ -*-
// @(#) $Id$
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// align.h
//
// = DESCRIPTION
// Pointer alignment utilities
//
// A "ptr_arith_t" type is defined for doing numerical operations
// on pointers, such as aligning them. Pointer sizes vary from 2
// to 8 bytes in today's environments; a portable data type is much
// needed.
//
// = AUTHOR
// Copyright 1994-1995 by Sun Microsystems, Inc.
//
// ============================================================================
#if !defined (TAO_ALIGN_H)
#define TAO_ALIGN_H
// Type for doing arithmetic on pointers ... as elsewhere, we assume
// that "unsigned" versions of a type are the same size as the
// "signed" version of the same type.
#if SIZEOF_VOID_P == SIZEOF_INT
typedef u_int ptr_arith_t;
#elif SIZEOF_VOID_P == SIZEOF_LONG
typedef u_long ptr_arith_t;
#elif SIZEOF_VOID_P == SIZEOF_LONG_LONG
typedef u_long long ptr_arith_t;
#else
# error "Can't find a suitable type for doing pointer arithmetic."
#endif
// Efficiently align "value" up to "alignment", knowing that all such
// boundaries are binary powers and that we're using two's complement
// arithmetic.
#if 0
static inline ptr_arith_t
align_binary (const ptr_arith_t value,
size_t alignment)
{
ptr_arith_t temp = alignment - 1;
return (value + temp) & ~temp;
}
#endif
#define align_binary(ptr, alignment) \
((ptr + ((ptr_arith_t)((alignment)-1))) & (~((ptr_arith_t)((alignment)-1))))
// Efficiently round "ptr" up to an "alignment" boundary, knowing that
// all such boundaries are binary powers and that we're using two's
// complement arithmetic.
//
// XXX Returned as "byte pointer" -- CDR module would change to be
// seen as a "void *". May want to change this to add XDR cleanly.
#if 0
static inline u_char *
ptr_align_binary (const u_char *ptr,
size_t alignment)
{
return (u_char *) align_binary ((ptr_arith_t) ptr, alignment);
}
#endif
#define ptr_align_binary(ptr, alignment) \
((u_char *) align_binary(((ptr_arith_t) (ptr)), (alignment)))
#endif /* TAO_ALIGN_H */
|