Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getclosureptr (0.79 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		v.Op = OpRISCV64FMADDD
    		return true
    	case OpGetCallerPC:
    		v.Op = OpRISCV64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpRISCV64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpRISCV64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueRISCV64_OpHmul32(v)
    	case OpHmul32u:
    		return rewriteValueRISCV64_OpHmul32u(v)
    	case OpHmul64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top