Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for getclosureptr (0.53 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (NilCheck ...) => (LoweredNilCheck ...)
    (IsNonNil ptr) => (NotEqual (CMPconst [0] ptr))
    (IsInBounds      idx len) => (LessThanU  (CMP idx len))
    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP   ...) => (LoweredGetCallerSP   ...)
    (GetCallerPC   ...) => (LoweredGetCallerPC   ...)
    
    // Absorb pseudo-ops into blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (NilCheck ...) => (LoweredNilCheck ...)
    (IsNonNil ptr) => (NotEqual (CMPconst [0] ptr))
    (IsInBounds idx len) => (LessThanU (CMP idx len))
    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal cc) yes no) => (EQ cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (IsSliceInBounds idx len) => (SETBE (CMPQ idx len))
    (NilCheck ...) => (LoweredNilCheck ...)
    (GetG mem) && v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal => (LoweredGetG mem) // only lower in old ABI. in new ABI we have a G register.
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    
    (HasCPUFeature {s}) => (SETNE (CMPLconst [0] (LoweredHasCPUFeature {s})))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			s.vars[memVar] = s.newValue2(ssa.OpKeepAlive, types.TypeMem, data, s.mem())
    			return nil
    		},
    		all...)
    	add("runtime", "getclosureptr",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue0(ssa.OpGetClosurePtr, s.f.Config.Types.Uintptr)
    		},
    		all...)
    
    	add("runtime", "getcallerpc",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/writebarrier.go

    		v = v.Args[0]
    	}
    	switch v.Op {
    	case OpSP, OpLocalAddr, OpSelectNAddr:
    		// Stack addresses are always safe.
    		return true
    	case OpITab, OpStringPtr, OpGetClosurePtr:
    		// Itabs, string data, and closure fields are
    		// read-only once initialized.
    		return true
    	case OpAddr:
    		vt := v.Aux.(*obj.LSym).Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		argLen:   2,
    		nilCheck: true,
    		generic:  true,
    	},
    	{
    		name:      "GetG",
    		argLen:    1,
    		zeroWidth: true,
    		generic:   true,
    	},
    	{
    		name:    "GetClosurePtr",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerPC",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerSP",
    		argLen:  1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpFloor:
    		v.Op = OpWasmF64Floor
    		return true
    	case OpGetCallerPC:
    		v.Op = OpWasmLoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpWasmLoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpWasmLoweredGetClosurePtr
    		return true
    	case OpInterCall:
    		v.Op = OpWasmLoweredInterCall
    		return true
    	case OpIsInBounds:
    		v.Op = OpWasmI64LtU
    		return true
    	case OpIsNonNil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	case OpEqPtr:
    		return rewriteValueMIPS_OpEqPtr(v)
    	case OpGetCallerPC:
    		v.Op = OpMIPSLoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpMIPSLoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpMIPSLoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueMIPS_OpHmul32(v)
    	case OpHmul32u:
    		return rewriteValueMIPS_OpHmul32u(v)
    	case OpInterCall:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return rewriteValueLOONG64_OpEqPtr(v)
    	case OpGetCallerPC:
    		v.Op = OpLOONG64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpLOONG64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpLOONG64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueLOONG64_OpHmul32(v)
    	case OpHmul32u:
    		return rewriteValueLOONG64_OpHmul32u(v)
    	case OpHmul64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	case OpEqPtr:
    		return rewriteValueMIPS64_OpEqPtr(v)
    	case OpGetCallerPC:
    		v.Op = OpMIPS64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpMIPS64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpMIPS64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueMIPS64_OpHmul32(v)
    	case OpHmul32u:
    		return rewriteValueMIPS64_OpHmul32u(v)
    	case OpHmul64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top