Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for jumpable (0.13 sec)

  1. src/cmd/internal/obj/link.go

    	ArgLiveInfo        *LSym // argument liveness info for traceback
    	WrapInfo           *LSym // for wrapper, info of wrapped function
    	JumpTables         []JumpTable
    
    	FuncInfoSym   *LSym
    	WasmImportSym *LSym
    	WasmImport    *WasmImport
    
    	sehUnwindInfoSym *LSym
    }
    
    // JumpTable represents a table used for implementing multi-way
    // computed branching, used typically for implementing switches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    			}
    			if b.NumControls() != 0 {
    				f.Fatalf("plain/dead block %s has a control value", b)
    			}
    		case BlockJumpTable:
    			if b.NumControls() != 1 {
    				f.Fatalf("jumpTable block %s has no control value", b)
    			}
    		}
    		if len(b.Succs) != 2 && b.Likely != BranchUnknown {
    			f.Fatalf("likeliness prediction %d for block %s with %d successors", b.Likely, b, len(b.Succs))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    //       If   [boolean Value]      [then, else]
    //    First                []   [always, never]
    //    Defer             [mem]  [nopanic, panic]                  (control opcode should be OpStaticCall to runtime.deferproc)
    // JumpTable   [integer Value]  [succ1,succ2,..]
    
    var genericBlocks = []blockData{
    	{name: "Plain"},                  // a single successor
    	{name: "If", controls: 1},        // if Controls[0] goto Succs[0] else goto Succs[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top