/**/ /***************************************************************************/ /** **/ /** © Copyright 2010, Hewlett-Packard Development Company, L.P. **/ /** **/ /** Confidential computer software. Valid license from HP and/or **/ /** its subsidiaries required for possession, use, or copying. **/ /** **/ /** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, **/ /** Computer Software Documentation, and Technical Data for Commercial **/ /** Items are licensed to the U.S. Government under vendor's standard **/ /** commercial license. **/ /** **/ /** Neither HP nor any of its subsidiaries shall be liable for technical **/ /** or editorial errors or omissions contained herein. The information **/ /** in this document is provided "as is" without warranty of any kind and **/ /** is subject to change without notice. The warranties for HP products **/ /** are set forth in the express limited warranty statements accompanying **/ /** such products. Nothing herein should be construed as constituting an **/ /** additional warranty. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:26:24 by OpenVMS SDL EV3-3 */ /* Source: 09-JUN-1993 14:45:59 $1$DGA7274:[LIB_H.SRC]ARCDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $ARCDEF ***/ #ifndef __ARCDEF_LOADED #define __ARCDEF_LOADED 1 #pragma __nostandard /* This file uses non-ANSI-Standard features */ #pragma __member_alignment __save #pragma __nomember_alignment #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __save /* Save the previously-defined required ptr size */ #pragma __required_pointer_size __short /* And set ptr size default to 32-bit pointers */ #endif #ifdef __cplusplus extern "C" { #define __unknown_params ... #define __optional_params ... #else #define __unknown_params #define __optional_params ... #endif #ifndef __struct #if !defined(__VAXC) #define __struct struct #else #define __struct variant_struct #endif #endif #ifndef __union #if !defined(__VAXC) #define __union union #else #define __union variant_union #endif #endif /*+ */ /* */ /* Bit definitions for EXE$GL_ARCHFLAG - flags for VAX architecture differences */ /* */ /*- */ #define ARC$M_CHAR_EMUL 0x10 #define ARC$M_DCML_EMUL 0x20 #define ARC$M_EDPC_EMUL 0x40 #define ARC$M_CRC_EMUL 0x80 #define ARC$M_DFLT_EMUL 0x100 #define ARC$M_FFLT_EMUL 0x200 #define ARC$M_GFLT_EMUL 0x400 #define ARC$M_HFLT_EMUL 0x800 #define ARC$M_EMOD_EMUL 0x1000 #define ARC$M_POLY_EMUL 0x2000 #define ARC$M_VIRT_SCB 0x4000 #define ARC$M_VIRT_SPT 0x8000 #define ARC$M_VIRT_PCB 0x10000 #define ARC$M_LOAD_SMP 0x20000 #define ARC$S_ARCDEF 4 typedef struct _arc { __struct { unsigned arcdef$$_fill_1 : 4; /* */ unsigned arc$v_char_emul : 1; /* Char Str Ins Emul */ unsigned arc$v_dcml_emul : 1; /* Decimal String Emul */ unsigned arc$v_edpc_emul : 1; /* EDITPC Instr Emul */ unsigned arc$v_crc_emul : 1; /* CRC Instr Emul */ unsigned arc$v_dflt_emul : 1; /* D-flt Data Type Emul */ unsigned arc$v_fflt_emul : 1; /* F-flt Data Type Emul */ unsigned arc$v_gflt_emul : 1; /* G-flt Data Type Emul */ unsigned arc$v_hflt_emul : 1; /* H-flt Data Type Emul */ unsigned arc$v_emod_emul : 1; /* EMOD Instr Emul */ unsigned arc$v_poly_emul : 1; /* POLY Instr Emul */ unsigned arc$v_virt_scb : 1; /* SCB located in virtual memory */ unsigned arc$v_virt_spt : 1; /* SPT located in virtual memory */ unsigned arc$v_virt_pcb : 1; /* HWPCB located in virtual memory */ unsigned arc$v_load_smp : 1; /* Load SMP uncoditionally */ unsigned arcdef$$_fill_2 : 14; /* */ } arc$r_arcdef_bits; } ARC; #if !defined(__VAXC) #define arc$v_char_emul arc$r_arcdef_bits.arc$v_char_emul #define arc$v_dcml_emul arc$r_arcdef_bits.arc$v_dcml_emul #define arc$v_edpc_emul arc$r_arcdef_bits.arc$v_edpc_emul #define arc$v_crc_emul arc$r_arcdef_bits.arc$v_crc_emul #define arc$v_dflt_emul arc$r_arcdef_bits.arc$v_dflt_emul #define arc$v_fflt_emul arc$r_arcdef_bits.arc$v_fflt_emul #define arc$v_gflt_emul arc$r_arcdef_bits.arc$v_gflt_emul #define arc$v_hflt_emul arc$r_arcdef_bits.arc$v_hflt_emul #define arc$v_emod_emul arc$r_arcdef_bits.arc$v_emod_emul #define arc$v_poly_emul arc$r_arcdef_bits.arc$v_poly_emul #define arc$v_virt_scb arc$r_arcdef_bits.arc$v_virt_scb #define arc$v_virt_spt arc$r_arcdef_bits.arc$v_virt_spt #define arc$v_virt_pcb arc$r_arcdef_bits.arc$v_virt_pcb #define arc$v_load_smp arc$r_arcdef_bits.arc$v_load_smp #endif /* #if !defined(__VAXC) */ #pragma __member_alignment __restore #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __restore /* Restore the previously-defined required ptr size */ #endif #ifdef __cplusplus } #endif #pragma __standard #endif /* __ARCDEF_LOADED */