Loading...
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | /* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989,1988 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ /* * File: vm_types.h * Author: Avadis Tevanian, Jr. * Date: 1985 * * Header file for VM data types. PPC version. */ #ifndef _MACH_PPC_VM_TYPES_H_ #define _MACH_PPC_VM_TYPES_H_ #ifndef ASSEMBLER #include <ppc/_types.h> #include <ppc/vmparam.h> #include <stdint.h> /* * natural_t and integer_t are Mach's legacy types for machine- * independent integer types (unsigned, and signed, respectively). * Their original purpose was to define other types in a machine/ * compiler independent way. * * They also had an implicit "same size as pointer" characteristic * to them (i.e. Mach's traditional types are very ILP32 or ILP64 * centric). We support PowerPC ABIs that do not follow either of * these models (specifically LP64). Therefore, we had to make a * choice between making these types scale with pointers or stay * tied to integers. Because their use is predominantly tied to * to the size of an integer, we are keeping that association and * breaking free from pointer size guarantees. * * New use of these types is discouraged. */ typedef __darwin_natural_t natural_t; typedef int integer_t; #if defined(__ppc__) /* * For 32-bit PowerPC ABIs, the scalable types were * always based upon natural_t (unsigned int). * Because of potential legacy issues with name mangling, * we cannot use the stdint uintptr_t type. */ typedef natural_t vm_offset_t; typedef natural_t vm_size_t; #else /* __ppc64__ */ /* * For 64-bit PowerPC ABIs, we have no legacy name mangling * issues, so we use the stdint types for scaling these * types to the same size as a pointer. */ typedef uintptr_t vm_offset_t; typedef uintptr_t vm_size_t; #endif /* * This new type is independent of a particular vm map's * implementation size - and represents appropriate types * for all possible maps. This is used for interfaces * where the size of the map is not known - or we don't * want to have to distinguish. */ typedef uint64_t mach_vm_address_t; typedef uint64_t mach_vm_offset_t; typedef uint64_t mach_vm_size_t; /* LP64todo - convert these over for good */ #if 1 typedef uint64_t vm_map_offset_t; typedef uint64_t vm_map_address_t; typedef uint64_t vm_map_size_t; #else typedef uint32_t vm_map_offset_t; typedef uint32_t vm_map_address_t; typedef uint32_t vm_map_size_t; #endif #ifdef MACH_KERNEL_PRIVATE #ifdef VM32_SUPPORT /* * These are types used internal to Mach to implement the * legacy 32-bit VM APIs published by the kernel. */ typedef uint32_t vm32_address_t; typedef uint32_t vm32_offset_t; typedef uint32_t vm32_size_t; #endif /* VM32_SUPPORT */ #endif /* MACH_KERNEL_PRIVATE */ #endif /* ASSEMBLER */ /* * If composing messages by hand (please do not) */ #define MACH_MSG_TYPE_INTEGER_T MACH_MSG_TYPE_INTEGER_32 #endif /* _MACH_PPC_VM_TYPES_H_ */ |