Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dumpfields (0.27 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    	// match: (Load <t> _ _)
    	// cond: t.IsStruct() && t.NumFields() == 0 && CanSSA(t)
    	// result: (StructMake0)
    	for {
    		t := v.Type
    		if !(t.IsStruct() && t.NumFields() == 0 && CanSSA(t)) {
    			break
    		}
    		v.reset(OpStructMake0)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.IsStruct() && t.NumFields() == 1 && CanSSA(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*ExprStmt).End", Method, 0},
    		{"(*ExprStmt).Pos", Method, 0},
    		{"(*Field).End", Method, 0},
    		{"(*Field).Pos", Method, 0},
    		{"(*FieldList).End", Method, 0},
    		{"(*FieldList).NumFields", Method, 0},
    		{"(*FieldList).Pos", Method, 0},
    		{"(*File).End", Method, 0},
    		{"(*File).Pos", Method, 0},
    		{"(*ForStmt).End", Method, 0},
    		{"(*ForStmt).Pos", Method, 0},
    		{"(*FuncDecl).End", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top