~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to kernel/byterun/coq_instruct.h

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***********************************************************************/
 
2
/*                                                                     */
 
3
/*                           Coq Compiler                              */
 
4
/*                                                                     */
 
5
/*        Benjamin Gregoire, projets Logical and Cristal               */
 
6
/*                        INRIA Rocquencourt                           */
 
7
/*                                                                     */
 
8
/*                                                                     */
 
9
/***********************************************************************/
 
10
 
 
11
#ifndef _COQ_INSTRUCT_
 
12
#define _COQ_INSTRUCT_
 
13
 
 
14
enum instructions {
 
15
  ACC0, ACC1, ACC2, ACC3, ACC4, ACC5, ACC6, ACC7, ACC,
 
16
  PUSH, 
 
17
  PUSHACC0, PUSHACC1, PUSHACC2, PUSHACC3, PUSHACC4,
 
18
  PUSHACC5, PUSHACC6, PUSHACC7, PUSHACC, 
 
19
  POP,
 
20
  ENVACC1, ENVACC2, ENVACC3, ENVACC4, ENVACC,
 
21
  PUSHENVACC1, PUSHENVACC2, PUSHENVACC3, PUSHENVACC4, PUSHENVACC,
 
22
  PUSH_RETADDR,
 
23
  APPLY, APPLY1, APPLY2, APPLY3,
 
24
  APPTERM, APPTERM1, APPTERM2, APPTERM3,
 
25
  RETURN, RESTART, GRAB, GRABREC, 
 
26
  CLOSURE, CLOSUREREC, CLOSURECOFIX,
 
27
  OFFSETCLOSUREM2, OFFSETCLOSURE0, OFFSETCLOSURE2, OFFSETCLOSURE,
 
28
  PUSHOFFSETCLOSUREM2, PUSHOFFSETCLOSURE0, PUSHOFFSETCLOSURE2, 
 
29
  PUSHOFFSETCLOSURE,
 
30
  GETGLOBAL, PUSHGETGLOBAL,
 
31
  MAKEBLOCK, MAKEBLOCK1, MAKEBLOCK2, MAKEBLOCK3, MAKEBLOCK4,
 
32
  SWITCH, PUSHFIELDS, 
 
33
  GETFIELD0, GETFIELD1, GETFIELD, 
 
34
  SETFIELD0, SETFIELD1, SETFIELD,
 
35
  CONST0, CONST1, CONST2, CONST3, CONSTINT,
 
36
  PUSHCONST0, PUSHCONST1, PUSHCONST2, PUSHCONST3, PUSHCONSTINT,
 
37
  ACCUMULATE, ACCUMULATECOND, 
 
38
  MAKESWITCHBLOCK, MAKEACCU, MAKEPROD, 
 
39
/* spiwack: */
 
40
  BRANCH,
 
41
  ADDINT31, ADDCINT31, ADDCARRYCINT31,
 
42
  SUBINT31, SUBCINT31, SUBCARRYCINT31,
 
43
  MULCINT31, MULINT31, DIV21INT31, DIVINT31,
 
44
  ADDMULDIVINT31, COMPAREINT31, 
 
45
  HEAD0INT31, TAIL0INT31,
 
46
  ISCONST, ARECONST,
 
47
  COMPINT31, DECOMPINT31,
 
48
/* /spiwack  */
 
49
  STOP
 
50
};
 
51
 
 
52
#endif /* _COQ_INSTRUCT_ */