1 /* VMS mapping of data and alloc arena for GNU Emacs.
2 Copyright (C) 1986, 1987 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Written by Mukesh Prasad. */
35 /* Maximum number of bytes to be written in one RMS write.
36 * Must be a multiple of BLOCKSIZE.
38 #define MAXWRITE (BLOCKSIZE * 30)
40 /* This funniness is to ensure that sdata occurs alphabetically BEFORE the
41 $DATA psect and that edata occurs after ALL Emacs psects. This is
42 because the VMS linker sorts all psects in a cluster alphabetically
43 during the linking, unless you use the cluster_psect command. Emacs
44 uses the cluster command to group all Emacs psects into one cluster;
45 this keeps the dumped data separate from any loaded libraries. */
47 globaldef
{"$D$ATA"} char sdata
[512]; /* Start of saved data area */
48 globaldef
{"__DATA"} char edata
[512]; /* End of saved data area */
50 /* Structure to write into first block of map file.
55 char * sdata
; /* Start of data area */
56 char * edata
; /* End of data area */
57 int datablk
; /* Block in file to map data area from/to */
60 static void fill_fab (), fill_rab ();
61 static int write_data ();
63 extern char *start_of_data ();
64 extern int vms_out_initial
; /* Defined in malloc.c */
66 /* Maps in the data and alloc area from the map file.
77 struct map_data map_data
;
81 fab
.fab$b_fac
= FAB$M_BIO
|FAB$M_GET
;
83 fab
.fab$b_fns
= strlen (name
);
84 status
= sys$
open (&fab
);
85 if (status
!= RMS$_NORMAL
)
87 printf ("Map file not available, running bare Emacs....\n");
88 return 0; /* Map file not available */
90 /* Connect the RAB block */
93 rab
.rab$b_rac
= RAB$C_SEQ
;
94 rab
.rab$l_rop
= RAB$M_BIO
;
95 status
= sys$
connect (&rab
);
96 if (status
!= RMS$_NORMAL
)
98 /* Read the header data */
99 rab
.rab$l_ubf
= &map_data
;
100 rab
.rab$w_usz
= sizeof (map_data
);
102 status
= sys$
read (&rab
);
103 if (status
!= RMS$_NORMAL
)
105 status
= sys$
close (&fab
);
106 if (status
!= RMS$_NORMAL
)
108 if (map_data
.sdata
!= start_of_data ())
110 printf ("Start of data area has moved: cannot map in data.\n");
113 if (map_data
.edata
!= edata
)
115 printf ("End of data area has moved: cannot map in data.\n");
118 fab
.fab$l_fop
|= FAB$M_UFO
;
119 status
= sys$
open (&fab
);
120 if (status
!= RMS$_NORMAL
)
123 inadr
[0] = map_data
.sdata
;
124 inadr
[1] = map_data
.edata
;
125 status
= sys$
crmpsc (inadr
, 0, 0, SEC$M_CRF
| SEC$M_WRT
, 0, 0, 0,
126 fab
.fab$l_stv
, 0, map_data
.datablk
, 0, 0);
131 /* Writes the data and alloc area to the map file.
139 struct map_data map_data
;
144 error ("Out of initial allocation. Must rebuild emacs with more memory (VMS_ALLOCATION_SIZE).");
147 map_data
.sdata
= start_of_data ();
148 map_data
.edata
= edata
;
149 datasize
= map_data
.edata
- map_data
.sdata
+ 1;
150 map_data
.datablk
= 2 + (sizeof (map_data
) + BLOCKSIZE
- 1) / BLOCKSIZE
;
151 /* Create map file. */
153 fab
.fab$b_fac
= FAB$M_BIO
|FAB$M_PUT
;
154 fab
.fab$l_fna
= into
;
155 fab
.fab$b_fns
= strlen (into
);
156 fab
.fab$l_fop
= FAB$M_CBT
;
157 fab
.fab$b_org
= FAB$C_SEQ
;
159 fab
.fab$b_rfm
= FAB$C_VAR
;
160 fab
.fab$l_alq
= 1 + map_data
.datablk
+
161 ((datasize
+ BLOCKSIZE
- 1) / BLOCKSIZE
);
162 status
= sys$
create (&fab
);
163 if (status
!= RMS$_NORMAL
)
165 error ("Could not create map file");
168 /* Connect the RAB block */
170 rab
.rab$l_fab
= &fab
;
171 rab
.rab$b_rac
= RAB$C_SEQ
;
172 rab
.rab$l_rop
= RAB$M_BIO
;
173 status
= sys$
connect (&rab
);
174 if (status
!= RMS$_NORMAL
)
176 error ("RMS connect to map file failed");
179 /* Write the header */
180 rab
.rab$l_rbf
= &map_data
;
181 rab
.rab$w_rsz
= sizeof (map_data
);
182 status
= sys$
write (&rab
);
183 if (status
!= RMS$_NORMAL
)
185 error ("RMS write (header) to map file failed");
188 if (! write_data (&rab
, map_data
.datablk
, map_data
.sdata
, datasize
))
190 status
= sys$
close (&fab
);
191 if (status
!= RMS$_NORMAL
)
193 error ("RMS close on map file failed");
200 write_data (rab
, firstblock
, data
, length
)
206 rab
->rab$l_bkt
= firstblock
;
209 rab
->rab$l_rbf
= data
;
210 rab
->rab$w_rsz
= length
> MAXWRITE
? MAXWRITE
: length
;
211 status
= sys$
write (rab
, 0, 0);
212 if (status
!= RMS$_NORMAL
)
214 error ("RMS write to map file failed");
217 data
= &data
[MAXWRITE
];