add FAQ answers
[libreriscv.git] / isa_conflict_resolution / isamux_isans.mdwn
1 # Note-form on ISAMUX (aka "ISANS")
2
3 A fixed number of additional (hidden) bits, conceptually a "namespace", that go directly and non-optionally
4 into the instruction decode phase, extending (in each implementation) the
5 opcode length to 16+N, 32+N, 48+N, where N is a hard fixed quantity on
6 a per-implementor basis.
7
8 Where the opcode is normally loaded from the location at the PC, the extra
9 bits, set via a CSR, are mandatorially appended to every instruction: hence why they are described as "hidden" opcode bits, and as a "namespace".
10
11 The parallels with c++ "using namespace" are direct and clear.
12
13 # Hypothetical Format
14
15 Note that this is a hypothetical format, yet TBD, where particular attention
16 needs to be paid to the fact that there is an "immediate" version of CSRRW
17 (with 5 bits of immediate) that could save a lot of space in binaries.
18
19 <code>
20 <pre>
21 3 2 1
22 |1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0|
23 |------------------------------ |-------|---------------------|-|
24 |reserved reserved reserved reserved reserved | foreignarch |1|
25 |custom | reserved | official|B| rvcpage |0|
26 </pre>
27 <code>
28
29 RV Mode
30
31 * when bit 0 is 0, "RV" mode is selected.
32 * in RV mode, bits 1 thru 5 provide up to 16 possible alternative meanings (namespaces) for 16 Bit opcodes. "pages" if you will. The top bit indicates custom meanings. When set to 0, the top bit is for official usage.
33 * Bits 15 thru 23 are reserved.
34 * Bits 24 thru 31 are for custom usage.
35 * bit 6 ("B") is LE/BE
36
37 16 bit page examples:
38
39 * 0b0000 STANDARD (2019) RVC
40 * 0b0001 RVCv2
41 * 0b0010 RV16
42 * 0b0011 RVCv3
43 * ...
44 * 0b1000 custom 16 bit opcode meanings 1
45 * 0b1001 custom 16 bit opcode meanings 2
46 * .....
47
48 Foreign Arch Mode
49
50 * when bit 0 is 1, "Foreign arch" mode is selected.
51 * Bits 1 thru 7 are a table of foreign arches.
52 * when the MSB is 1, this is for custom use.
53 * when the MSB is 0, bits 1 thru 6 are reserved for 64 possible official foreign archs.
54
55 Foreign archs could be (examples):
56
57 * 0b0000000 x86_32
58 * 0b0000001 x86_64
59 * 0b0000010 MIPS32
60 * 0b0000011 MIPS64
61 * ....
62 * 0b0010000 Java Bytecode
63 * 0b0010001 N.E.Other Bytecode
64 * ....
65 * 0b1000000 custom foreign arch 1
66 * 0b1000001 custom foreign arch 2
67 * ....
68
69 Note that "official" foreign archs have a binary value where the MSB is zero,
70 and custom foreign archs have a binary value where the MSB is 1.
71
72 # Namespaces are permitted to swap to new state <a name="stateswap"></a>
73
74 In each privilege level, on a change of ISANS (whether through manual setting of ISANS or through trap entry or exit changing the ISANS CSR), an implementation is permitted to completely and arbitrarily switch not only the instruction set, it is permitted to switch to a new bank of CSRs (or a subset of the same), and even to switch to a new PC.
75
76 This to occur immediately and atomically at the point at which the change in ISANS occurs.
77
78 The most obvious application of this is for Foreign Archs, which may have their own completely separate PC. Thus, foreign assembly code and RISCV assembly code need not be mixed in the same binary.
79
80 Further use-cases may be envisaged however great care needs to be taken to not cause massive complications for JIT emulation, as the RV ISANS is unary encoded (2^31 permutations).
81
82 In addition, the state information of *all* namespaces has to be saved and restored on a context-switch (unless the SP is also switched as part of the state!) which is quite severely burdensome and getting exceptionally complex.
83
84 Switching CSR, PC (and potentially SP) and other state on a NS change in the RISCV unary NS therefore needs to be done wisely and responsibly, i.e. minimised!
85
86 To be discussed. Context <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/x-uFZDXiOxY/27QDW5KvBQAJ>
87
88 # Privileged Modes / Traps <a name="privtraps"></a>
89
90 An additional WLRL CSR per priv-level named "LAST-ISANS" is required, and
91 another called "TRAP-ISANS"
92 These mirrors the ISANS CSR, and, on a trap, the current ISANS in
93 that privilege level is atomically
94 transferred into LAST-ISANS by the hardware, and ISANS in that trap
95 is set to TRAP-ISANS. Hardware is *only then* permitted to modify the PC to
96 begin execution of the trap.
97
98 On exit from the trap, LAST-ISANS is copied into the ISANS CSR, and
99 LAST-ISANS is set to TRAP-ISANS. *Only then* is the hardware permitted
100 to modify the PC to begin execution where the trap left off.
101
102 This is identical to how xepc is handled.
103
104 Note 1: in the case of Supervisor Mode (context switches in particular),
105 saving and changing of LAST-ISANS (to and from the stack) must be done
106 atomically and under the protection of the SIE bit. Failure to do so
107 could result in corruption of LAST-ISANS when multiple traps occur in
108 the same privilege level.
109
110 Note 2: question - should the trap due to illegal (unsupported) values
111 written into LAST-ISANS occur when the *software* writes to LAST-ISANS,
112 or when the *trap* (on exit) writes into LAST-ISANS? this latter seems
113 fraught: a trap, on exit, causing another trap??
114
115 Per-privilege-level pseudocode (there exists UISANS, UTRAPISANS, ULASTISANS,
116 MISANS, MTRAPISANS, MLASTISANS and so on):
117
118 <code>
119 <pre>
120 trap_entry()
121 {
122     LAST-ISANS = ISANS // record the old NS
123     ISANS = TRAP_ISANS // traps are executed in "trap" NS
124 }
125
126 and trap_exit:
127
128 trap_exit():
129 {
130     ISANS = LAST-ISANS
131     LAST-ISANS = TRAP_ISANS
132 }
133 </pre>
134 </code>
135
136 # Why not have TRAP-ISANS as a vector table, matching mtvec? <a name="trap-isans-vec"></a>
137
138 Use case to be determined. Rather than be a global per-priv-level value,
139 TRAP-ISANS is a table of length exactly equal to the mtvec/utvec/stvec table,
140 with corresponding entries that specify the assembly-code namespace in which
141 the trap handler routine is written.
142
143 Open question: see <https://groups.google.com/a/groups.riscv.org/d/msg/isa-dev/IAhyOqEZoWA/BM0G3J2zBgAJ>
144
145 <code>
146 <pre>
147 trap_entry(x_cause)
148 {
149     LAST-ISANS = ISANS // record the old NS
150     ISANS = TRAP_ISANS_VEC[xcause] // traps are executed in "trap" NS
151 }
152
153 and trap_exit:
154
155 trap_exit(x_cause):
156 {
157     ISANS = LAST-ISANS
158     LAST-ISANS = TRAP_ISANS_VEC[x_cause]
159 }
160 </pre>
161 </code>
162
163 # Is this like MISA? <a name="misa"></a>
164
165 No.
166
167 * MISA's space is entirely taken up (and running out).
168 * There is no allocation (provision) for custom extensions.
169 * MISA switches on and off entire extensions: ISAMUX/NS may be used to switch multiple opcodes (present and future), to alternate meanings.
170 * MISA is WARL and is inaccessible from everything but M-Mode (not even readable).
171
172 MISA is therefore wholly unsuited to U-Mode usage; ISANS is specifically permitted to be called by userspace to switch (with no stalling) between namespaces, repeatedly and in quick succession.
173
174 # What happens if this scheme is not adopted? Why is it better than leaving things well alone? <a name="lassezfaire"></a>
175
176 At the first sign of an emergency non-backwards compatible and unavoidable
177 change to the *frozen* RISCV *official* Standards, the entire RISCV
178 community is fragmented and divided into two:
179
180 * Those vendors that are hardware compatible with the legacy standard.
181 * Those that are compatible with the new standard.
182
183 *These two communities would be mutually exclusively incompatible*. If
184 a second emergency occurs, RISCV becomes even less tenable.
185
186 Hardware that wished to be "compatible" with either flavour would require
187 JIT or offline static binary recompilation. No vendor would willingly
188 accept this as a condition of the standards divergence in the first place,
189 locking up decision making to the detriment of RISCV as a whole.
190
191 By providing a "safety valve" in the form of a hidden namespace, at least
192 newer hardware has the option to implement both (or more) variations,
193 *and still apply for Certification*.
194
195 However to also allow "legacy" hardware to at least be JIT soft
196 compatible, some very strict rules *must* be adhered to, that appear at
197 first sight not to make any sense.
198
199 It's complicated in other words!
200
201 # Surely it's okay to just tell people to use 48-bit encodings? <a name="use48bit"></a>
202
203 Short answer: it doesn't help resolve conflicts, and costs hardware and
204 redesigns to do so. Softcores in cost-sensitive embedded applications may
205 even not actually be able to fit the required 48 bit instruction decode engine
206 into a (small, ICE40) FPGA. 48-bit instruction decoding is much more complex
207 than straight 32-bit decoding, requiring a queue.
208
209 Second answer: conflicts can still occur in the (unregulated, custom) 48-bit
210 space, which *could* be resolved by ISAMUX/ISANS as applied to the *48* bit
211 space in exactly the same way. And the 64-bit space.
212
213 # Why not leave this to individual custom vendors to solve on a case by case basis? <a name="case-by-case"></a>
214
215 The suggestion was raised that a custom extension vendor could create
216 their own CSR that selects between conflicting namespaces that resolve
217 the meaning of the exact same opcode. This to be done by all and any
218 vendors, as they see fit, with little to no collaboration or coordination
219 towards standardisation in any form.
220
221 The problems with this approach are numerous, when presented to a
222 worldwide context that the UNIX Platform, in particular, has to face
223 (where the embedded platform does not)
224
225 First: lack of coordination, in the proliferation of arbitrary solutions,
226 has to primarily be borne by gcc, binutils, LLVM and other compilers.
227
228 Secondly: CSR space is precious. With each vendor likely needing only one
229 or two bits to express the namespace collision avoidance, if they make
230 even a token effort to use worldwide unique CSRs (an effort that would
231 benefit compiler writers), the CSR register space is quickly exhausted.
232
233 Thirdly: JIT Emulation of such an unregulated space becomes just as
234 much hell as it is for compiler writers. In addition, if two vendors
235 use conflicting CSR addresses, the only sane way to tell the emulator
236 what to do is to give the emulator a runtime commandline argument.
237
238 Fourthly: with each vendor coming up with their own way of handling
239 conflicts, not only are the chances of mistakes higher, it is against the
240 very principles of collaboration and cooperation that save vendors money
241 on development and ongoing maintenance. Each custom vendor will have
242 to maintain their own separate hard fork of the toolchain and software,
243 which is well known to result in security vulnerabilities.
244
245 By coordinating and managing the allocation of namespace bits (unary
246 or binary) the above issues are solved. CSR space is no longer wasted,
247 compiler and JIT software writers have an easier time, clashes are
248 avoided, and RISCV is stabilised and has a trustable long term future.
249
250 # Why ISAMUX / ISANS has to be WLRL and mandatory trap on illegal writes <a name="wlrlmandatorytrap"></a>
251
252 The namespaces, set by bits in the CSR, are functionally directly
253 equivalent to c++ namespaces, even down to the use of braces.
254
255 WARL, by allowing implementors to choose the value, prevents and prohibits
256 the critical and necessary raising of an exception that would begin the
257 JIT process in the case of ongoing standards evolution.
258
259 Without this opportunity, an implementation has no reliable guaranteed way of knowing
260 when to drop into full JIT mode,
261 which is the only guaranteed way to distinguish
262 any given conflicting opcode. It is as if the c++
263 standard was given a similar optional
264 opportunity to completely ignore the
265 "using namespace" prefix!
266
267 --
268
269 Ok so I trust it's now clear why WLRL (thanks Allen) is needed.
270
271 When Dan raised the WARL concern initially a situation was masked by
272 the conflict, that if gone unnoticed would jeapordise ISAMUX/ISANS
273 entirely. Actually, two separate errors. So thank you for raising the
274 question.
275
276 The situation arises when foreign archs are to be given their own NS
277 bit. MIPS is allocated bit 8, x86 bit 9, whilst LE/BE is given bit 0,
278 RVCv2 bit 1 andso on. All of this potential rather than actual, clearly.
279
280 Imagine then that software tries to write and set not just bit 8 and
281 bit 9, it also tries to set bit 0 and 1 as well.
282
283 This *IS* on the face of it a legitimate reason to make ISAMUX/ISANS WARL.
284
285 However it masks a fundamental flaw that has to be addressed, which
286 brings us back much closer to the original design of 18 months ago,
287 and it's highlighted thus:
288
289 x86 and simultaneous RVCv2 modes are total nonsense in the first place!
290
291 The solution instead is to have a NS bit (bit0) that SPECIFICALLY
292 determines if the arch is RV or not. If 0, the rest of the ISAMUX/ISANS
293 is very specifically RV *only*, and if 1, the ISAMUX/ISANS is a *binary*
294 table of foreign architectures and foreign architectures only.
295
296 Exactly how many bits are used for the foreign arch table, is to
297 be determined. 7 bits, one of which is reserved for custom usage,
298 leaving a whopping 64 possible "official" foreign instruction sets to
299 be hardware-supported/JIT-emulated seems to be sufficiently gratuitous,
300 to me.
301
302 One of those could even be Java Bytecode!
303
304 Now, it could *hypothetically* be argued that the permutation of setting
305 LE/BE and MIPS for example is desirable. A simple analysis shows this
306 not to be the case: once in the MIPS foreign NS, it is the MIPS hardware
307 implementation that should have its own way of setting and managing its
308 LE/BE mode, because to do otherwise drastically interferes with MIPS
309 binary compatibility.
310
311 Thus, it is officially Not Our Problem: only flipping into one foreign
312 arch at a time makes sense, thus this has to be reflected in the
313 ISAMUX/ISANS CSR itself, completely side-stepping the (apparent) need
314 to make the NS CSR WARL (which would not work anyway, as previously
315 mentioned).
316
317 So, thank you, again, Dan, for raising this. It would have completely
318 jeapordised ISAMUX/NS if not spotted.
319
320 The second issue is: how does any hardware system, whether it support
321 ISANS or not, and whether any future hardware supports some Namespaces
322 and, in a transitive fashion, has to support *more* future namespaces,
323 through JIT emulation, if this is not planned properly in advance?
324
325 Let us take the simple case first: a current 2019 RISCV fully compliant
326 RV64GC UNIX capable system (with mandatory traps on all unsupported CSRs).
327
328 Fast forward 20 years, there are now 5 ISAMUX/NS unary bits, and 3
329 foreign arch binary table entries.
330
331 Such a system is perfectly possible of software JIT emulating ALL of these
332 options because the write to the (illegal, for that system) ISAMUX/NS
333 CSR generates the trap that is needed for that system ti begin JIT mode.
334
335 (This again emphasises exactly why the trap is mandatory).
336
337 Now let us take the case of a hypothetical system from say 2021 that
338 implements RVCv2 at the hardware level.
339
340 Fast forward 20 years: if the CSR were made WARL, that system would be
341 absolutely screwed. The implementor would be under the false impression
342 that ignoring setting of "illegal" bits was acceptable, making the
343 transition to JIT mode flat-out impossible to detect.
344
345 When this is considered transitively, considering all future additions to
346 the NS, and all permutations, it can be logically deduced that there is
347 a need to reserve a *full* set of bits in the ISAMUX/NS CSR *in advance*.
348
349 i.e. that *right now*, in the year 2019, the entire ISAMUX/NS CSR cannot
350 be added to piecemeal, the full 32 (or 64) bits *has* to be reserved,
351 and reserved bits set at zero.
352
353 Furthermore, if any software attempts to write to those reserved bits,
354 it *must* be treated just as if those bits were distinct and nonexistent
355 CSRs, and a trap raised.
356
357 It makes more sense to consider each NS as having its own completely
358 separate CSR, which, if it does not exist, clearly it should be obvious
359 that, as an unsupported CSR, a trap should be raised (and JIT emulation
360 activated).
361
362 However given that only the one bit is needed (in RV NS Mode, not
363 Foreign NS Mode), it would be terribly wasteful of the CSRs to do this,
364 despite it being technically correct and much easier to understand why
365 trap raising is so essential (mandatory).
366
367 This again should emphasise how to mentally get one's head round this
368 mind-bendingly complex problem space: think of each NS bit as its own
369 totally separate CSR that every implementor is free and clear to implement
370 (or leave to JIT Emulation) as they see fit.
371
372 Only then does the mandatory need to trap on write really start to hit
373 home, as does the need to preallocate a full set of reserved zero values
374 in the RV ISAMUX/NS.
375
376 Lastly, I *think* it's ok to only reserve say 32 bits, and, in 50 years
377 time if that genuinely is not enough, start the process all over again
378 with a new CSR. ISAMUX2/NS2.
379
380 Subdivision of the RV NS (support for RVCv3/4/5/RV16 without wasting
381 precious CSR bits) best left for discussion another time, the above is
382 a heck of a lot to absorb, already.
383
384 # Alternative RVC 16 Bit Opcode meanings
385
386 Ok, here is appropriate to raise an idea how to cover RVC and future
387 variants, including RV16.
388
389 Just as with foreign archs, and you quite rightly highlight above, it
390 makes absolutely no sense to try to select both RVCv1, v2, v3 and so on,
391 all simultaneously. An unary bit vector for RVC modes, changing the 16
392 BIT opcode space meaning, is wasteful and again has us believe that WARL
393 is the "solution".
394
395 The correct thing to do is, again, just like with foreign archs, to
396 treat RVCs as a *binary* namespace selector. Bits 1 thru 3 would give
397 8 possible completely new alternative meanings, just like how the Z80
398 and the 286 and 386 used to do bank switching.
399
400 All zeros is clearly reserved for the present RVC. 0b001 for RVCv2. 0b010
401 for RV16 (look it up) and there should definitely be room reserved here
402 for custom reencodings of the 16 bit opcode space.
403
404 # Why WARL will not work and why WLRL is required
405
406 WARL requires a follow-up read of the CSR to ascertain what heuristic
407 the hardware *might* have applied, and if that procedure is followed in
408 this proposal, performance even on hardware would be severely compromised.
409
410 In addition when switching to foreign architectures, the switch has to
411 be done atomically and guaranteed to occur.
412
413 In the case of JIT emulation, the WARL "detection" code will be in an
414 assembly language that is alien to hardware.
415
416 Support for both assembly languages immediately after the CSR write
417 is clearly impossible, this leaves no other option but to have the CSR
418 be WLRL (on all platforms) and for traps to be mandatory (on the UNIX
419 Platform).
420
421 # Is it strictly necessary for foreign archs to switch back? <a name="foreignswitch"></a>
422
423 No, because LAST-ISANS handles the setting and unsetting of the ISANS CSR
424 in a completely transparent fashion as far as the foreign arch is concerned.
425
426 Thus, in e.g. Hypervisor Mode, the foreign guest arch has no knowledge
427 or need to know that the hypervisor is flipping back to RV at the time of
428 a trap.
429
430 Note however that this is **not** the same as the foreign arch executing
431 *foreign* traps! Foreign architecture trap and interrupt handling mechanisms
432 are **out of scope** of this document and MUST be handled by the foreign
433 architecture implementation in a completely transparent fashion that in
434 no way interacts or interferes with this proposal.
435
436 # Can we have dynamic declaration and runtime declaration of capabilities? <a name="dynamic"></a>
437
438 Answer: don't know (yet). Quoted from Rogier:
439
440 > "A SOC may have several devices that one may want to directly control
441 > with custom instructions. If independent vendors use the same opcodes you
442 > either have to change the encodings for every different chip (not very
443 > nice for software) or you can give the device an ID which is defined in
444 > some device tree or something like that and use that."
445
446 dynamic detection wasn't originally planned: static
447 compilation was envisaged to solve the need, with a table of
448 mvendorid-marchid-isamux/isans being maintained inside gcc / binutils /
449 llvm (or separate library?) that, like the linux kernel ARCH table,
450 requires a world-wide atomic "git commit" to add globally-unique
451 registered entries that map functionality to actual namespaces.
452
453 where that goes wrong is if there is ever a pair (or more) of vendors
454 that use the exact same custom feature that maps to different opcodes,
455 a statically-compiled binary has no hope of executing natively on both
456 systems.
457
458 at that point: yes, something akin to device-tree would be needed.
459
460 # Open Questions <a name="open-questions"></a>
461
462 This section from a post by Rogier Bruisse
463 <http://hands.com/~lkcl/gmail_re_isadev_isamux.html>
464
465 ## is the ISANS CSR a 32 or XLEN bit value? <a name="isans-32-or-xlen"></a>
466
467 This is partly answered in another FAQ above: if 32 bits is not enough
468 for a full suite of official, custom-with-atomic-registration and custom-without
469 then a second CSR group (ISANS2) may be added.
470
471 32 bits only would not inconvenience RV32.
472
473 ## is the ISANS a flat number space or should some bits be reserved for use as flags?
474
475 See 16-bit RV namespace "page" concept, above. Some bits have to be unary
476 (multiple simultaneous features such as LE/BE in one bit, and augmented
477 Floating-point rounding / clipping in another), whilst others definitely
478 need to be binary (the most obvious one being "paging" in the space currently
479 occupied by RVC).
480
481 ## should the ISANS space be partitioned between reserved, custom with registration guaranteed non clashing, custom, very likely non clashing?
482
483 Yes.
484
485 ## should only compiler visible/generated constant setting with CSRRWI and/or using a clearly recognisable LI/LUI be accommodated or should dynamic setting be accommodated as well?
486
487 This is almost certainly a software design issue, not so much a hardware
488 issue.
489
490 ## How should the ISANS be (re)stored in a trap and in context switch?
491
492 See section above on privilege mode: LAST-ISANS has been introduced that
493 mirrors (x)CAUSE and (x)EPC pretty much exactly. Context switches change
494 uepc just before exit from the trap, in order to change the user-mode PC
495 to switch to a new process, and ulast-isans can - must - be treated in
496 exactly the same way. When the context switch sets ulast-isans (and uepc),
497 the hardware flips both ulast-isans into uisans and uepc into pc (atomically):
498 both the new NS and the new PC activate immediately, on return to usermode.
499
500 Quite simple.
501
502 ## Should the mechanism accommodate "foreign ISA's" and if so how does one restore the ISA.
503
504 See section above on LAST-ISANS. With the introduction of LAST-ISANS, the
505 change is entirely transparent, and handled by the Supervisor (or Hypervisor)
506 trap, in a fashion that the foreign ISA need not even know of the existence
507 of ISANS. At all.
508
509 ## Where is the default ISA stored and what is responsible for what it is after
510
511 Options:
512 * start up
513 * starting a program
514 * calling into a dynamically linked library
515 * taking a trap
516 * changing privilege levels
517
518 These are entirely at the discretion of the software. There is precedent
519 for most of these having been implemented, historically, at some point,
520 in relation to LE/BE mode CSRs in other hardware (MIPSEL vs MIPS distros
521 for example).
522
523 Traps are responsible for saving LAST-ISANS on the stack, exactly as they
524 are also responsible for saving other context-sensitive information such
525 as the registers and xEPC.
526
527 The hardware is responsible for atomically switching out ISANS into the
528 relevant xLAST-ISANS (and back again on exit). See Privileged Traps,
529 above.
530
531 ## If the ISANS is just bits of an instruction that are to be prefixed by the cpu, can those bits contain immediates? Register numbers?
532
533 This is effectively asking "can CSRs in general be kept in registers or
534 immediates". It makes no sense and would require a massive redesign of RISC-V.
535
536 ## How does the system indicate a namespace is not recognised? Does it trap or can/must a recoverable mechanism be provided?
537
538 It doesn't "indicate" that a namespace is not recognised. WLRL fields only
539 hold supported values. If the hardware cannot hold the value, a trap
540 **MUST** be thrown (in the UNIX platform), and at that point it becomes the
541 responsibility of software to deal with it.
542
543 ## What are the security implications? Can some ISA namespaces be set by user space?
544
545 Of course they can. It becomes the responsibility of the Supervisor Mode
546 (the kernel) to treat ISANS in a fashion orthogonal to the PC. If the OS
547 is not capable of properly context-switching securely by setting the right
548 PC, it's not going to be capable of properly looking after changes to ISANS.
549
550 ## Does the validity of an ISA namespace depend on privilege level? If so how?
551
552 The question does not exactly make sense, and may need a re-reading of the
553 section on how Privilege Modes, above. In RISC-V, privilege modes do not
554 actually change very much state of the system: the absolute minimum changes
555 are made (swapped out) - xEPC, xSTATUS and so on - and the privilege mode
556 is expected to handle the context switching (or other actions) itself.
557
558 ISANS - through LAST-ISANS - is absolutely no different. The trap and the
559 kernel (Supervisor or Hypervisor) are provided the *mechanism* by which
560 ISA Namespace *may* be set: it is up to the software to use that mechanism
561 correctly, just as the software is expected to use the mechanisms provided
562 to correctly implement context-switching by saving and restoring register
563 files, the PC, and other state. The NS effectively becomes just another
564 part of that state.
565
566