mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Now that we're recommending inlining with client code and optimising with -O2 or -O3, we can't afford any bug introduced by the strict aliasing rule. Copied from Perforce Change: 179322 ServerID: perforce.ravenbrook.com
512 lines
20 KiB
C
512 lines
20 KiB
C
/* mpmtypes.h: MEMORY POOL MANAGER TYPES
|
|
*
|
|
* $Id$
|
|
* Copyright (c) 2001-2002, 2006 Ravenbrook Limited. See end of file for license.
|
|
* Portions copyright (c) 2001 Global Graphics Software.
|
|
*
|
|
* .design: <design/type/>
|
|
*
|
|
* .rationale: Types and type constants are almost all defined
|
|
* in this header, in advance of any declarations of prototypes
|
|
* or structures. This avoids difficulties in defining recursive
|
|
* data structures.
|
|
*/
|
|
|
|
#ifndef mpmtypes_h
|
|
#define mpmtypes_h
|
|
|
|
#include "config.h" /* this must come first: it defines target options */
|
|
#include "misc.h" /* miscellaneous non-specific bits and bobs */
|
|
#include "mpslib.h"
|
|
#include "mpstd.h" /* for MPS_T_ULONGEST */
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
/* TYPES */
|
|
|
|
typedef unsigned long Sig; /* <design/sig/> */
|
|
typedef int Res; /* <design/type/#res> */
|
|
|
|
typedef void (*Fun)(void); /* <design/type/#fun> */
|
|
typedef MPS_T_WORD Word; /* <design/type/#word> */
|
|
typedef unsigned char Byte; /* <design/type/#byte> */
|
|
typedef struct AddrStruct *Addr; /* <design/type/#addr> */
|
|
typedef Word Size; /* <design/type/#size> */
|
|
typedef Word Count; /* <design/type/#count> */
|
|
typedef Word Index; /* <design/type/#index> */
|
|
typedef Word Align; /* <design/type/#align> */
|
|
typedef unsigned Shift; /* <design/type/#shift> */
|
|
typedef unsigned Serial; /* <design/type/#serial> */
|
|
typedef Addr Ref; /* <design/type/#ref> */
|
|
typedef void *Pointer; /* <design/type/#pointer> */
|
|
typedef unsigned long Clock; /* processor time */
|
|
typedef MPS_T_ULONGEST ULongest; /* <design/type/#ulongest> */
|
|
|
|
typedef Word RefSet; /* design.mps.refset */
|
|
typedef Word ZoneSet; /* design.mps.refset */
|
|
typedef unsigned Rank;
|
|
typedef unsigned RankSet;
|
|
typedef unsigned RootMode;
|
|
typedef Size Epoch; /* design.mps.ld */
|
|
typedef unsigned TraceId; /* <design/trace/> */
|
|
typedef unsigned TraceSet; /* <design/trace/> */
|
|
typedef unsigned TraceState; /* <design/trace/> */
|
|
typedef unsigned AccessSet; /* <design/type/#access-set> */
|
|
typedef unsigned Attr; /* <design/type/#attr> */
|
|
typedef unsigned FormatVariety;
|
|
typedef int RootVar; /* <design/type/#rootvar> */
|
|
|
|
typedef Word *BT; /* <design/bt/> */
|
|
typedef struct BootBlockStruct *BootBlock; /* <code/boot.c> */
|
|
typedef struct BufferStruct *Buffer; /* <design/buffer/> */
|
|
typedef struct SegBufStruct *SegBuf; /* <design/buffer/> */
|
|
typedef struct BufferClassStruct *BufferClass; /* <design/buffer/> */
|
|
typedef BufferClass SegBufClass; /* <design/buffer/> */
|
|
typedef BufferClass RankBufClass; /* <design/buffer/> */
|
|
typedef unsigned BufferMode; /* <design/buffer/> */
|
|
typedef unsigned FrameState; /* <design/alloc-frame/> */
|
|
typedef struct FormatStruct *Format; /* design.mps.format */
|
|
typedef struct LockStruct *Lock; /* <code/lock.c>* */
|
|
typedef struct PoolStruct *Pool; /* <design/pool/> */
|
|
typedef struct PoolClassStruct *PoolClass; /* <code/poolclas.c> */
|
|
typedef PoolClass AbstractPoolClass; /* <code/poolabs.c> */
|
|
typedef PoolClass AbstractAllocFreePoolClass; /* <code/poolabs.c> */
|
|
typedef PoolClass AbstractBufferPoolClass; /* <code/poolabs.c> */
|
|
typedef PoolClass AbstractSegBufPoolClass; /* <code/poolabs.c> */
|
|
typedef PoolClass AbstractScanPoolClass; /* <code/poolabs.c> */
|
|
typedef PoolClass AbstractCollectPoolClass; /* <code/poolabs.c> */
|
|
typedef struct TraceStruct *Trace; /* <design/trace/> */
|
|
typedef struct ScanStateStruct *ScanState; /* <design/trace/> */
|
|
typedef struct ChainStruct *Chain; /* <design/trace/> */
|
|
typedef struct TractStruct *Tract; /* <design/arena/> */
|
|
typedef struct ChunkStruct *Chunk; /* <code/tract.c> */
|
|
typedef struct ChunkCacheEntryStruct *ChunkCacheEntry; /* <code/tract.c> */
|
|
typedef struct PageStruct *Page; /* <code/tract.c> */
|
|
typedef struct SegStruct *Seg; /* <code/seg.c> */
|
|
typedef struct GCSegStruct *GCSeg; /* <code/seg.c> */
|
|
typedef struct SegClassStruct *SegClass; /* <code/seg.c> */
|
|
typedef SegClass GCSegClass; /* <code/seg.c> */
|
|
typedef struct SegPrefStruct *SegPref; /* design.mps.pref, <code/locus.c> */
|
|
typedef int SegPrefKind; /* design.mps.pref, <code/locus.c> */
|
|
typedef struct ArenaClassStruct *ArenaClass; /* <design/arena/> */
|
|
typedef ArenaClass AbstractArenaClass; /* <code/arena.c> */
|
|
typedef struct mps_arena_s *Arena; /* <design/arena/> */
|
|
typedef struct GlobalsStruct *Globals; /* <design/arena/> */
|
|
typedef struct VMStruct *VM; /* <code/vm.c>* */
|
|
typedef struct RootStruct *Root; /* <code/root.c> */
|
|
typedef struct ThreadStruct *Thread; /* <code/th.c>* */
|
|
typedef struct MutatorFaultContextStruct
|
|
*MutatorFaultContext; /* <design/prot/> */
|
|
typedef struct PoolDebugMixinStruct *PoolDebugMixin;
|
|
typedef struct AllocPatternStruct *AllocPattern;
|
|
typedef struct AllocFrameStruct *AllocFrame; /* <design/alloc-frame/> */
|
|
typedef struct ReservoirStruct *Reservoir; /* <design/reservoir/> */
|
|
|
|
|
|
/* Arena*Method -- see <code/mpmst.h#ArenaClassStruct> */
|
|
|
|
typedef Res (*ArenaInitMethod)(Arena *arenaReturn,
|
|
ArenaClass class, va_list args);
|
|
typedef void (*ArenaFinishMethod)(Arena arena);
|
|
typedef Size (*ArenaReservedMethod)(Arena arena);
|
|
typedef void (*ArenaSpareCommitExceededMethod)(Arena arena);
|
|
typedef Res (*ArenaExtendMethod)(Arena arena, Addr base, Size size);
|
|
typedef Res (*ArenaAllocMethod)(Addr *baseReturn, Tract *baseTractReturn,
|
|
SegPref pref, Size size, Pool pool);
|
|
typedef void (*ArenaFreeMethod)(Addr base, Size size, Pool pool);
|
|
typedef Res (*ArenaChunkInitMethod)(Chunk chunk, BootBlock boot);
|
|
typedef void (*ArenaChunkFinishMethod)(Chunk chunk);
|
|
typedef void (*ArenaCompactMethod)(Arena arena, Trace trace);
|
|
typedef Res (*ArenaDescribeMethod)(Arena arena, mps_lib_FILE *stream);
|
|
|
|
|
|
/* TraceFixMethod */
|
|
|
|
typedef Res (*TraceFixMethod)(ScanState ss, Ref *refIO);
|
|
|
|
|
|
/* Heap Walker */
|
|
|
|
/* This type is used by the PoolClass method Walk */
|
|
typedef void (*FormattedObjectsStepMethod)(Addr obj, Format fmt, Pool pool,
|
|
void *v, size_t s);
|
|
|
|
/* This type is used by the PoolClass method Walk */
|
|
typedef void (*FreeBlockStepMethod)(Addr base, Addr limit, Pool pool, void *p);
|
|
|
|
|
|
/* Seg*Method -- see <design/seg/> */
|
|
|
|
typedef Res (*SegInitMethod)(Seg seg, Pool pool, Addr base, Size size,
|
|
Bool withReservoirPermit, va_list args);
|
|
typedef void (*SegFinishMethod)(Seg seg);
|
|
typedef void (*SegSetGreyMethod)(Seg seg, TraceSet grey);
|
|
typedef void (*SegSetWhiteMethod)(Seg seg, TraceSet white);
|
|
typedef void (*SegSetRankSetMethod)(Seg seg, RankSet rankSet);
|
|
typedef void (*SegSetRankSummaryMethod)(Seg seg, RankSet rankSet,
|
|
RefSet summary);
|
|
typedef void (*SegSetSummaryMethod)(Seg seg, RefSet summary);
|
|
typedef Buffer (*SegBufferMethod)(Seg seg);
|
|
typedef void (*SegSetBufferMethod)(Seg seg, Buffer buffer);
|
|
typedef Res (*SegDescribeMethod)(Seg seg, mps_lib_FILE *stream);
|
|
typedef Res (*SegMergeMethod)(Seg seg, Seg segHi,
|
|
Addr base, Addr mid, Addr limit,
|
|
Bool withReservoirPermit, va_list args);
|
|
typedef Res (*SegSplitMethod)(Seg seg, Seg segHi,
|
|
Addr base, Addr mid, Addr limit,
|
|
Bool withReservoirPermit, va_list args);
|
|
|
|
/* Buffer*Method -- see <design/buffer/> */
|
|
|
|
typedef Res (*BufferInitMethod)(Buffer buffer, Pool pool, va_list args);
|
|
typedef void (*BufferFinishMethod)(Buffer buffer);
|
|
typedef void (*BufferAttachMethod)(Buffer buffer, Addr base, Addr limit,
|
|
Addr init, Size size);
|
|
typedef void (*BufferDetachMethod)(Buffer buffer);
|
|
typedef Seg (*BufferSegMethod)(Buffer buffer);
|
|
typedef RankSet (*BufferRankSetMethod)(Buffer buffer);
|
|
typedef void (*BufferSetRankSetMethod)(Buffer buffer, RankSet rankSet);
|
|
typedef void (*BufferReassignSegMethod)(Buffer buffer, Seg seg);
|
|
typedef Res (*BufferDescribeMethod)(Buffer buffer, mps_lib_FILE *stream);
|
|
|
|
|
|
/* Pool*Method -- see <design/class-interface/> */
|
|
|
|
/* Order of types corresponds to PoolClassStruct in <code/mpmst.h> */
|
|
|
|
typedef Res (*PoolInitMethod)(Pool pool, va_list args);
|
|
typedef void (*PoolFinishMethod)(Pool pool);
|
|
typedef Res (*PoolAllocMethod)(Addr *pReturn, Pool pool, Size size,
|
|
Bool withReservoirPermit);
|
|
typedef void (*PoolFreeMethod)(Pool pool, Addr old, Size size);
|
|
typedef Res (*PoolBufferFillMethod)(Addr *baseReturn, Addr *limitReturn,
|
|
Pool pool, Buffer buffer, Size size,
|
|
Bool withReservoirPermit);
|
|
typedef void (*PoolBufferEmptyMethod)(Pool pool, Buffer buffer,
|
|
Addr init, Addr limit);
|
|
typedef Res (*PoolTraceBeginMethod)(Pool pool, Trace trace);
|
|
typedef Res (*PoolAccessMethod)(Pool pool, Seg seg, Addr addr,
|
|
AccessSet mode, MutatorFaultContext context);
|
|
typedef Res (*PoolWhitenMethod)(Pool pool, Trace trace, Seg seg);
|
|
typedef void (*PoolGreyMethod)(Pool pool, Trace trace, Seg seg);
|
|
typedef void (*PoolBlackenMethod)(Pool pool, TraceSet traceSet, Seg seg);
|
|
typedef Res (*PoolScanMethod)(Bool *totalReturn, ScanState ss,
|
|
Pool pool, Seg seg);
|
|
typedef Res (*PoolFixMethod)(Pool pool, ScanState ss, Seg seg,
|
|
Ref *refIO);
|
|
typedef Res (*PoolFixEmergencyMethod)(Pool pool, ScanState ss,
|
|
Seg seg, Ref *refIO);
|
|
typedef void (*PoolReclaimMethod)(Pool pool, Trace trace, Seg seg);
|
|
typedef void (*PoolTraceEndMethod)(Pool pool, Trace trace);
|
|
typedef void (*PoolRampBeginMethod)(Pool pool, Buffer buf, Bool collectAll);
|
|
typedef void (*PoolRampEndMethod)(Pool pool, Buffer buf);
|
|
typedef Res (*PoolFramePushMethod)(AllocFrame *frameReturn,
|
|
Pool pool, Buffer buf);
|
|
typedef Res (*PoolFramePopMethod)(Pool pool, Buffer buf,
|
|
AllocFrame frame);
|
|
typedef void (*PoolFramePopPendingMethod)(Pool pool, Buffer buf,
|
|
AllocFrame frame);
|
|
typedef void (*PoolWalkMethod)(Pool pool, Seg seg,
|
|
FormattedObjectsStepMethod f,
|
|
void *v, size_t s);
|
|
typedef void (*PoolFreeWalkMethod)(Pool pool, FreeBlockStepMethod f, void *p);
|
|
typedef BufferClass (*PoolBufferClassMethod)(void);
|
|
typedef Res (*PoolDescribeMethod)(Pool pool, mps_lib_FILE *stream);
|
|
typedef PoolDebugMixin (*PoolDebugMixinMethod)(Pool pool);
|
|
|
|
|
|
/* Messages
|
|
*
|
|
* See <design/message/>
|
|
*/
|
|
|
|
typedef unsigned MessageType;
|
|
typedef struct MessageStruct *Message;
|
|
typedef struct MessageClassStruct *MessageClass;
|
|
|
|
/* Message*Method -- <design/message/> */
|
|
|
|
typedef void (*MessageDeleteMethod)(Message message);
|
|
typedef void (*MessageFinalizationRefMethod)
|
|
(Ref *refReturn, Arena arena, Message message);
|
|
typedef Size (*MessageGCLiveSizeMethod)(Message message);
|
|
typedef Size (*MessageGCCondemnedSizeMethod)(Message message);
|
|
typedef Size (*MessageGCNotCondemnedSizeMethod)(Message message);
|
|
typedef const char * (*MessageGCStartWhyMethod)(Message message);
|
|
|
|
/* Message Types -- <design/message/> and elsewhere */
|
|
|
|
typedef struct TraceStartMessageStruct *TraceStartMessage;
|
|
typedef struct TraceMessageStruct *TraceMessage; /* trace end */
|
|
|
|
|
|
/* Format*Method -- see design.mps.format-interface */
|
|
/* .fmt-methods: These methods must match those defined in the */
|
|
/* MPS C Interface. (See <code/mps.h#fmt-methods>.) */
|
|
|
|
typedef Res (*FormatScanMethod)(ScanState ss, Addr base, Addr limit);
|
|
typedef Addr (*FormatSkipMethod)(Addr object);
|
|
typedef void (*FormatMoveMethod)(Addr object, Addr to);
|
|
typedef Addr (*FormatIsMovedMethod)(Addr object);
|
|
typedef void (*FormatCopyMethod)(Addr object, Addr to);
|
|
typedef void (*FormatPadMethod)(Addr base, Size size);
|
|
typedef Addr (*FormatClassMethod)(Addr object);
|
|
|
|
|
|
/* Root*Method -- see design.mps.root-interface */
|
|
/* .root-methods: These methods must match those defined in the */
|
|
/* MPS C Interface. (See <code/mps.h#root-methods>.) */
|
|
|
|
typedef Res (*RootScanMethod)(ScanState ss, void *p, size_t s);
|
|
typedef Res (*RootScanRegMethod)(ScanState ss, Thread thread, void *p, size_t s);
|
|
|
|
|
|
/* CONSTANTS */
|
|
|
|
|
|
/* <design/sig/> SIGnature IS BAD */
|
|
#define SigInvalid ((Sig)0x51915BAD)
|
|
|
|
#define SizeMAX ((Size)-1)
|
|
#define AccessSetEMPTY ((AccessSet)0) /* <design/type/#access-set> */
|
|
#define AccessREAD ((AccessSet)(1<<0))
|
|
#define AccessWRITE ((AccessSet)(1<<1))
|
|
#define AccessSetWIDTH (2)
|
|
#define RefSetEMPTY BS_EMPTY(RefSet)
|
|
#define RefSetUNIV BS_UNIV(RefSet)
|
|
#define ZoneSetEMPTY BS_EMPTY(ZoneSet)
|
|
#define ZoneSetUNIV BS_UNIV(ZoneSet)
|
|
#define TraceSetEMPTY BS_EMPTY(TraceSet)
|
|
#define TraceSetUNIV ((TraceSet)((1u << TraceLIMIT) - 1))
|
|
#define RankSetEMPTY BS_EMPTY(RankSet)
|
|
#define RankSetUNIV ((RankSet)((1u << RankLIMIT) - 1))
|
|
#define AttrFMT ((Attr)(1<<0)) /* <design/type/#attr> */
|
|
#define AttrSCAN ((Attr)(1<<1))
|
|
#define AttrPM_NO_READ ((Attr)(1<<2))
|
|
#define AttrPM_NO_WRITE ((Attr)(1<<3))
|
|
#define AttrALLOC ((Attr)(1<<4))
|
|
#define AttrFREE ((Attr)(1<<5))
|
|
#define AttrBUF ((Attr)(1<<6))
|
|
#define AttrBUF_RESERVE ((Attr)(1<<7))
|
|
#define AttrBUF_ALLOC ((Attr)(1<<8))
|
|
#define AttrGC ((Attr)(1<<9))
|
|
#define AttrINCR_RB ((Attr)(1<<10))
|
|
#define AttrINCR_WB ((Attr)(1<<11))
|
|
#define AttrMOVINGGC ((Attr)(1<<12))
|
|
#define AttrMASK (AttrFMT | AttrSCAN | AttrPM_NO_READ | \
|
|
AttrPM_NO_WRITE | AttrALLOC | AttrFREE | \
|
|
AttrBUF | AttrBUF_RESERVE | AttrBUF_ALLOC | \
|
|
AttrGC | AttrINCR_RB | AttrINCR_WB | AttrMOVINGGC)
|
|
|
|
|
|
/* Format varieties */
|
|
enum {
|
|
FormatVarietyA = 1,
|
|
FormatVarietyB,
|
|
FormatVarietyAutoHeader,
|
|
FormatVarietyFixed,
|
|
FormatVarietyLIMIT
|
|
};
|
|
|
|
|
|
/* Segment preferences */
|
|
enum {
|
|
SegPrefHigh = 1,
|
|
SegPrefLow,
|
|
SegPrefZoneSet,
|
|
SegPrefGen,
|
|
SegPrefCollected,
|
|
SegPrefLIMIT
|
|
};
|
|
|
|
|
|
/* Buffer modes */
|
|
#define BufferModeATTACHED ((BufferMode)(1<<0))
|
|
#define BufferModeFLIPPED ((BufferMode)(1<<1))
|
|
#define BufferModeLOGGED ((BufferMode)(1<<2))
|
|
#define BufferModeTRANSITION ((BufferMode)(1<<3))
|
|
|
|
|
|
/* Buffer frame states. See <design/alloc-frame/#lw-frame.states> */
|
|
enum {
|
|
BufferFrameVALID = 1,
|
|
BufferFramePOP_PENDING,
|
|
BufferFrameDISABLED
|
|
};
|
|
|
|
|
|
/* Rank constants -- see <design/type/#rank> */
|
|
/* These definitions must match <code/mps.h#rank>. */
|
|
/* This is checked by <code/mpsi.c#check>. */
|
|
|
|
enum {
|
|
RankAMBIG = 0,
|
|
RankEXACT = 1,
|
|
RankFINAL = 2,
|
|
RankWEAK = 3,
|
|
RankLIMIT
|
|
};
|
|
|
|
|
|
/* Root Modes -- not implemented */
|
|
/* .rm: Synchronize with <code/mps.h#rm>. */
|
|
/* This comment exists as a placeholder for when root modes are */
|
|
/* implemented. */
|
|
|
|
#define RootModeCONSTANT ((RootMode)1<<0)
|
|
#define RootModePROTECTABLE ((RootMode)1<<1)
|
|
#define RootModePROTECTABLE_INNER ((RootMode)1<<2)
|
|
|
|
|
|
/* Root Variants -- see <design/type/#rootvar>
|
|
*
|
|
* .rootvar: Synchonize with <code/root.c#rootvarcheck>
|
|
*/
|
|
|
|
enum {
|
|
RootFUN,
|
|
RootTABLE,
|
|
RootTABLE_MASKED,
|
|
RootREG,
|
|
RootFMT,
|
|
RootLIMIT
|
|
};
|
|
|
|
|
|
/* .result-codes: Result Codes -- see <design/type/#res> */
|
|
/* These definitions must match <code/mps.h#result-codes>. */
|
|
/* This is checked by <code/mpsi.c#check.rc>. */
|
|
/* Changing this list entails changing the list in */
|
|
/* <code/mps.h#result-codes> and the check in <code/mpsi.c#check.rc> */
|
|
|
|
enum {
|
|
ResOK = 0, /* MPS_RES_OK */
|
|
ResFAIL, /* MPS_RES_FAIL */
|
|
ResRESOURCE, /* MPS_RES_RESOURCE */
|
|
ResMEMORY, /* MPS_RES_MEMORY */
|
|
ResLIMIT, /* MPS_RES_LIMIT */
|
|
/* note "LIMIT" does _not_ have usual end-of-enum meaning -rhsk */
|
|
ResUNIMPL, /* MPS_RES_UNIMPL */
|
|
ResIO, /* MPS_RES_IO */
|
|
ResCOMMIT_LIMIT, /* MPS_RES_COMMIT_LIMIT */
|
|
ResPARAM /* MPS_RES_PARAM */
|
|
};
|
|
|
|
|
|
/* TraceStates -- see <design/trace/> */
|
|
|
|
enum {
|
|
TraceINIT = 1,
|
|
TraceUNFLIPPED,
|
|
TraceFLIPPED,
|
|
TraceRECLAIM,
|
|
TraceFINISHED
|
|
};
|
|
|
|
|
|
/* TraceStart reasons: the trigger that caused a trace to start. */
|
|
/* Make these specific trigger names, not broad categories; */
|
|
/* and if a new trigger is added, add a new reason. */
|
|
/* TODO: A better way for MPS extensions to extend the list of reasons
|
|
instead of the catch-all TraceStartWhyEXTENSION. */
|
|
|
|
enum {
|
|
TraceStartWhyBASE = 1, /* not a reason, the base of the enum. */
|
|
TraceStartWhyCHAIN_GEN0CAP = TraceStartWhyBASE, /* start minor */
|
|
TraceStartWhyDYNAMICCRITERION, /* start full */
|
|
TraceStartWhyOPPORTUNISM, /* start full */
|
|
TraceStartWhyCLIENTFULL_INCREMENTAL, /* start full */
|
|
TraceStartWhyCLIENTFULL_BLOCK, /* do full */
|
|
TraceStartWhyWALK, /* walking references -- see walk.c */
|
|
TraceStartWhyEXTENSION, /* MPS extension using traces */
|
|
TraceStartWhyLIMIT /* not a reason, the limit of the enum. */
|
|
};
|
|
|
|
|
|
/* MessageTypes -- see <design/message/> */
|
|
/* .message.types: Keep in sync with <code/mps.h#message.types> */
|
|
|
|
enum {
|
|
MessageTypeFINALIZATION, /* MPS_MESSAGE_TYPE_FINALIZATION */
|
|
MessageTypeGC, /* MPS_MESSAGE_TYPE_GC = trace end */
|
|
MessageTypeGCSTART, /* MPS_MESSAGE_TYPE_GC_START */
|
|
MessageTypeLIMIT /* not a message type, the limit of the enum. */
|
|
};
|
|
|
|
|
|
/* Types for WriteF formats */
|
|
/* These should be used with calls to WriteF. */
|
|
/* These must be unpromotable types. */
|
|
|
|
typedef Addr WriteFA;
|
|
typedef Pointer WriteFP;
|
|
typedef const char *WriteFS;
|
|
typedef Word WriteFW;
|
|
typedef ULongest WriteFU;
|
|
typedef ULongest WriteFB;
|
|
typedef void *(*WriteFF)(void);
|
|
typedef int WriteFC; /* Promoted */
|
|
typedef double WriteFD;
|
|
|
|
|
|
/* STATISTIC_DECL -- declare a field to accumulate statistics in
|
|
*
|
|
* The argument is a field declaration (a struct-declaration minus the
|
|
* semicolon) for a single field (no commas). Currently, we always
|
|
* leave them in, see design.mps.metrics.
|
|
*/
|
|
|
|
#if defined(STATISTICS)
|
|
#define STATISTIC_DECL(field) field
|
|
#elif defined(STATISTICS_NONE)
|
|
#define STATISTIC_DECL(field) field
|
|
#else
|
|
#error "No statistics configured."
|
|
#endif
|
|
|
|
|
|
#endif /* mpmtypes_h */
|
|
|
|
|
|
/* C. COPYRIGHT AND LICENSE
|
|
*
|
|
* Copyright (C) 2001-2002, 2006 Ravenbrook Limited <http://www.ravenbrook.com/>.
|
|
* All rights reserved. This is an open source license. Contact
|
|
* Ravenbrook for commercial licensing options.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Redistributions in any form must be accompanied by information on how
|
|
* to obtain complete source code for this software and any accompanying
|
|
* software that uses this software. The source code must either be
|
|
* included in the distribution or be available for no more than the cost
|
|
* of distribution plus a nominal fee, and must be freely redistributable
|
|
* under reasonable conditions. For an executable file, complete source
|
|
* code means the source code for all modules it contains. It does not
|
|
* include source code for modules or files that typically accompany the
|
|
* major components of the operating system on which the executable file
|
|
* runs.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
* PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|