|
|
|
|
|
by notanotherycom1
2057 days ago
|
|
> I had yet to read a good critique of the ISA by people who know what they're talking about. I still wonder about RISC-V. To me, it seems pointless. But a lot of companies are buying into it so I'm wrong Why would you ever want a standard ISA? If you're buying chips you either want a cheap standard one or a powerful efficient one. To be efficient (or cheap) you'd want to only support what's required and what works best with the implementation. I don't really understand the point of a generic ISA. Why not have some kind of bytecode or standard format (like llvm-ir) that gets optimized for the CPU and gets a native binary that doesn't need interpretation. Like how the f* is it easier to make something regular+generic fast rather than something custom for your hardware/chip/cpu fast? Do you want to know how many times I used XML when it's not required? 0. Do you know how many times I used SQLite or my own binary file? I lost count. SQLite has far more constraints than XML and custom binary files/formats aren't hard after you done than a few times. |
|