Skip to content

Commit

Permalink
Remove the Mark() and Release() procedures from the Pascal compiler and
Browse files Browse the repository at this point in the history
standard library, because they never worked and come from an achingly old
version of the Pascal specification. Fix the implementations of New() and
Dispose() to use the standard C memory allocator rather than rolling their own
(also in C). Write test!
  • Loading branch information
davidgiven committed Nov 24, 2016
1 parent 899f1ea commit c084f9f
Show file tree
Hide file tree
Showing 10 changed files with 95 additions and 330 deletions.
7 changes: 0 additions & 7 deletions lang/pc/comp/chk_expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1183,13 +1183,6 @@ ChkStandard(expp,left)
expp->nd_type = NULLTYPE;
break;

case R_MARK:
case R_RELEASE:
if( !(left = getarg(&arg, T_POINTER, 1, name, NULLTYPE)) )
return 0;
expp->nd_type = NULLTYPE;
break;

case R_HALT:
if( !arg->nd_right ) /* insert 0 parameter */
arg->nd_right = ZeroParam();
Expand Down
10 changes: 0 additions & 10 deletions lang/pc/comp/code.c
Original file line number Diff line number Diff line change
Expand Up @@ -1076,16 +1076,6 @@ CodeStd(nd)
C_asp(pointer_size + word_size);
break;

case R_MARK:
case R_RELEASE:
CodeDAddress(left);
if( req == R_MARK )
C_cal("_sav");
else
C_cal("_rst");
C_asp(pointer_size);
break;

case R_HALT:
if( left )
CodePExpr(left);
Expand Down
4 changes: 0 additions & 4 deletions lang/pc/comp/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,6 @@ AddRequired()
/* DYNAMIC ALLOCATION PROCEDURES */
(void) Enter("new", D_PROCEDURE, std_type, R_NEW);
(void) Enter("dispose", D_PROCEDURE, std_type, R_DISPOSE);
if( !options['s'] ) {
(void) Enter("mark", D_PROCEDURE, std_type, R_MARK);
(void) Enter("release", D_PROCEDURE, std_type, R_RELEASE);
}

/* MISCELLANEOUS PROCEDURE(S) */
if( !options['s'] )
Expand Down
95 changes: 49 additions & 46 deletions lang/pc/comp/required.h
Original file line number Diff line number Diff line change
@@ -1,48 +1,51 @@
/* REQUIRED PROCEDURES AND FUNCTIONS */

/* PROCEDURES */
/* FILE HANDLING */
#define R_REWRITE 1
#define R_PUT 2
#define R_RESET 3
#define R_GET 4
#define R_PAGE 5

/* DYNAMIC ALLOCATION */
#define R_NEW 6
#define R_DISPOSE 7
#define R_MARK 8
#define R_RELEASE 9

/* MISCELLANEOUS PROCEDURE(S) */
#define R_HALT 10

/* TRANSFER */
#define R_PACK 11
#define R_UNPACK 12

/* FUNCTIONS */
/* ARITHMETIC */
#define R_ABS 13
#define R_SQR 14
#define R_SIN 15
#define R_COS 16
#define R_EXP 17
#define R_LN 18
#define R_SQRT 19
#define R_ARCTAN 20

/* TRANSFER */
#define R_TRUNC 21
#define R_ROUND 22

/* ORDINAL */
#define R_ORD 23
#define R_CHR 24
#define R_SUCC 25
#define R_PRED 26

/* BOOLEAN */
#define R_ODD 27
#define R_EOF 28
#define R_EOLN 29
enum
{
R__UNUSED = 0,

/* PROCEDURES */
/* FILE HANDLING */
R_REWRITE,
R_PUT,
R_RESET,
R_GET,
R_PAGE,

/* DYNAMIC ALLOCATION */
R_NEW,
R_DISPOSE,

/* MISCELLANEOUS PROCEDURE(S) */
R_HALT,

/* TRANSFER */
R_PACK,
R_UNPACK,

/* FUNCTIONS */
/* ARITHMETIC */
R_ABS,
R_SQR,
R_SIN,
R_COS,
R_EXP,
R_LN,
R_SQRT,
R_ARCTAN,

/* TRANSFER */
R_TRUNC,
R_ROUND,

/* ORDINAL */
R_ORD,
R_CHR,
R_SUCC,
R_PRED,

/* BOOLEAN */
R_ODD,
R_EOF,
R_EOLN,
};
1 change: 0 additions & 1 deletion lang/pc/libpc/build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ for _, plat in ipairs(vars.plats) do
"./fif.e",
"./gto.e",
"./hol0.e",
"./sav.e",
"./sig.e",
"./trap.e",
"./trp.e",
Expand Down
101 changes: 0 additions & 101 deletions lang/pc/libpc/dis.c

This file was deleted.

122 changes: 11 additions & 111 deletions lang/pc/libpc/new.c
Original file line number Diff line number Diff line change
@@ -1,120 +1,20 @@
/*
* File: - new.c
*
* new() built in standard procedure in Pascal (6.6.5.3)
*
* Re-implementation of storage allocator for Ack Pascal compiler
* under Linux, and other UNIX-like systems.
*
* Written by Erik Backerud, 2010-10-01
*
* Original copyright and author info below:
*/
/* $Id$ */
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* This product is part of the Amsterdam Compiler Kit.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/

/* Author: J.W. Stevenson */
#include <stdlib.h>
#include <em_abs.h>
#include <pc_err.h>

#define assert(x) /* nothing */
#define UNDEF 0x8000
#define NALLOC (1024) /* request this many units from OS */


/*
* use a singly linked list of free blocks.
*/
struct adm {
struct adm *next;
int size;
};

extern struct adm *freep;

extern void _trp(int); /* called on error */

extern void _dis(int, struct adm **);


/*
* Helper function to request 'nu' units of memory from the OS.
* A storage unit is sizeof(struct adm). Typically 8 bytes
* on a 32-bit machine like i386 etc.
*/
static struct adm *
morecore(unsigned nu)
void _new(int n, void** ptr)
{
char *cp, *sbrk(int);
struct adm *up;
void* p = malloc(n);
if (!p)
_trp(EHEAP);

if (nu < NALLOC)
nu = NALLOC;
cp = sbrk(nu * sizeof(struct adm));
if (cp == (char *) -1) /* no space at all */
return 0;
up = (struct adm*) cp;
up->size = nu;
up = up + 1;
_dis((nu - 1) * sizeof(struct adm), &up);
return freep;
} /* morecore */
*ptr = p;
}

/*
* Dispose
* Called with two arguments:
* n the size of the block to be freed, in bytes,
* pp address of pointer to data.
*/
void
_new(int n, struct adm **pp)
void _dis(int n, void** ptr)
{
int nunits; /* the unit of storage is sizeof(struct adm) */
struct adm *p,*q;

/* round up size of request */
nunits = (n + sizeof(struct adm) - 1) / sizeof(struct adm) + 1;

q = 0;
for (p = freep; ; p = p->next) {
if (p == 0) {
p = morecore(nunits);
if (p == 0)
_trp(EHEAP);
q = 0;
}
if (p->size >= nunits) {
if (p->size == nunits) { /* exact fit */
if (q == 0) { /* first element on free list. */
freep = p->next;
} else {
q->next = p->next;
}
} else { /* allocate tail end */
q = p;
q->size = q->size - nunits;
p = q + q->size;
p->next = 0;
p->size = nunits;
}
break;
}
q = p;
}
*pp = p + 1;
} /* _new */
free(*ptr);
*ptr = NULL;
}
Loading

0 comments on commit c084f9f

Please sign in to comment.