Larceny Note #10: Adding Primitives

Lars T Hansen / 30 November 1998

Contents

1. Adding Primitives
2. Architecture-specific Larceny Notes
3. Invariants of compiled code

1. Adding primitives

It's straightforward to add new primitives to Larceny, if you can stomach a little assembly language programming and don't mind grubbing around to figure out what the invariants of compiled code are. I've tried to document the invariants here for the time being.

A primitive must be created separately for each target architecture for which it is to be available. Usually, different target architectures have different sets of primitives, and usually, there are good reasons for the differences.

Primitives come in several flavors. Most primitives are visible to Scheme code, and the compiler must be made aware of their existence. Some primitives, however, are only available from code written directly in MacScheme assembly language ("MAL"), because they are rather special-purpose and the compiler can't be expected to generate correct code for them. An example of the latter kind is the syscall primitive (which really ought to be an instruction and hence is not a good example).

Primitives are further subdivided into classes depending on how many arguments they take and whether those arguments are always in registers or whether they can be immediate values. In the current version of Twobit, primitives have at most three arguments, which can sometimes be limiting. Various tricks can be used to circumvent the limitation (see the syscall primitive for an example of this), but it would be better to fix the compiler.

Primitives that take two arguments can take an immediate value as a second operand. The definition of the primitive in Twobit's primitive table includes a predicate that screens operands for appropriateness. A primitive that allows an immediate second operand must also exist in a form that does not use an immediate operand.

The steps for adding a primitive are:

Step 1: Add the primitive definition to Twobit's target table

The target tables are kept in files in the Compiler subdirectory and have names like sparc.imp.sch or standard-C.imp.sch. The tables of interest are the association lists $usual-integrable-procedures$ and $immediate-primops$.

(In the best of all worlds these tables would be hidden completely behind the accessor procedures but currently pass4.aux.sch knows about the first table, and presumably relies on it being an association list.)

$Usual-integrable-procedures$ defines the names of the primitives known to the compiler. The exact contents of an entry varies from architecture to architecture, but the first four entries are common:

The remaining entries are documented in the file.

$Immediate-primops$ lists the names of primitives that can take an immediate second argument, and any additional information that the particular target architecture uses.

Step 2: Add a procedure for the primitive to Lib/primops.sch

[Once we get more target architectures, we'll need a different primitive file for each architecture].

For each primitive available to Scheme code, there should be a procedure defined in the primops.sch file that takes the same number of arguments as the primitive and that invokes the primitive on those arguments. This serves the purpose of making the primitive available as a procedure that can be used in a first-class manner.

The definition of the procedure for the primitive must have a particular form, like in this definition of the vector-ref primitive:

      (define vector-ref (lambda (v k) (vector-ref v k)))
The preceding definition appears to be circular, but is not: it defines a global variable vector-ref that contains a procedure that invokes the primitive vector-ref. If, in contrast, an MIT-style definition were used, and the file was compiled with benchmark-mode turned on, then the definition would be truly circular.

The primitives file must be compiled with integrate-usual-procedures turned on.

Step 3: Add the primitive definition to the assembler
The primitive definition goes in Asm/architecture/gen-prim.sch. For example, the implementation of the primitive "--" (negation) on the Sparc looks like the following:
(define-primop '--
  (lambda (as)
    (let ((L1 (new-label)))
      (sparc.tsubrcc as $r.g0 $r.result $r.result)
      (sparc.bvc.a   as L1)
      (sparc.slot    as)
      (sparc.subrcc  as $r.g0 $r.result $r.result)
      (millicode-call/0arg as $m.negate)
      (sparc.label   as L1))))

The primop is added to the assembler's table with define-primop, which takes two arguments: the name, and a lambda expression. The lamdba expression takes an assembly structure and one additional argument for each register or immediate operands to the primitive in the op, op2, op2imm, or op3 instructions; for example, the primitive definition for vector-set! takes two additional arguments.

The lambda expression must generate code for the primitive. I suggest you look through gen-prim.sch for some clues, and also read the Larceny Note that deals with the target architecture in question.

Step 4: Implement non-inline support code

Many primitives have support code that is not generated in-line but is available as fast-callable assembly-language routines. These routines are called millicode procedures, and are called through a jump table that is always pointed to by the globals register.

Some of the reasons why you might want to put support code out-of-line rather than in-line are:

To add a millicode procedure, modify the file Rts/globals.cfg, and add a millicode procedure at the end. Do not add the procedures in the middle unless you're prepared to recompile the world. (I clean up this table now and then.) A millicode procedure is added to the table with the expression

      (define-mproc c-offset-name asm-offset-name scheme-offset-name asm-name)
where c-offset-name is a name that will evaluate to the offset of the table slot in a C program; asm-offset-name is the corresponding name for assembly code; scheme-offset-name is the corresponding name for Scheme code (typically the assembler); and asm-name is the name of the millicode procedure itself. For example,
      (define-mproc "M_ALLOC" "M_ALLOC" "$m.alloc" "mem_alloc")

Then add the millicode procedure to the appropriate source file; the files are in Rts/architecture. For specific information about calling conventions and so on, read the Larceny Note that deals with the target architecture in question.

[Rts/globals.cfg is also architecture dependent. Fooey.]

Step 5: Test your primitive

Write a program. Compile it. Disassemble it. If it looks plausible, run it. Repeat until it doesn't crash.

2. Architecture-specific Larceny Notes

#6: Information about the SPARC

3. Invariants of Compiled Code

This list is probably incomplete, but it's a start.

There are also machine-dependent invariants; see the architecture-specific Larceny Notes.


$Id: note10-primops.html,v 1.3 1998/12/21 14:29:29 lth Exp $
larceny@ccs.neu.edu