Displaying 2 results from an estimated 2 matches for "callbrinst".
Did you mean:
call_inst
2018 Nov 04
2
[RFC] Implementing asm-goto support in Clang/LLVM
...the fallthrough in the source language code),
>>> denoted by the label after the keyword “to”, or to any of the “exceptional”
>>> successors (which are expected to be normal basic blocks) denoted by labels
>>> in the "or jump" list.
>>>
>>> The CallBrInst class implementing the instruction is a subclass of
>>> CallBase and is used as a terminator.
>>>
>>> Support for asm-goto is implemented by using “void asm” as the callee
>>> expression:
>>>
>>> callbr void asm sideeffect <fl...
2018 Nov 03
2
[RFC] Implementing asm-goto support in Clang/LLVM
...to a
> “normal” successor (generally the fallthrough in the source language code),
> denoted by the label after the keyword “to”, or to any of the “exceptional”
> successors (which are expected to be normal basic blocks) denoted by labels
> in the "or jump" list.
>
> The CallBrInst class implementing the instruction is a subclass of
> CallBase and is used as a terminator.
>
> Support for asm-goto is implemented by using “void asm” as the callee
> expression:
>
> callbr void asm sideeffect <flags> "<asm string>",
> &qu...