Peter_Sewell | 1 year ago | on: How to improve the RISC-V specification
Peter_Sewell's comments
Peter_Sewell | 1 year ago | on: How to improve the RISC-V specification
(result, -) = AddWithCarry(operand1, imm, '0');
if d == 31 then
SP[] = ZeroExtend(result, 64);
else
X[d, datasize] = result;
and here is some analogous Sail (automatically translated from the ASL, in fact): (result, nzcv) = AddWithCarry(operand1, operand2, carry_in);
if d == 31 then {
SP_set() = ZeroExtend(result, 64)
} else {
X_set(d, datasize) = result
}
I'm somewhat at a loss to understand in what way that's less readable?(There surely are things that can be improved, of course - e.g. perhaps the concrete syntax for fancy types - but readability was a primary goal in the Sail design; it's really not a theorem-proving language or something that needs fancy PL knowledge.)
Peter_Sewell | 1 year ago | on: How to improve the RISC-V specification
As Alastair Reid says, one of the main things missing in the current RISC-V specification documents is simply that the associated Sail definitions are not yet interspersed with the prose instruction descriptions. The infrastructure to do that has been available for some time, in the Sail AsciiDoc support by Alasdair Armstrong (https://github.com/Alasdair/asciidoctor-sail/blob/master/doc...) and older LaTeX versions by Prashanth Mundkur and Alasdair (https://github.com/rems-project/riscv-isa-manual/blob/sail/r...).
Peter_Sewell | 1 year ago | on: Formal Mechanised Semantics of CHERI C: Capabilities, Undefined Behaviour
Peter_Sewell | 1 year ago | on: Formal Mechanised Semantics of CHERI C: Capabilities, Undefined Behaviour
Peter_Sewell | 1 year ago | on: Formal Mechanised Semantics of CHERI C: Capabilities, Undefined Behaviour
struct buffer {
char *data;
size_t capacity;
size_t length;
}
the pointer 'data' will in CHERI have to be a valid capability, not just a virtual address, to permit access. It should normally have been instantiated with the correct bounds from the appropriate allocation, separately from the 'length' field, so the hardware will do the right check.Peter_Sewell | 5 years ago | on: The Sail ISA specification language