Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for typeHashFieldOf (0.37 sec)

  1. src/cmd/compile/internal/walk/switch.go

    	}
    
    	walkStmtList(sw.Compiled)
    	sw.Tag = nil
    	sw.Cases = nil
    }
    
    var interfaceSwitchGen int
    
    // typeHashFieldOf returns an expression to select the type hash field
    // from an interface's descriptor word (whether a *runtime._type or
    // *runtime.itab pointer).
    func typeHashFieldOf(pos src.XPos, itab *ir.UnaryExpr) *ir.SelectorExpr {
    	if itab.Op() != ir.OITAB {
    		base.Fatalf("expected OITAB, got %v", itab.Op())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top