あなたはこれを行うことができます。
CコードをコピーしてLLVMのオンラインデモ( http://llvm.org/demo/index.cgi)に貼り付けることにより、サンプルCのLLVMコードが何であるかを理解できます。
codepad.orgのコードをコピーして貼り付けると、LLVMがmyFunctionに対して次のコードを生成することがわかります。
define void @_Z10myFunction10MyStruct_t(i8* %myStructAsParam.coerce0, i32 %myStructAsParam.coerce1) nounwind uwtable {
%1 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([23 x i8]* @.str, i64 0, i64 0), i8* %myStructAsParam.coerce0, i32 %myStructAsParam.coerce1)
ret void
}
もちろん、通話を見ると、コピーが作成されていないことがわかります。それを行うのは呼び出し元の関数次第です。小さなC関数を書く場合:
void myCallingFunction(MyStruct_t *foobar)
{
myFunction(*foobar);
}
myCallingFunction用に生成されたLLVMビットコードは次のとおりです。
define void @_Z17myCallingFunctionP10MyStruct_t(%struct.MyStruct_t* nocapture %foobar) nounwind uwtable {
%foobar.0 = getelementptr inbounds %struct.MyStruct_t* %foobar, i64 0, i32 0
%tmp = load i8** %foobar.0, align 8
%foobar.1 = getelementptr inbounds %struct.MyStruct_t* %foobar, i64 0, i32 1
%tmp1 = load i32* %foobar.1, align 8
%1 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([23 x i8]* @.str, i64 0, i64 0), i8* %tmp, i32 %tmp1) nounwind
ret void
}
呼び出し元の関数は構造体のコピーを作成し、そのコピーのアドレスを渡します。