search for: fallthrough1

Displaying 3 results from an estimated 3 matches for "fallthrough1".

Did you mean: fallthrough
2019 Jul 01
2
[cfe-dev] [RFC] ASM Goto With Output Constraints
...9;t encounter an problem. Any value used in the goto-target can be handled by inserting the code to extract that value in the goto-target block: bb1: ... %x.bb1 = callbr i32 asm sideeffect "...", "=r,X"(i32 *%x*, i8* blockaddress(@bar, %goto.target)) to label %fallthrough1 [label %goto.target] fallthrough1: ... bb2: ... %y.bb2 = callbr i32 asm sideeffect "...", "=r,X"(i32 *%y*, i8* blockaddress(@bar, %goto.target)) to label %fallthrough2 [label %goto.target] fallthrough2: ... goto.target: %x.goto = <extract val...
2019 Jul 02
2
[cfe-dev] [RFC] ASM Goto With Output Constraints
...to-target can be handled by inserting the code to extract that value in > the goto-target block: > > > bb1: > > ... > > %x.bb1 = callbr i32 asm sideeffect "...", "=r,X"(i32 *%x*, i8* > blockaddress(@bar, %goto.target)) > > to label %fallthrough1 [label %goto.target] > > > fallthrough1: > > ... > > > bb2: > > ... > > %y.bb2 = callbr i32 asm sideeffect "...", "=r,X"(i32 *%y*, i8* > blockaddress(@bar, %goto.target)) > > to label %fallthrough2 [label %goto.target]...
2019 Jun 28
3
[cfe-dev] [RFC] ASM Goto With Output Constraints
On Fri, Jun 28, 2019 at 1:48 PM James Y Knight <jyknight at google.com> wrote: > On Fri, Jun 28, 2019 at 3:00 PM Bill Wendling <isanbard at gmail.com> wrote: > >> On Thu, Jun 27, 2019 at 1:44 PM Bill Wendling <isanbard at gmail.com> wrote: >> >>> On Thu, Jun 27, 2019 at 1:29 PM James Y Knight <jyknight at google.com> >>> wrote: