gpt4 book ai didi

llvm - 使用 LLVM 创建本地字符串

转载 作者:行者123 更新时间:2023-12-02 08:20:54 26 4
gpt4 key购买 nike

我正在尝试使用 LLVM 创建一个局部变量来存储字符串,但我的代码当前抛出语法错误。

lli: test2.ll:8:23: error: constant expression type mismatch
%1 = load [6 x i8]* c"hello\00"

分配和存储字符串的 IR 代码:

@.string = private constant [4 x i8] c"%s\0A\00"

define void @main() {
entry:
%a = alloca [255 x i8]
%0 = bitcast [255 x i8]* %a to i8*
%1 = load [6 x i8]* c"hello\00"
%2 = bitcast [6 x i8]* %1 to i8*
%3 = tail call i8* @strncpy(i8* %0, i8* %2, i64 255) nounwind
%4 = getelementptr inbounds [6 x i8]* %a, i32 0, i32 0
%5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.string, i32 0, i32 0), i8* %4)
ret void
}

declare i32 @printf(i8*, ...)
declare i8* @strncpy(i8*, i8* nocapture, i64) nounwind

使用 llc 我可以看到 llvm 实现的方式是分配和分配给全局变量,但我希望它是本地的(在基本 block 内)。下面的代码可以工作,但我不想创建这个 var“@.str”...

@str = global [1024 x i8] zeroinitializer, align 16
@.str = private unnamed_addr constant [6 x i8] c"hello\00", align 1
@.string = private constant [4 x i8] c"%s\0A\00"

define i32 @main() nounwind uwtable {
%1 = tail call i8* @strncpy(i8* getelementptr inbounds ([1024 x i8]* @str, i64 0, i64 0), i8* getelementptr inbounds ([6 x i8]* @.str, i64 0, i64 0), i64 1024) nounwind
%2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.string, i32 0, i32 0), i8* %1)
ret i32 0
}

declare i8* @strncpy(i8*, i8* nocapture, i64) nounwind
declare i32 @printf(i8*, ...) #2

谢谢

最佳答案

在对以前的代码进行更多修改后,我自己弄清楚了。

下面是代码,有和我遇到同样问题的人可以查看一下

@.string = private constant [4 x i8] c"%s\0A\00"

define void @main() {
entry:
%a = alloca [6 x i8]
store [6 x i8] [i8 104,i8 101,i8 108,i8 108, i8 111, i8 0], [6 x i8]* %a
%0 = bitcast [6 x i8]* %a to i8*
%1 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.string, i32 0, i32 0), i8* %0)
ret void
}

declare i32 @printf(i8*, ...)

基本上,我必须将每个字符单独存储在数组中,然后按位转换为 i8*,以便我可以使用 printf 函数。我无法使用 LLVM 网页 http://llvm.org/docs/LangRef.html#id669 中显示的 c"... " 方法。这似乎是 IR 语言规范中的一个特例,它们需要在全局范围内。

更新:我再次处理相同的代码,我发现最好的方法是存储一个常量而不是每个 i8 符号。因此第 6 行将替换为:

  store [6 x i8] c"hello\00", [6 x i8]* %0

使用llvm生成代码更容易,而且可读性更强!

关于llvm - 使用 LLVM 创建本地字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37101965/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com