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 1, 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Written by Mukesh Prasad. */
34 /* Maximum number of bytes to be written in one RMS write.
35 * Must be a multiple of BLOCKSIZE.
37 #define MAXWRITE (BLOCKSIZE * 30)
39 /* This funniness is to ensure that sdata occurs alphabetically BEFORE the
40 $DATA psect and that edata occurs after ALL Emacs psects. This is
41 because the VMS linker sorts all psects in a cluster alphabetically
42 during the linking, unless you use the cluster_psect command. Emacs
43 uses the cluster command to group all Emacs psects into one cluster;
44 this keeps the dumped data separate from any loaded libraries. */
46 globaldef
{"$D$ATA"} char sdata
[512]; /* Start of saved data area */
47 globaldef
{"__DATA"} char edata
[512]; /* End of saved data area */
49 /* Structure to write into first block of map file.
54 char * sdata
; /* Start of data area */
55 char * edata
; /* End of data area */
56 int datablk
; /* Block in file to map data area from/to */
59 static void fill_fab (), fill_rab ();
60 static int write_data ();
62 extern char *start_of_data ();
63 extern int vms_out_initial
; /* Defined in malloc.c */
65 /* Maps in the data and alloc area from the map file.
76 struct map_data map_data
;
80 fab
.fab$b_fac
= FAB$M_BIO
|FAB$M_GET
;
82 fab
.fab$b_fns
= strlen (name
);
83 status
= sys$
open (&fab
);
84 if (status
!= RMS$_NORMAL
)
86 printf ("Map file not available, running bare Emacs....\n");
87 return 0; /* Map file not available */
89 /* Connect the RAB block */
92 rab
.rab$b_rac
= RAB$C_SEQ
;
93 rab
.rab$l_rop
= RAB$M_BIO
;
94 status
= sys$
connect (&rab
);
95 if (status
!= RMS$_NORMAL
)
97 /* Read the header data */
98 rab
.rab$l_ubf
= &map_data
;
99 rab
.rab$w_usz
= sizeof (map_data
);
101 status
= sys$
read (&rab
);
102 if (status
!= RMS$_NORMAL
)
104 status
= sys$
close (&fab
);
105 if (status
!= RMS$_NORMAL
)
107 if (map_data
.sdata
!= start_of_data ())
109 printf ("Start of data area has moved: cannot map in data.\n");
112 if (map_data
.edata
!= edata
)
114 printf ("End of data area has moved: cannot map in data.\n");
117 fab
.fab$l_fop
|= FAB$M_UFO
;
118 status
= sys$
open (&fab
);
119 if (status
!= RMS$_NORMAL
)
122 inadr
[0] = map_data
.sdata
;
123 inadr
[1] = map_data
.edata
;
124 status
= sys$
crmpsc (inadr
, 0, 0, SEC$M_CRF
| SEC$M_WRT
, 0, 0, 0,
125 fab
.fab$l_stv
, 0, map_data
.datablk
, 0, 0);
130 /* Writes the data and alloc area to the map file.
138 struct map_data map_data
;
143 error ("Out of initial allocation. Must rebuild emacs with more memory (VMS_ALLOCATION_SIZE).");
146 map_data
.sdata
= start_of_data ();
147 map_data
.edata
= edata
;
148 datasize
= map_data
.edata
- map_data
.sdata
+ 1;
149 map_data
.datablk
= 2 + (sizeof (map_data
) + BLOCKSIZE
- 1) / BLOCKSIZE
;
150 /* Create map file. */
152 fab
.fab$b_fac
= FAB$M_BIO
|FAB$M_PUT
;
153 fab
.fab$l_fna
= into
;
154 fab
.fab$b_fns
= strlen (into
);
155 fab
.fab$l_fop
= FAB$M_CBT
;
156 fab
.fab$b_org
= FAB$C_SEQ
;
158 fab
.fab$b_rfm
= FAB$C_VAR
;
159 fab
.fab$l_alq
= 1 + map_data
.datablk
+
160 ((datasize
+ BLOCKSIZE
- 1) / BLOCKSIZE
);
161 status
= sys$
create (&fab
);
162 if (status
!= RMS$_NORMAL
)
164 error ("Could not create map file");
167 /* Connect the RAB block */
169 rab
.rab$l_fab
= &fab
;
170 rab
.rab$b_rac
= RAB$C_SEQ
;
171 rab
.rab$l_rop
= RAB$M_BIO
;
172 status
= sys$
connect (&rab
);
173 if (status
!= RMS$_NORMAL
)
175 error ("RMS connect to map file failed");
178 /* Write the header */
179 rab
.rab$l_rbf
= &map_data
;
180 rab
.rab$w_rsz
= sizeof (map_data
);
181 status
= sys$
write (&rab
);
182 if (status
!= RMS$_NORMAL
)
184 error ("RMS write (header) to map file failed");
187 if (! write_data (&rab
, map_data
.datablk
, map_data
.sdata
, datasize
))
189 status
= sys$
close (&fab
);
190 if (status
!= RMS$_NORMAL
)
192 error ("RMS close on map file failed");
199 write_data (rab
, firstblock
, data
, length
)
205 rab
->rab$l_bkt
= firstblock
;
208 rab
->rab$l_rbf
= data
;
209 rab
->rab$w_rsz
= length
> MAXWRITE
? MAXWRITE
: length
;
210 status
= sys$
write (rab
, 0, 0);
211 if (status
!= RMS$_NORMAL
)
213 error ("RMS write to map file failed");
216 data
= &data
[MAXWRITE
];