gpt4 book ai didi

c++ - 确定 GetElementPtr 的字节偏移量

转载 作者:行者123 更新时间:2023-11-28 06:05:47 27 4
gpt4 key购买 nike

这是一个简单的 C 程序:

struct S {char c; short arr[16]; char dummy2;};

extern struct S A[20];
extern short* p;

int main() {
p = &A[10].arr[6];
return 0;
}

这是 LLVM IR:

%struct.S = type { i8, [16 x i16], i8 }

@A = external global [20 x %struct.S]
@p = external global i16*

; Function Attrs: nounwind
define i32 @main() #0 {
entry:
store i16* getelementptr inbounds ([20 x %struct.S]* @A, i64 0, i64 10, i32 1, i64 6), i16** @p, align 8, !tbaa !1
ret i32 0
}

我如何计算 getelementptr 添加到 @A 的字节偏移量? ?

我可以很容易地遍历并打印出 GEP:

  auto& P = *GEP.getPointerOperand();
Out << "GEP(";
GEP.getType()->print(Out); // return type
Out << ", ";
P.printAsOperand(Out); // base
for (auto i=0U; i<GEP.getNumIndices(); i++) {
Out << ", ";
GEP.getOperand(i+1)->printAsOperand(Out); // index i
}
Out << ")\n";

这打印:

 GEP(i16*, [20 x %struct.S]* @A, i64 0, i64 10, i32 1, i64 6)

假设所有索引都是常量整数,如何确定相对于基指针的字节偏移量?

最佳答案

你能使用 ptrtoint 指令并减去它们吗?

关于c++ - 确定 GetElementPtr 的字节偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32444497/

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