在 lex/yacc 中使用字典数据结构

发布于 2024-07-14 15:00:35 字数 172 浏览 4 评论 0原文

我正在为使用 lex/yacc 创建的微处理器编写汇编程序。

我想在我的汇编代码中实现标签,并且我认为实现此目的的一个好方法是使用 {name:line#} 形式的标签字典。 然后我可以在插入标签时检查,如果它已经定义,则它是一个错误。

那么如何在 lex/yacc 中使用字典结构呢?

I'm writing an assembler for a microprocessor I'm creating using lex/yacc.

I'd like to implement labels in my assembler code, and I thought a good way to do this would be to have a dictionary of labels in the form {name:line#}. I could then check when inserting a label, if it's already defined, its an error.

So how can I use a dictionary structure in lex/yacc?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沐歌 2024-07-21 15:00:35

查看各种哈希表实现来找到您喜欢的一个。

Look at the various hash table implementations to find one you like.

沩ん囻菔务 2024-07-21 15:00:35

为了标签? 使用文件指针创建一个结构,并将其初始化为找到的标签的位置。 当您遇到标签声明时,访问该指针并用 locctr 填充该空白。

For labels? Create a structure with a file pointer, and initialise that to the position of the found label. And when you come across the label declaration, access that pointer and fill that blank with locctr.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文