Searched refs:NewBranchStmt (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/walk/ |
D | switch.go | 84 jmp := ir.NewBranchStmt(ncase.Pos(), ir.OGOTO, label) 106 br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil) 114 br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil) 224 s.done.Append(ir.NewBranchStmt(s.pos, ir.OGOTO, outerLabel)) 238 s.done.Append(ir.NewBranchStmt(pos, ir.OGOTO, endLabel)) 242 jmp := ir.NewBranchStmt(pos, ir.OGOTO, label) 426 br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil) 444 jmp := ir.NewBranchStmt(ncase.Pos(), ir.OGOTO, labels[i]) 818 out.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, noMatch)) 828 out.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, noMatch))
|
D | select.go | 70 l = append(l, ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)) 139 return []ir.Node{r, ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)} 249 list.Append(ir.NewBranchStmt(base.Pos, ir.OBREAK, nil))
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/reflectdata/ |
D | alg.go | 464 nif.Else.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, neq)) 492 nif.Else.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, neq)) 594 n.Else.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, neq)) 614 fn.Body.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, ret))
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/ |
D | stmt.go | 154 func NewBranchStmt(pos src.XPos, op Op, label *types.Sym) *BranchStmt { func
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/loopvar/ |
D | loopvar.go | 378 newBreak := ir.NewBranchStmt(x.Pos(), ir.OBREAK, nil)
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/noder/ |
D | reader.go | 1712 return ir.NewBranchStmt(pos, op, sym) 3592 block.Append(ir.NewBranchStmt(pos, ir.OGOTO, r.retlabel))
|