Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OpGetG (0.12 sec)

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

    		}
    		fallthrough
    
    	case ir.OCALLINTER:
    		n := n.(*ir.CallExpr)
    		return s.callResult(n, callNormal)
    
    	case ir.OGETG:
    		n := n.(*ir.CallExpr)
    		return s.newValue1(ssa.OpGetG, n.Type(), s.mem())
    
    	case ir.OGETCALLERPC:
    		n := n.(*ir.CallExpr)
    		return s.newValue0(ssa.OpGetCallerPC, n.Type())
    
    	case ir.OGETCALLERSP:
    		n := n.(*ir.CallExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v.Op = OpAMD64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpAMD64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpAMD64LoweredGetClosurePtr
    		return true
    	case OpGetG:
    		return rewriteValueAMD64_OpGetG(v)
    	case OpHasCPUFeature:
    		return rewriteValueAMD64_OpHasCPUFeature(v)
    	case OpHmul32:
    		v.Op = OpAMD64HMULL
    		return true
    	case OpHmul32u:
    		v.Op = OpAMD64HMULLU
    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

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	fe := b.Func.fe
    	// match: (NilCheck ptr:(GetG mem) mem)
    	// result: ptr
    	for {
    		ptr := v_0
    		if ptr.Op != OpGetG {
    			break
    		}
    		mem := ptr.Args[0]
    		if mem != v_1 {
    			break
    		}
    		v.copyOf(ptr)
    		return true
    	}
    	// match: (NilCheck ptr:(SelectN [0] call:(StaticLECall _ _)) _)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    	OpCvt32Fto64
    	OpCvt64Fto32
    	OpCvt64Fto64
    	OpCvt32Fto64F
    	OpCvt64Fto32F
    	OpCvtBoolToUint8
    	OpRound32F
    	OpRound64F
    	OpIsNonNil
    	OpIsInBounds
    	OpIsSliceInBounds
    	OpNilCheck
    	OpGetG
    	OpGetClosurePtr
    	OpGetCallerPC
    	OpGetCallerSP
    	OpPtrIndex
    	OpOffPtr
    	OpSliceMake
    	OpSlicePtr
    	OpSliceLen
    	OpSliceCap
    	OpSlicePtrUnchecked
    	OpComplexMake
    	OpComplexReal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top