Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _obj (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Func.Locals", Field, 0},
    		{"Func.Obj", Field, 0},
    		{"Func.Params", Field, 0},
    		{"Func.Sym", Field, 0},
    		{"LineTable", Type, 0},
    		{"LineTable.Data", Field, 0},
    		{"LineTable.Line", Field, 0},
    		{"LineTable.PC", Field, 0},
    		{"NewLineTable", Func, 0},
    		{"NewTable", Func, 0},
    		{"Obj", Type, 0},
    		{"Obj.Funcs", Field, 0},
    		{"Obj.Paths", Field, 0},
    		{"Sym", Type, 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)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    }
    func rewriteValueAMD64_OpGetG(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (GetG mem)
    	// cond: v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal
    	// result: (LoweredGetG mem)
    	for {
    		mem := v_0
    		if !(v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal) {
    			break
    		}
    		v.reset(OpAMD64LoweredGetG)
    		v.AddArg(mem)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// result: devirtLECall(v, fn.(*obj.LSym))
    	for {
    		if len(v.Args) < 1 {
    			break
    		}
    		v_0 := v.Args[0]
    		if v_0.Op != OpAddr {
    			break
    		}
    		fn := auxToSym(v_0.Aux)
    		v_0_0 := v_0.Args[0]
    		if v_0_0.Op != OpSB {
    			break
    		}
    		v.copyOf(devirtLECall(v, fn.(*obj.LSym)))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top