Displaying 2 results from an estimated 2 matches for "llvm_type_get_cannonical_struct".
2004 Oct 06
1
[LLVMdev] generating function declarations in c frontend
...nsics, and I
must be misunderstanding how to create new functions - I saw that a
function with no basic blocks is treated as a declaration, so I tried
to just create one and add it to the globals list:
llvm_type *structTy, *ptrToStructTy;
structTy = llvm_type_create_struct(0, 0);
structTy = llvm_type_get_cannonical_struct(structTy);
ptrToStructTy = llvm_type_get_pointer(structTy);
llvm_function *dbg_stoppoint_fn = llvm_function_new(ptrToStructTy,
"llvm.dbg.stoppoint");
llvm_argument *arg = llvm_argument_new(structTy, "foo");
llvm_ilist_push_back(llvm_value, dbg_stoppoint_fn->Arguments...
2004 Oct 05
1
[LLVMdev] debugging info questions
Hi, It's taking me a while to get familiar with the cfe in order to
add emitting stop points for debugging. It's a lot to work through, so
in order to speed things up, I've got a few questions. Any help would
be appreciated.
I understand the design of the intrinsics once they're in the code,
but how to generate them is still a little fuzzy, mainly because
llvm_expand is a little