Re: Intel propose simplified X86-S
Posted: Fri Mar 22, 2024 4:51 pm
Rust isn't interpreted or JIT.rdos wrote:The alternatives are interpreted or JIT languages,
The Place to Start for Operating System Developers
http://f.osdev.org/
Rust isn't interpreted or JIT.rdos wrote:The alternatives are interpreted or JIT languages,
These were traditionally considered to be slow. Has that changed, or are we just putting up with the performance loss? I never thought it was a big loss, and I guess I'm not alone as there have always been languages with runtime bounds checks.Octocontrabass wrote:runtime bounds checks
"Slow" is relative. But yes, this idea that it is slow is why in C++ std::vector doesn't do bounds checking in operator[], and why the recalcitrant old farts in the standards committee nixed bounds checking from Microsoft's std::span proposal, so that the standard version again doesn't have it.eekee wrote:These were traditionally considered to be slow.
Bounds checking is not enough to ensure memory is not overwritten. The most common problems causing this is pointers that are misused (casted to an incorrect type), pointers that are freed but still used, and using completely incorrect pointers loaded from memory trash. Paging is only moderately efficient at solving the last case. Segmentation is moderately efficient at solving the first case, and very efficient for the other two. It also solves bounds checking without any additional requirements.Octocontrabass wrote:I don't know if software bounds checking was especially slow in the first place, but it's gotten faster as compilers have gotten better.
Pointer casts are bypassing the language's type checking, they're always going to be dangerous no matter which language you're using. Even C has pointer type checks! The solution is to make pointer casts unnecessary by designing better APIs.rdos wrote:The most common problems causing this is pointers that are misused (casted to an incorrect type),
Rust prevents this.rdos wrote:pointers that are freed but still used,
Any language that forces memory initialization before use prevents this.rdos wrote:and using completely incorrect pointers loaded from memory trash.
It requires you to fit all your bounds-checked pointers into your GDT and/or LDT.rdos wrote:Segmentation [...] solves bounds checking without any additional requirements.
Thanks for the reminder; that isn't much overhead at all. Still, I can see a reason for not doing it in a tight loop on a big array. `foreach itm in items` seems like a good construct for that case, but there are some things which are easier to code with an indexed loop. Oh, I suppose this is what those `map` and `zip` functions were for in that Lisp tutorial I took years ago. Map applied a function to each element of a list. Zip applied a function to elements from multiple lists. (I might have got the names wrong.)nullplan wrote:"Slow" is relative. But yes, this idea that it is slow is why in C++ std::vector doesn't do bounds checking in operator[], and why the recalcitrant old farts in the standards committee nixed bounds checking from Microsoft's std::span proposal, so that the standard version again doesn't have it.eekee wrote:These were traditionally considered to be slow.
In reality, a bounds check is going to be at most a subtract, compare, and conditional branch. That is slower than branchless code, but faster than, say, a cache miss. And way faster than a system call. I can see applications where it matters, but for the vast majority of them it doesn't.
I thought for a while that CAL-4700 (to give the specific version of the plain English compiler I'm using and its language) was quite type safe, but there was a time I had to code a cast from buffer to string type. The types are the same; "a buffer is a string" is right there in the code, but the compiler refuses to pass buffers to string routines. I had to code up a cast myself, which on the one hand worries me more than using a built-in cast, but on the other hand isn't something I'm going to do lightly. Here's the code, and yes I know it's bad to use a literal non-ASCII character like that; I was going to change it after I sorted the other issues. Comments are italicized. "A string" is actually 2 pointers; the string is stored elsewhere in malloc'd memory.Octocontrabass wrote:Pointer casts are bypassing the language's type checking, they're always going to be dangerous no matter which language you're using. Even C has pointer type checks! The solution is to make pointer casts unnecessary by designing better APIs.rdos wrote:The most common problems causing this is pointers that are misused (casted to an incorrect type),
Good practice using CAL-4700 prevents these, but if I have to break good practice as in the code I pasted... I worry!Octocontrabass wrote:Rust prevents this.rdos wrote:pointers that are freed but still used,
Any language that forces memory initialization before use prevents this.rdos wrote:and using completely incorrect pointers loaded from memory trash.
Both buffers and substrings are strings, try this:eekee wrote:Code: Select all
To decide if a buffer is png-format: [i]\If the buffer starts with "‰PNG", say yes. \ compiler doesn't know a buffer is a string, even though it's been told. \Slap a substring on the buffer. If the substring starts with "‰PNG", say yes. \ compiler doesn't know a *substring* is a string, even though it's been told.[/i] Put the buffer's first into a string's first. Put the buffer's length into the string's last. If the string starts with "‰PNG", say yes. Say no.
Code: Select all
To run:
Start up.
Append "‰PNG" to a buffer.
If the buffer is png-format, debug "a buffer is a string".
Shut down.
To decide if a buffer is png-format:
If the buffer starts with "‰PNG", say yes.
\ Slap a substring on the buffer.
\ If the substring starts with "‰PNG", say yes.
Say no.
This won't work.Code: Select all
Put the buffer's first into a string's first. Put the buffer's length into the string's last.
*tries it* How does that work? lol! I was sure I tried a string operation on a buffer just as the manual describes and it didn't work. I must have misunderstood something at the time of that test. But I'm sure I tried the exact decider you wrote (without the comments) and it didn't work. Today, in your test case, it works. Probing... It does work in the real code. Well, that's humbling. I thought I had tried it. I must have misread an error message.mikegonta wrote:Both buffers and substrings are strings, try this:Code: Select all
To run: Start up. Append "‰PNG" to a buffer. If the buffer is png-format, debug "a buffer is a string". Shut down. To decide if a buffer is png-format: If the buffer starts with "‰PNG", say yes. \ Slap a substring on the buffer. \ If the substring starts with "‰PNG", say yes. Say no.
This won't work.Code: Select all
Put the buffer's first into a string's first. Put the buffer's length into the string's last.