Displaying 4 results from an estimated 4 matches for "dipython".
Did you mean:
ipython
2012 Jun 22
1
[LLVMdev] C Bindings
Hello,
Is there anyone maintaining/extending the C bindings provided with llvm?
They seem rather incomplete, and I have been extending them to be able
to call those functions from Haskell but I don't want to redo someone
else's work.
Regards,
Marcelo
2012 Jun 23
1
[LLVMdev] getting identifier for alloca instruction and basic blocks
Hello,
How can I retrieve the identifier in a alloca instruction?
In the AllocaInst class there is no method to get this info so I
assumed that the actual value name for the instruction is the
identifier but when I have something like:
%1 = alloca %"mystruct", align 8
When calling the function Value::getName() I get the empty string.
What should I do to retrieve the "%1"?
2013 Sep 23
0
[LLVMdev] Wrong types in inline assembly?
Hello,
I'm confused about a particular snippet of code related to inline
assembly. From the Linux kernel:
bool llist_add_batch(struct llist_node *new_first, struct llist_node
*new_last, struct llist_head *head){
struct llist_node *first;
do {
new_last->next = first = ACCESS_ONCE(head->first);
} while (cmpxchg(&head->first, first, new_first) != first);
return !first;
}
The
2012 Jun 25
1
[LLVMdev] getting identifier for alloca instruction and basic blocks
Hi Duncan,
>Hi Marcelo,
>
>> How can I retrieve the identifier in a alloca instruction?
>
>except for globals, identifier names in LLVM IR are only there to make the IR
>easier to read: they are optional and can't be relied upon to exist, or to mean
>anything or be "correct" if they exist. Use debug info to map things back to
>variable names in the