Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ocsp (0.09 sec)

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

    		v.AuxInt = int32ToAuxInt(c + d)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDLconst [off] x:(SP))
    	// result: (LEAL [off] x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if x.Op != OpSP {
    			break
    		}
    		v.reset(OpAMD64LEAL)
    		v.AuxInt = int32ToAuxInt(off)
    		v.AddArg(x)
    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64ADDLconstmodify(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	// match: (OffPtr [off] ptr:(SP))
    	// cond: is32Bit(off)
    	// result: (MOVDaddr [int32(off)] ptr)
    	for {
    		off := auxIntToInt64(v.AuxInt)
    		ptr := v_0
    		if ptr.Op != OpSP || !(is32Bit(off)) {
    			break
    		}
    		v.reset(OpARM64MOVDaddr)
    		v.AuxInt = int32ToAuxInt(int32(off))
    		v.AddArg(ptr)
    		return true
    	}
    	// match: (OffPtr [off] ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top