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
490
TableGenの言語サーバーをつくる
Arata
December 02, 2023
Tweet
Share
More Decks by Arata
See All by Arata
コードエディターのシンタックスハイライトの話
arata_nvm
0
94
LLVMのコード自動生成機構におけるコード記述を支援するツールの作成
arata_nvm
0
39
pwn入門 / introduction to pwn
arata_nvm
1
2k
TableGenと和解せよ / make peace with TableGen
arata_nvm
0
88
sudo-rsのテストの話 / story of sudo-rs testing
arata_nvm
1
140
ソースコードリーディングはいいぞ / source code reading is good
arata_nvm
0
54
ネットワーク委員会活動報告 / network committee activity report
arata_nvm
0
16
Twitter専用のPCを作る / create a dedicated Twitter PC
arata_nvm
0
43
日中の電子決済システムの比較と分析 / comparison and analysis of Japanese and Chinese electronic payment systems
arata_nvm
0
83
Featured
See All Featured
Done Done
chrislema
182
16k
Build The Right Thing And Hit Your Dates
maggiecrowley
33
2.5k
Being A Developer After 40
akosma
89
590k
We Have a Design System, Now What?
morganepeng
51
7.3k
Facilitating Awesome Meetings
lara
51
6.2k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
Fireside Chat
paigeccino
34
3.1k
Building Adaptive Systems
keathley
38
2.4k
Code Review Best Practice
trishagee
65
17k
The Cult of Friendly URLs
andyhume
78
6.1k
Raft: Consensus for Rubyists
vanstee
137
6.7k
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拡張を公開しています