Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
TableGenの言語サーバーをつくる
Search
Arata
December 02, 2023
0
470
TableGenの言語サーバーをつくる
Arata
December 02, 2023
Tweet
Share
More Decks by Arata
See All by Arata
コードエディターのシンタックスハイライトの話
arata_nvm
0
79
LLVMのコード自動生成機構におけるコード記述を支援するツールの作成
arata_nvm
0
35
pwn入門 / introduction to pwn
arata_nvm
1
1.9k
TableGenと和解せよ / make peace with TableGen
arata_nvm
0
83
sudo-rsのテストの話 / story of sudo-rs testing
arata_nvm
1
120
ソースコードリーディングはいいぞ / source code reading is good
arata_nvm
0
53
ネットワーク委員会活動報告 / network committee activity report
arata_nvm
0
16
Twitter専用のPCを作る / create a dedicated Twitter PC
arata_nvm
0
33
日中の電子決済システムの比較と分析 / comparison and analysis of Japanese and Chinese electronic payment systems
arata_nvm
0
64
Featured
See All Featured
Building Applications with DynamoDB
mza
90
6.1k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
42
9.2k
Designing on Purpose - Digital PM Summit 2013
jponch
115
7k
Why Our Code Smells
bkeepers
PRO
334
57k
[RailsConf 2023] Rails as a piece of cake
palkan
52
4.9k
Designing for Performance
lara
604
68k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
6
410
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
Imperfection Machines: The Place of Print at Facebook
scottboms
265
13k
Automating Front-end Workflow
addyosmani
1366
200k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
Transcript
TableGenの言語サーバーをつくる 2023/12/02 Kernel/VM探検隊@北陸 Part 6 @Arata
2023/12/02 TableGenの言語サーバーを作る @arata-nvm TableGenとは • コンパイラ基盤LLVMの内部で使用されているDSL • レジスタや命令など、ターゲットマシン固有の情報を 記述するために用いられることが多い 2
2023/12/02 TableGenの言語サーバーを作る @arata-nvm https://github.com/llvm/llvm-project/blob/1c822e1e8278ebefdb7701249bdfe51f1ed03d7d/llvm/lib/Target/X86/X86RegisterInfo.td#L163-L184 例: TableGenでX86のレジスタを記述 3
2023/12/02 TableGenの言語サーバーを作る @arata-nvm TableGen嫌われがち問題 4
2023/12/02 TableGenの言語サーバーを作る @arata-nvm • エディタの支援を受けられない • C++と組み合わせてのビルドに手間がかかる • 情報が少ない なぜTableGenは嫌われているのか
5
2023/12/02 TableGenの言語サーバーを作る @arata-nvm • エディタの支援を受けられない • C++と組み合わせてのビルドに手間がかかる • 情報が少ない なぜTableGenは嫌われているのか
6
2023/12/02 TableGenの言語サーバーを作る @arata-nvm 2022年5月から言語サーバーが実装され始める 今日までに実装された機能: • シンタックスハイライト • エラー表示 •
定義へ移動 • 参照へ移動 • ホバー表示 エディタ支援の現状 7
2023/12/02 TableGenの言語サーバーを作る @arata-nvm • 言語サーバーの応答性が悪い • 一部のコードで支援機能を提供できない • 内部実装が言語サーバー向きではない 現状の言語サーバーの問題点
8
TableGenの言語サーバーをつくる 2023/12/02 Kernel/VM探検隊@北陸 Part 6 @Arata [再掲]
2023/12/02 TableGenの言語サーバーを作る @arata-nvm 現在は以下の機能が使用できる • エラーの表示 • シンタックスハイライト • 定義へ移動
• 参照へ移動 • ホバー表示 • 入力補完 • インレイヒント 実装した機能 10
2023/12/02 TableGenの言語サーバーを作る @arata-nvm エラーの表示 11
2023/12/02 TableGenの言語サーバーを作る @arata-nvm シンタックスハイライト 12
2023/12/02 TableGenの言語サーバーを作る @arata-nvm 定義へ移動/参照へ移動 13
2023/12/02 TableGenの言語サーバーを作る @arata-nvm ホバー時のドキュメント表示 14
2023/12/02 TableGenの言語サーバーを作る @arata-nvm 入力補完 15
2023/12/02 TableGenの言語サーバーを作る @arata-nvm インレイヒント 16
2023/12/02 TableGenの言語サーバーを作る @arata-nvm • TableGenのすべての構文を処理できるようにする ◦ たとえば現在はinclude文やforeach文などを無視している • 使い勝手を改善する ◦
補完候補が表示される順番の最適化、型チェックなど • 言語サーバーのWASM化 ◦ 現在はプラットフォームごとのバイナリをバンドルしている 今後の展望 17
2023/12/02 TableGenの言語サーバーを作る @arata-nvm TableGenへの不平不満を募集しています おわりに 18
2023/12/02 TableGenの言語サーバーを作る @arata-nvm TableGenへの不平不満を募集しています おわりに 19 tablegen-lspで VSCode拡張を公開しています