printf() 函数的实现

发布于 2024-12-09 01:23:25 字数 144 浏览 0 评论 0原文

我正在研究一种玩具编程语言。我使用 LLVM 生成机器代码。现在我的问题是:如何从头开始实现 printf() 函数?。在 C 程序中,您调用 libc 就可以了。但是 printf() 内部是如何工作的呢?

干杯

I'm working ona toy programming language. I use LLVM to generate machine code. Now my question is: How do you implement a printf() function from scratch?. In a C program you call into libc and that's it. But how does the printf() stuff work internally?

Cheers

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

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

发布评论

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

评论(1

哎呦我呸! 2024-12-16 01:23:25

printf() 实现分为两部分。

首先,您有一些针对特定调用约定的机制,使可变参数成为可能。

其次,尽管您编写了一个循环来查看给定函数的格式说明符。简而言之,它需要执行以下两个操作之一,要么将字符串复制到 stdout(通过适合您平台的适当系统调用),要么采用传递给函数的可变参数之一并适当显示该参数(再次使用系统调用来输出) 对于指定的格式。

例如,如果您看到 %s 那么您需要检索下一个未使用的参数,将其解释为 char * 指针,然后确保它指向的内存被复制到标准输出,直到您点击 '\0'

There are two parts to a printf() implementation.

Firstly you have some mechanics for your particular calling convention that make variadic arguments possible.

Secondly though you write a loop that looks through the format specifier given to the function. In simplistic terms it takes one of two actions, either copies the string to stdout (via an appropriate system call for your platform) or takes one of the variadic arguments passed to the function and displays that appropriately (again using a system call for the output) for the format that was specified.

For example if you see a %s then you need to retrieve the next unconsumed argument, interpret it as a char * pointer and then ensure that the memory it points to gets copied to stdout until you hit '\0'.

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