home *** CD-ROM | disk | FTP | other *** search
/ ftp.uni-stuttgart.de/pub/systems/acorn/ / Acorn.tar / Acorn / riscos / problems / modules / modules.text
Text File  |  1992-08-20  |  6KB  |  112 lines

  1. Article 63 of comp.sys.acorn.tech:
  2. Newsgroups: comp.sys.acorn.tech
  3. Path: news.uni-stuttgart.de!news.belwue.de!ira.uka.de!chx400!dxcern!dscomsa.desy.de!vxdesy.desy.de!burke
  4. From: burke@vxdesy.desy.de
  5. Subject: Modules
  6. Message-ID: <1992Aug19.200810.1@vxdesy.desy.de>
  7. Lines: 97
  8. Sender: news@dscomsf.desy.de (USENET News System)
  9. Nntp-Posting-Host: vxdsyc.desy.de
  10. Organization: (DESY, Hamburg, Germany)
  11. Date: Wed, 19 Aug 1992 20:08:10 GMT
  12.  
  13. Someone was asking for "additions" to the PRM; here are a few random comments
  14. and questions, mostly related to modules.
  15.  
  16.   When writing a module which claims vectors, make sure you claim them again on
  17. Service_Reset, otherwise the module will stop working. Worse, if you have
  18. properly error-trapped finalisation code, if you try to RMReInit/RMKill it
  19. you'll get an error from trying to release unclaimed vectors, the module will
  20. get stuck (the workspace pointer says DEADDEAD!), and you can't get rid of it
  21. without a hard reset. This is rather frustrating during debugging; my solution
  22. is to keep changing the module name (you can't reload a module if an old one of
  23. the same name refuses to die). I've sometimes ended up with several versions of
  24. the same module, all DEADDEAD, before I've found the bug!
  25.  
  26.   Incidentally, don't forget that you can see the workspace pointer if you do
  27. *Modules, and then use *Memory to look at it. If you have a scratch area in the
  28. workspace you can write debugging information into it, and usually figure out
  29. what went wrong. A bit crude, but I don't know of any interactive debuggers for
  30. interrupt code!
  31.  
  32.   Module application code (entered from the start entry) runs in user mode,
  33. unlike the rest of the module code which is either in SVC or IRQ mode. This has
  34. a very important consequence, which should be written in six-foot-high letters
  35. of fire: *THERE* *IS* *NO* *STACK* (bangs head against nearest wall :-). If you
  36. want a stack you have to point R13 somewhere useful yourself.
  37.  
  38.   I have the following situation: the module workspace contains pointers to
  39. other blocks allocated by OS_Module Claim. Question: what happens on RMTidy?
  40. Answer: apparently, if you do nothing it's all OK (presumably RMA blocks which
  41. aren't module workspace don't get moved). Is this guaranteed to be safe? What
  42. else could you do, apart from refusing to be tidied?
  43.  
  44.   Another one from experience: if you have wimp code that starts up on
  45. Service_WimpStart, you have to be very careful if you do a Wimp_CloseDown
  46. without calling Wimp_Poll, as you tend to get stuck in an infinite loop (the
  47. Desktop module keeps trying to re-start you). Either make sure you always call
  48. Wimp_Poll at least once, or keep a flag that you've started and shut down
  49. again.
  50.  
  51.   It appears that the "command tail" pointer passed to OS_Module Enter must
  52. be valid, even if your code makes no use of it, as something in the OS seems
  53. to dereference it (not sure why). If you're unlucky this results in an address
  54. exception.
  55.  
  56.   I think that all the "command tail" pointers passed to your code point to the
  57. first non-space character of the tail, or to a control character if there is no
  58. tail. This isn't made entirely clear, however. I'm also not clear what is
  59. passed as the command tail if you RMRun a module; does the same pointer
  60. go to both the initialisation and the start code? The description of the start
  61. entry says that it points to the environment string including the file name.
  62. Is this really true? It presumably can't be if you start with OS_Module Enter,
  63. which is the normal case, and I suspect it isn't for RMRun either.
  64.  
  65.   The PRM seems a bit inconsistent on the subject of interrupts in SWIs. In the
  66. bit near the beginning on SWIs it says that although interrupts (IRQ) are
  67. disabled on entering the SWI handler, the IRQ mode is immediately restored to
  68. what it was when the SWI was called. This appears to be true (the code is right
  69. at the beginning of the SWI handler). However, in the documentation on
  70. providing SWIs in the module section (and nearly all SWIs are provided by
  71. modules, after all) it says that the code is entered with IRQs disabled, but
  72. you should enable them again if your code takes longer than [20 us?]. Is this
  73. true? Why bother to enable IRQs and then disable them again? (and then maybe
  74. enable them again). The "interrupts" bit of all the SWI documentation is a bit
  75. odd; why should it say "interrupt status preserved" (which must always be
  76. true), why does it always say "fast interrupts enabled" (I bet no SWI routines
  77. explicitly enable FIQs), and is there any meaning to the "re-entrancy" state if
  78. IRQs are disabled? For that matter, why bother to say that the processor is in
  79. SVC mode?
  80.  
  81.   While on the subject of SWIs, is anyone keeping a list of SWI chunks used by
  82. PD software like the filetypes list? Are Acorn allocating chunks for PD, or
  83. is it still ISVs only?
  84.  
  85.   Now to the thorny subject of errors. Although there are a few places where
  86. error codes are given (at the end of the wimp section, for example), there are
  87. no coherent lists, and no guidance on choosing error numbers for your own code.
  88. The documentation for SWIs also generally doesn't tell you if they can generate
  89. errors, and if so, under what circumstances. The OS_Module documentation is a
  90. partial exception to this, but it still doesn't tell you what the error numbers
  91. are. Also, are registers preserved after errors? R0 obviously can't be, but are
  92. other registers which are normally preserved still intact after an error?
  93.  
  94.   Another question is the extent to which SWIs should be error-trapped - are
  95. they expected to validate their parameters, or just take them on faith? The
  96. fact the I get address exceptions from OS_Module Enter, described above,
  97. suggests the latter. On the other hand, if you try to OS_Release an unclaimed
  98. vector you do get an error, whereas you might think it would just do nothing
  99. and return silently. Either way, it would be nice if it were *documented*!
  100.  
  101.   That's all I can think of for now. I wonder if the RISC OS3 PRMs are any
  102. better ...
  103.  
  104. e----><----p | Stephen Burke           | Internet: burke@vxdesy.desy.de
  105.  H   H   1   | Gruppe FH1T (Liverpool) | DECnet:   vxdesy::burke (13313::burke)
  106.  H   H  11   | DESY, Notkestrasse 85   | BITNET:   BURKE@DESYVAX or SB2@UKACRL
  107.  HHHHH   1   | 2000 Hamburg 52         | JANET:    sb2@uk.ac.rl.ib
  108.  H   H   1   | Germany                 | Phone:    + 49 40 8998 2282
  109.  H   H 11111 | HERA, the world's largest electron microscope!
  110.  
  111.  
  112.