我尝试使用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实现的方式是分配和分配给全局变量,但我希望它是本地的(在基本块内)。下面的代码有效,但我不想创建这个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
由于
答案 0 :(得分: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*, ...)
基本上,我必须将每个字符分别存储在数组中,然后bitcast到i8 *,这样我就可以使用printf函数了。我无法使用LLVM网页http://llvm.org/docs/LangRef.html#id669中显示的c" ... "
方法。它似乎是IR语言规范中的一个特例,它们必须在全球范围内。
UPDATE :我再次处理相同的代码,我发现最好的方法是存储一个常量而不是每个i8符号。所以第6行将被替换为:
store [6 x i8] c"hello\00", [6 x i8]* %0
使用llvm生成代码更容易,而且更具可读性!