3

我有一个看起来像这样的 LLVM IR 代码。

  %8 = load i64* @tid, align 8
  %arrayidx1 = getelementptr inbounds [16 x i32]* @h, 
    i32 0, i64 %8 ;<-- %8 works fine here
  ..............
  %OldFuncCounter7 = load i64* getelementptr inbounds ([16 x i64]* 
    @EdgeProfCounters, i64 0, i64 %8) ;<-- error here, %8 not allowed
  ..............

在分配arrayidx1的行中,一切都很好,但是对于OldFuncCounter7,LLVM 编译器会抱怨说“无效使用函数本地名称”。这是由于我正在使用的 %8 。如果我用常数替换它,它工作正常。所以我的问题是为什么 %8 可以正常使用arrayidx1,但不能使用OldFuncCounter7。这里发生了什么?

发生此错误的整个基本块如下所示

  %8 = load i64* @tid, align 8
  %arrayidx1 = getelementptr inbounds [16 x i32]* @h, i32 0, i64 %8
  store volatile i32 3, i32* %arrayidx1, align 4
  %9 = load volatile i32* getelementptr inbounds ([16 x i32]* @h, i32 0, i64 0), align 4
  %call2 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([10 x i8]* @.str, i32 0, i32 0), i32 %9)
  %10 = load i64* @tid, align 8
  store volatile i64 %10, i64* %clock, align 8
  %call3 = call i32 @getpid() nounwind
  %call4 = call i64 @pthread_self() nounwind readnone
  %11 = load volatile i64* %clock, align 8
  %call5 = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([21 x i8]* @.str1, i32 0, i32 0), i32 %call3, i64 %call4, i64 %11)
  store i64 0, i64* %oi, align 8
  ; Error here due to %8
  %OldFuncCounter7 = load i64* getelementptr inbounds ([16 x i64]* @EdgeProfCounters, i64 0, i64 %8)
  ;
  %NewFuncCounter8 = add i64 %OldFuncCounter7, 13
  store volatile i64 %NewFuncCounter8, i64* getelementptr inbounds ([16 x i64]* @EdgeProfCounters, i64 0, i64 0)
  br label %for.cond6
4

1 回答 1

4

您在常量表达式%8中使用from ,但它不是常量。您需要修复代码以在常量表达式之外执行指令:getelementptr

%temp = getelementptr inbounds [16 x i64]* @EdgeProfCounters, i64 0, i64 %8
%OldFuncCounter7 = load i64* %temp
于 2012-10-18T13:29:50.533 回答