bytecodealliance / wasmtime

A fast and secure runtime for WebAssembly
https://wasmtime.dev/
Apache License 2.0
15.21k stars 1.28k forks source link

ISLE: prefix mach inst constructors with their ISA #3529

Open fitzgen opened 2 years ago

fitzgen commented 2 years ago

E.g. instead of (add ...) we would have either (x86_add ...) or (x86:add ...) or something like that. Please tell me which color you want the bike shed to be!

alexcrichton commented 2 years ago

One possibility could be clif:iadd and then each backend doesn't get its own namespace since it otherwise it's a little redundant in that none of the backends are getting code generated in to the same file.