PageRenderTime 26ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/kernel/mips/syms.h

https://github.com/Prajna/mach
C Header | 617 lines | 284 code | 56 blank | 277 comment | 2 complexity | e402b3beb83f4d8565c7044108f287c1 MD5 | raw file
  1. /*
  2. * Mach Operating System
  3. * Copyright (c) 1992,1991 Carnegie Mellon University
  4. * All Rights Reserved.
  5. *
  6. * Permission to use, copy, modify and distribute this software and its
  7. * documentation is hereby granted, provided that both the copyright
  8. * notice and this permission notice appear in all copies of the
  9. * software, derivative works or modified versions, and any portions
  10. * thereof, and that both notices appear in supporting documentation.
  11. *
  12. * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
  13. * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
  14. * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  15. *
  16. * Carnegie Mellon requests users of this software to return to
  17. *
  18. * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
  19. * School of Computer Science
  20. * Carnegie Mellon University
  21. * Pittsburgh PA 15213-3890
  22. *
  23. * any improvements or extensions that they make and grant Carnegie Mellon
  24. * the rights to redistribute these changes.
  25. */
  26. /*
  27. * HISTORY
  28. * $Log: syms.h,v $
  29. * Revision 2.5 92/02/19 15:09:39 elf
  30. * Fixed copyright.
  31. * Removed RCS Header line.
  32. * [92/02/19 rpd]
  33. *
  34. * Revision 2.4 91/05/14 17:38:48 mrt
  35. * Correcting copyright
  36. *
  37. * Revision 2.3 91/02/05 17:51:49 mrt
  38. * Added author notices
  39. * [91/02/04 11:25:05 mrt]
  40. *
  41. * Changed to use new Mach copyright
  42. * [91/02/02 12:29:50 mrt]
  43. *
  44. * Revision 2.2 90/01/22 23:08:28 af
  45. * Created, collapsing various MIPS header files into this one.
  46. * [90/01/20 16:37:40 af]
  47. *
  48. */
  49. /* --------------------------------------------------- */
  50. /* | Copyright (c) 1986 MIPS Computer Systems, Inc. | */
  51. /* | All Rights Reserved. | */
  52. /* --------------------------------------------------- */
  53. /* (C) Copyright 1984 by Third Eye Software, Inc.
  54. *
  55. * Third Eye Software, Inc. grants reproduction and use rights to
  56. * all parties, PROVIDED that this comment is maintained in the copy.
  57. *
  58. * Third Eye makes no claims about the applicability of this
  59. * symbol table to a particular use.
  60. */
  61. /* glevels for field in FDR */
  62. #define GLEVEL_0 2
  63. #define GLEVEL_1 1
  64. #define GLEVEL_2 0 /* for upward compat reasons. */
  65. #define GLEVEL_3 3
  66. /* magic number fo symheader */
  67. #define magicSym 0x7009
  68. /* Language codes */
  69. #define langC 0
  70. #define langPascal 1
  71. #define langFortran 2
  72. #define langAssembler 3 /* one Assembley inst might map to many mach */
  73. #define langMachine 4
  74. #define langNil 5
  75. #define langAda 6
  76. #define langPl1 7
  77. #define langCobol 8
  78. #define langMax 32
  79. /* The following are value definitions for the fields in the SYMR */
  80. /*
  81. * Storage Classes
  82. */
  83. #define scNil 0
  84. #define scText 1 /* text symbol */
  85. #define scData 2 /* initialized data symbol */
  86. #define scBss 3 /* un-initialized data symbol */
  87. #define scRegister 4 /* value of symbol is register number */
  88. #define scAbs 5 /* value of symbol is absolute */
  89. #define scUndefined 6 /* who knows? */
  90. #define scCdbLocal 7 /* variable's value is IN se->va.?? */
  91. #define scBits 8 /* this is a bit field */
  92. #define scCdbSystem 9 /* variable's value is IN CDB's address space */
  93. #define scDbx 9 /* overlap dbx internal use */
  94. #define scRegImage 10 /* register value saved on stack */
  95. #define scInfo 11 /* symbol contains debugger information */
  96. #define scUserStruct 12 /* address in struct user for current process */
  97. #define scSData 13 /* load time only small data */
  98. #define scSBss 14 /* load time only small common */
  99. #define scRData 15 /* load time only read only data */
  100. #define scVar 16 /* Var parameter (fortran,pascal) */
  101. #define scCommon 17 /* common variable */
  102. #define scSCommon 18 /* small common */
  103. #define scVarRegister 19 /* Var parameter in a register */
  104. #define scVariant 20 /* Variant record */
  105. #define scSUndefined 21 /* small undefined(external) data */
  106. #define scInit 22 /* .init section symbol */
  107. #define scMax 32
  108. /*
  109. * Symbol Types
  110. */
  111. #define stNil 0 /* Nuthin' special */
  112. #define stGlobal 1 /* external symbol */
  113. #define stStatic 2 /* static */
  114. #define stParam 3 /* procedure argument */
  115. #define stLocal 4 /* local variable */
  116. #define stLabel 5 /* label */
  117. #define stProc 6 /* " " Procedure */
  118. #define stBlock 7 /* beginnning of block */
  119. #define stEnd 8 /* end (of anything) */
  120. #define stMember 9 /* member (of anything - struct/union/enum */
  121. #define stTypedef 10 /* type definition */
  122. #define stFile 11 /* file name */
  123. #define stRegReloc 12 /* register relocation */
  124. #define stForward 13 /* forwarding address */
  125. #define stStaticProc 14 /* load time only static procs */
  126. #define stConstant 15 /* const */
  127. /* Psuedo-symbols - internal to debugger */
  128. #define stStr 60 /* string */
  129. #define stNumber 61 /* pure number (ie. 4 NOR 2+2) */
  130. #define stExpr 62 /* 2+2 vs. 4 */
  131. #define stType 63 /* post-coersion SER */
  132. #define stMax 64
  133. /* definitions for fields in TIR */
  134. /* type qualifiers for ti.tq0 -> ti.(itqMax-1) */
  135. #define tqNil 0 /* bt is what you see */
  136. #define tqPtr 1 /* pointer */
  137. #define tqProc 2 /* procedure */
  138. #define tqArray 3 /* duh */
  139. #define tqFar 4 /* longer addressing - 8086/8 land */
  140. #define tqVol 5 /* volatile */
  141. #define tqMax 8
  142. /* basic types as seen in ti.bt */
  143. #define btNil 0 /* undefined */
  144. #define btAdr 1 /* address - integer same size as pointer */
  145. #define btChar 2 /* character */
  146. #define btUChar 3 /* unsigned character */
  147. #define btShort 4 /* short */
  148. #define btUShort 5 /* unsigned short */
  149. #define btInt 6 /* int */
  150. #define btUInt 7 /* unsigned int */
  151. #define btLong 8 /* long */
  152. #define btULong 9 /* unsigned long */
  153. #define btFloat 10 /* float (real) */
  154. #define btDouble 11 /* Double (real) */
  155. #define btStruct 12 /* Structure (Record) */
  156. #define btUnion 13 /* Union (variant) */
  157. #define btEnum 14 /* Enumerated */
  158. #define btTypedef 15 /* defined via a typedef, isymRef points */
  159. #define btRange 16 /* subrange of int */
  160. #define btSet 17 /* pascal sets */
  161. #define btComplex 18 /* fortran complex */
  162. #define btDComplex 19 /* fortran double complex */
  163. #define btIndirect 20 /* forward or unnamed typedef */
  164. #define btFixedDec 21 /* Fixed Decimal */
  165. #define btFloatDec 22 /* Float Decimal */
  166. #define btString 23 /* Varying Length Character String */
  167. #define btBit 24 /* Aligned Bit String */
  168. #define btPicture 25 /* Picture */
  169. #define btMax 64
  170. #if (MFG == MIPS)
  171. /* optimization type codes */
  172. #define otNil 0
  173. #define otReg 1 /* move var to reg */
  174. #define otBlock 2 /* begin basic block */
  175. #define otProc 3 /* procedure */
  176. #define otInline 4 /* inline procedure */
  177. #define otEnd 5 /* whatever you started */
  178. #define otMax 6 /* KEEP UP TO DATE */
  179. #endif (MFG == MIPS)
  180. #ifdef LANGUAGE_C
  181. /*
  182. * This (part of the) file contains the definition of the Third Eye Symbol Table.
  183. *
  184. * Symbols are assumed to be in 'encounter order' - i.e. the order that
  185. * the things they represent were encountered by the compiler/assembler/loader.
  186. * EXCEPT for globals! These are assumed to be bunched together,
  187. * probably right after the last 'normal' symbol. Globals ARE sorted
  188. * in ascending order.
  189. *
  190. * -----------------------------------------------------------------
  191. * A brief word about Third Eye naming/use conventions:
  192. *
  193. * All arrays and index's are 0 based.
  194. * All "ifooMax" values are the highest legal value PLUS ONE. This makes
  195. * them good for allocating arrays, etc. All checks are "ifoo < ifooMax".
  196. *
  197. * "isym" Index into the SYMbol table.
  198. * "ipd" Index into the Procedure Descriptor array.
  199. * "ifd" Index into the File Descriptor array.
  200. * "iss" Index into String Space.
  201. * "cb" Count of Bytes.
  202. * "rgPd" array whose domain is "0..ipdMax-1" and RanGe is PDR.
  203. * "rgFd" array whose domain is "0..ifdMax-1" and RanGe is FDR.
  204. */
  205. /*
  206. * Symbolic Header (HDR) structure.
  207. * As long as all the pointers are set correctly,
  208. * we don't care WHAT order the various sections come out in!
  209. *
  210. * A file produced solely for the use of CDB will probably NOT have
  211. * any instructions or data areas in it, as these are available
  212. * in the original.
  213. */
  214. typedef struct {
  215. short magic; /* to verify validity of the table */
  216. short vstamp; /* version stamp */
  217. long ilineMax; /* number of line number entries */
  218. long cbLine; /* number of bytes for line number entries */
  219. long cbLineOffset; /* offset to start of line number entries*/
  220. long idnMax; /* max index into dense number table */
  221. long cbDnOffset; /* offset to start dense number table */
  222. long ipdMax; /* number of procedures */
  223. long cbPdOffset; /* offset to procedure descriptor table */
  224. long isymMax; /* number of local symbols */
  225. long cbSymOffset; /* offset to start of local symbols*/
  226. long ioptMax; /* max index into optimization symbol entries */
  227. long cbOptOffset; /* offset to optimization symbol entries */
  228. long iauxMax; /* number of auxillary symbol entries */
  229. long cbAuxOffset; /* offset to start of auxillary symbol entries*/
  230. long issMax; /* max index into local strings */
  231. long cbSsOffset; /* offset to start of local strings */
  232. long issExtMax; /* max index into external strings */
  233. long cbSsExtOffset; /* offset to start of external strings */
  234. long ifdMax; /* number of file descriptor entries */
  235. long cbFdOffset; /* offset to file descriptor table */
  236. long crfd; /* number of relative file descriptor entries */
  237. long cbRfdOffset; /* offset to relative file descriptor table */
  238. long iextMax; /* max index into external symbols */
  239. long cbExtOffset; /* offset to start of external symbol entries*/
  240. /* If you add machine dependent fields, add them here */
  241. } HDRR, *pHDRR;
  242. #define cbHDRR sizeof(HDRR)
  243. #define hdrNil ((pHDRR)0)
  244. /*
  245. * The FDR and PDR structures speed mapping of address <-> name.
  246. * They are sorted in ascending memory order and are kept in
  247. * memory by CDB at runtime.
  248. */
  249. /*
  250. * File Descriptor
  251. *
  252. * There is one of these for EVERY FILE, whether compiled with
  253. * full debugging symbols or not. The name of a file should be
  254. * the path name given to the compiler. This allows the user
  255. * to simply specify the names of the directories where the COMPILES
  256. * were done, and we will be able to find their files.
  257. * A field whose comment starts with "R - " indicates that it will be
  258. * setup at runtime.
  259. */
  260. typedef struct fdr {
  261. unsigned long adr; /* memory address of beginning of file */
  262. long rss; /* file name (of source, if known) */
  263. long issBase; /* file's string space */
  264. long cbSs; /* number of bytes in the ss */
  265. long isymBase; /* beginning of symbols */
  266. long csym; /* count file's of symbols */
  267. long ilineBase; /* file's line symbols */
  268. long cline; /* count of file's line symbols */
  269. long ioptBase; /* file's optimization entries */
  270. long copt; /* count of file's optimization entries */
  271. short ipdFirst; /* start of procedures for this file */
  272. short cpd; /* count of procedures for this file */
  273. long iauxBase; /* file's auxiliary entries */
  274. long caux; /* count of file's auxiliary entries */
  275. long rfdBase; /* index into the file indirect table */
  276. long crfd; /* count file indirect entries */
  277. unsigned lang: 5; /* language for this file */
  278. unsigned fMerge : 1; /* whether this file can be merged */
  279. unsigned fReadin : 1; /* true if it was read in (not just created) */
  280. unsigned fBigendian : 1;/* if set, was compiled on big endian machine */
  281. /* aux's will be in compile host's sex */
  282. unsigned glevel : 2; /* level this file was compiled with */
  283. unsigned reserved : 22; /* reserved for future use */
  284. long cbLineOffset; /* byte offset from header for this file ln's */
  285. long cbLine; /* size of lines for this file */
  286. } FDR, *pFDR;
  287. #define cbFDR sizeof(FDR)
  288. #define fdNil ((pFDR)0)
  289. #define ifdNil -1
  290. #define ifdTemp 0
  291. #define ilnNil -1
  292. /*
  293. * Procedure Descriptor
  294. *
  295. * There is one of these for EVERY TEXT LABEL.
  296. * If a procedure is in a file with full symbols, then isym
  297. * will point to the PROC symbols, else it will point to the
  298. * global symbol for the label.
  299. */
  300. typedef struct pdr {
  301. unsigned long adr; /* memory address of start of procedure */
  302. long isym; /* start of local symbol entries */
  303. long iline; /* start of line number entries*/
  304. long regmask; /* save register mask */
  305. long regoffset; /* save register offset */
  306. long iopt; /* start of optimization symbol entries*/
  307. long fregmask; /* save floating point register mask */
  308. long fregoffset; /* save floating point register offset */
  309. long frameoffset; /* frame size */
  310. short framereg; /* frame pointer register */
  311. short pcreg; /* offset or reg of return pc */
  312. long lnLow; /* lowest line in the procedure */
  313. long lnHigh; /* highest line in the procedure */
  314. long cbLineOffset; /* byte offset for this procedure from the fd base */
  315. } PDR, *pPDR;
  316. #define cbPDR sizeof(PDR)
  317. #define pdNil ((pPDR) 0)
  318. #define ipdNil -1
  319. /*
  320. * The structure of the runtime procedure descriptor created by the loader
  321. * for use by the static exception system.
  322. */
  323. typedef struct runtime_pdr {
  324. unsigned long adr; /* memory address of start of procedure */
  325. long regmask; /* save register mask */
  326. long regoffset; /* save register offset */
  327. long fregmask; /* save floating point register mask */
  328. long fregoffset; /* save floating point register offset */
  329. long frameoffset; /* frame size */
  330. short framereg; /* frame pointer register */
  331. short pcreg; /* offset or reg of return pc */
  332. long irpss; /* index into the runtime string table */
  333. long reserved;
  334. struct exception_info *exception_info;/* pointer to exception array */
  335. } RPDR, *pRPDR;
  336. #define cbRPDR sizeof(RPDR)
  337. #define rpdNil ((pRPDR) 0)
  338. /*
  339. * Line Numbers
  340. *
  341. * Line Numbers are segregated from the normal symbols because they
  342. * are [1] smaller , [2] are of no interest to your
  343. * average loader, and [3] are never needed in the middle of normal
  344. * scanning and therefore slow things down.
  345. *
  346. * By definition, the first LINER for any given procedure will have
  347. * the first line of a procedure and represent the first address.
  348. */
  349. typedef long LINER, *pLINER;
  350. #define lineNil ((pLINER)0)
  351. #define cbLINER sizeof(LINER)
  352. #define ilineNil -1
  353. /*
  354. * The Symbol Structure (GFW, to those who Know!)
  355. */
  356. typedef struct {
  357. long iss; /* index into String Space of name */
  358. long value; /* value of symbol */
  359. unsigned st : 6; /* symbol type */
  360. unsigned sc : 5; /* storage class - text, data, etc */
  361. unsigned reserved : 1; /* reserved */
  362. unsigned index : 20; /* index into sym/aux table */
  363. } SYMR, *pSYMR;
  364. #define symNil ((pSYMR)0)
  365. #define cbSYMR sizeof(SYMR)
  366. #define isymNil -1
  367. #define indexNil 0xfffff
  368. #define issNil -1
  369. #define issNull 0
  370. /* The following converts a memory resident string to an iss.
  371. * This hack is recognized in SbFIss, in sym.c of the debugger.
  372. */
  373. #define IssFSb(sb) (0x80000000 | ((unsigned long)(sb)))
  374. /* E X T E R N A L S Y M B O L R E C O R D
  375. *
  376. * Same as the SYMR except it contains file context to determine where
  377. * the index is.
  378. */
  379. typedef struct {
  380. unsigned jmptbl:1; /* symbol is a jump table entry for shlibs */
  381. unsigned cobol_main:1; /* symbol is a cobol main procedure */
  382. unsigned reserved:14; /* reserved for future use */
  383. short ifd; /* where the iss and index fields point into */
  384. SYMR asym; /* symbol for the external */
  385. } EXTR, *pEXTR;
  386. #define extNil ((pEXTR)0)
  387. #define cbEXTR sizeof(EXTR)
  388. /* A U X I L L A R Y T Y P E I N F O R M A T I O N */
  389. /*
  390. * Type Information Record
  391. */
  392. typedef struct {
  393. unsigned fBitfield : 1; /* set if bit width is specified */
  394. unsigned continued : 1; /* indicates additional TQ info in next AUX */
  395. unsigned bt : 6; /* basic type */
  396. unsigned tq4 : 4;
  397. unsigned tq5 : 4;
  398. /* ---- 16 bit boundary ---- */
  399. unsigned tq0 : 4;
  400. unsigned tq1 : 4; /* 6 type qualifiers - tqPtr, etc. */
  401. unsigned tq2 : 4;
  402. unsigned tq3 : 4;
  403. } TIR, *pTIR;
  404. #define cbTIR sizeof(TIR)
  405. #define tiNil ((pTIR)0)
  406. #define itqMax 6
  407. /*
  408. * Relative symbol record
  409. *
  410. * If the rfd field is 4095, the index field indexes into the global symbol
  411. * table.
  412. */
  413. typedef struct {
  414. unsigned rfd : 12; /* index into the file indirect table */
  415. unsigned index : 20; /* index int sym/aux/iss tables */
  416. } RNDXR, *pRNDXR;
  417. #define cbRNDXR sizeof(RNDXR)
  418. #define rndxNil ((pRNDXR)0)
  419. /* dense numbers or sometimes called block numbers are stored in this type,
  420. * a rfd of 0xffffffff is an index into the global table.
  421. */
  422. typedef struct {
  423. unsigned long rfd; /* index into the file table */
  424. unsigned long index; /* index int sym/aux/iss tables */
  425. } DNR, *pDNR;
  426. #define cbDNR sizeof(DNR)
  427. #define dnNil ((pDNR)0)
  428. /*
  429. * Auxillary information occurs only if needed.
  430. * It ALWAYS occurs in this order when present.
  431. isymMac used by stProc only
  432. TIR type info
  433. TIR additional TQ info (if first TIR was not enough)
  434. rndx if (bt == btStruct,btUnion,btEnum,btSet,btRange,
  435. btTypedef):
  436. rsym.index == iaux for btSet or btRange
  437. else rsym.index == isym
  438. dimLow btRange, btSet
  439. dimMac btRange, btSet
  440. rndx0 As many as there are tq arrays
  441. dimLow0
  442. dimHigh0
  443. ...
  444. rndxMax-1
  445. dimLowMax-1
  446. dimHighMax-1
  447. width in bits if (bit field), width in bits.
  448. */
  449. #define cAuxMax (6 + (idimMax*3))
  450. /* a union of all possible info in the AUX universe */
  451. typedef union {
  452. TIR ti; /* type information record */
  453. RNDXR rndx; /* relative index into symbol table */
  454. long dnLow; /* low dimension */
  455. long dnHigh; /* high dimension */
  456. long isym; /* symbol table index (end of proc) */
  457. long iss; /* index into string space (not used) */
  458. long width; /* width for non-default sized struc fields */
  459. long count; /* count of ranges for variant arm */
  460. } AUXU, *pAUXU;
  461. #define cbAUXU sizeof(AUXU)
  462. #define auxNil ((pAUXU)0)
  463. #define iauxNil -1
  464. /*
  465. * Optimization symbols
  466. *
  467. * Optimization symbols contain some overlap information with the normal
  468. * symbol table. In particular, the proc information
  469. * is somewhat redundant but necessary to easily find the other information
  470. * present.
  471. *
  472. * All of the offsets are relative to the beginning of the last otProc
  473. */
  474. typedef struct {
  475. unsigned ot: 8; /* optimization type */
  476. unsigned value: 24; /* address where we are moving it to */
  477. RNDXR rndx; /* points to a symbol or opt entry */
  478. unsigned long offset; /* relative offset this occured */
  479. } OPTR, *pOPTR;
  480. #define optNil ((pOPTR) 0)
  481. #define cbOPTR sizeof(OPTR)
  482. #define ioptNil -1
  483. /*
  484. * File Indirect
  485. *
  486. * When a symbol is referenced across files the following procedure is used:
  487. * 1) use the file index to get the File indirect entry.
  488. * 2) use the file indirect entry to get the File descriptor.
  489. * 3) add the sym index to the base of that file's sym table
  490. *
  491. */
  492. typedef long RFDT, *pRFDT;
  493. #define cbRFDT sizeof(RFDT)
  494. #define rfdNil -1
  495. /*
  496. * The file indirect table in the mips loader is known as an array of FITs.
  497. * This is done to keep the code in the loader readable in the area where
  498. * these tables are merged. Note this is only a name change.
  499. */
  500. typedef long FIT, *pFIT;
  501. #define cbFIT sizeof(FIT)
  502. #define ifiNil -1
  503. #define fiNil ((pFIT) 0)
  504. /* Dense numbers
  505. *
  506. * Rather than use file index, symbol index pairs to represent symbols
  507. * and globals, we use dense number so that they can be easily embeded
  508. * in intermediate code and the programs that process them can
  509. * use direct access tabls instead of hash table (which would be
  510. * necesary otherwise because of the sparse name space caused by
  511. * file index, symbol index pairs. Dense number are represented
  512. * by RNDXRs.
  513. */
  514. /*
  515. * The following table defines the meaning of each SYM field as
  516. * a function of the "st". (scD/B == scData OR scBss)
  517. *
  518. * Note: the value "isymMac" is used by symbols that have the concept
  519. * of enclosing a block of related information. This value is the
  520. * isym of the first symbol AFTER the end associated with the primary
  521. * symbol. For example if a procedure was at isym==90 and had an
  522. * isymMac==155, the associated end would be at isym==154, and the
  523. * symbol at 155 would probably (although not necessarily) be the
  524. * symbol for the next procedure. This allows rapid skipping over
  525. * internal information of various sorts. "stEnd"s ALWAYS have the
  526. * isym of the primary symbol that started the block.
  527. *
  528. ST SC VALUE INDEX
  529. -------- ------ -------- ------
  530. stFile scText address isymMac
  531. stLabel scText address ---
  532. stGlobal scD/B address iaux
  533. stStatic scD/B address iaux
  534. stParam scAbs offset iaux
  535. stLocal scAbs offset iaux
  536. stProc scText address iaux (isymMac is first AUX)
  537. stStaticProc scText address iaux (isymMac is first AUX)
  538. stMember scNil ordinal --- (if member of enum)
  539. stMember scNil byte offset iaux (if member of struct/union)
  540. stMember scBits bit offset iaux (bit field spec)
  541. stBlock scText address isymMac (text block)
  542. stBlock scNil cb isymMac (struct/union member define)
  543. stBlock scNil cMembers isymMac (enum member define)
  544. stEnd scText address isymStart
  545. stEnd scNil ------- isymStart (struct/union/enum)
  546. stTypedef scNil ------- iaux
  547. stRegReloc sc??? value old register number
  548. stForward sc??? new address isym to original symbol
  549. stConstant scInfo value --- (scalar)
  550. stConstant scInfo iss --- (complex, e.g. string)
  551. *
  552. */
  553. #endif LANGUAGE_C