Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OpGetG (0.1 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/rewrite386.go

    		v.Op = Op386LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = Op386LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = Op386LoweredGetClosurePtr
    		return true
    	case OpGetG:
    		v.Op = Op386LoweredGetG
    		return true
    	case OpHmul32:
    		v.Op = Op386HMULL
    		return true
    	case OpHmul32u:
    		v.Op = Op386HMULLU
    		return true
    	case OpInterCall:
    		v.Op = Op386CALLinter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.Op = OpS390XLoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpS390XLoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpS390XLoweredGetClosurePtr
    		return true
    	case OpGetG:
    		v.Op = OpS390XLoweredGetG
    		return true
    	case OpHmul32:
    		return rewriteValueS390X_OpHmul32(v)
    	case OpHmul32u:
    		return rewriteValueS390X_OpHmul32u(v)
    	case OpHmul64:
    		v.Op = OpS390XMULHD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top