We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現状、右辺値a[n]を評価するとき POPL {A} LOADL {n} ADD LOADP の4命令かかっている。遅い。 これを最適化したい
The text was updated successfully, but these errors were encountered:
配列の初期化や、構造体のフィールドへのアクセスなど、コンパイル時にどこにアクセスするか決まっている場合においては、 LOADP/STOREP命令の現状使っていないargを用いて、「スタックからpopし、それとargを足したアドレスを参照する」命令とすればこの点に関しては高速化が可能である
Sorry, something went wrong.
No branches or pull requests
現状、右辺値a[n]を評価するとき
POPL {A}
LOADL {n}
ADD
LOADP
の4命令かかっている。遅い。
これを最適化したい
The text was updated successfully, but these errors were encountered: