我想在IR文件中插入一个函数调用指令。但是当我尝试创建struct参数时会出现一些问题。
功能:
"__myfun(int addr,struct buginfor struct_var)"
结构是:
typedef struct buginfor{
int line;
char *str1;
char *str2;
};
我的代码:
Value* args[] = { addr };
// struct parameter create
Value *struct_line = ConstantInt::get(IntegerType::get(M->getContext(), 64), 4);
Value *struct_filename= llvm::PointerType::get(IntegerType::get(M->getContext(), 8),20);//20 bytes
Value *struct_dir= llvm::PointerType::get(IntegerType::get(M->getContext(), 8),100);//100 tytes
Type* struct_Ty[] = { struct_line->getType(),struct_filename->getType(),struct_dir->getType()};
llvm::StructType * struct_var= llvm::StructType::create(M->getContext(),"buginfor");
struct_var->setBody(struct_Ty);
Value* arg2 = struct_var;
Type* argsTy[] = { addr->getType(),arg2->getType()};
FunctionType *funcTy = FunctionType::get(Type::getVoidTy(M->getContext()), ArrayRef<Type*>(argsTy, 2), false);
Function *hook;
hook = cast<Function>( M->getOrInsertFunction("__myfun", funcTy, attribute(M)));
CallInst *newInst = CallInst::Create(hook, ArrayRef<Value *>(args, 1), "");
任何人都可以告诉我创建像buginfor这样的struct参数的正确方法吗?
PS: 我想获得三个参数并使其成为llvm IR常量结构
DILocation Loc(N); // DILocation is in DebugInfo.h
unsigned Line = Loc.getLineNumber();
StringRef File = Loc.getFilename();
StringRef Dir = Loc.getDirectory();
答案 0 :(得分:0)
您似乎想要创建一个ConstantStruct或undef结构,然后使用insertvalue指令将值插入其中。取决于您是否具有常量或运行时值。