Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AuxArm64BitField (0.28 sec)

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

    	case auxInt64, auxInt128:
    		return fmt.Sprintf(" [%d]", v.AuxInt)
    	case auxUInt8:
    		return fmt.Sprintf(" [%d]", v.AuxUInt8())
    	case auxARM64BitField:
    		lsb := v.AuxArm64BitField().getARM64BFlsb()
    		width := v.AuxArm64BitField().getARM64BFwidth()
    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    				}
    				canHaveAuxInt = true
    			case auxInt32:
    				if v.AuxInt != int64(int32(v.AuxInt)) {
    					f.Fatalf("bad int32 AuxInt value for %v", v)
    				}
    				canHaveAuxInt = true
    			case auxInt64, auxARM64BitField:
    				canHaveAuxInt = true
    			case auxInt128:
    				// AuxInt must be zero, so leave canHaveAuxInt set to false.
    			case auxUInt8:
    				if v.AuxInt != int64(uint8(v.AuxInt)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    	auxCall                   // aux is a *ssa.AuxCall
    	auxCallOff                // aux is a *ssa.AuxCall, AuxInt is int64 param (in+out) size
    
    	// architecture specific aux types
    	auxARM64BitField     // aux is an arm64 bitfield lsb and width packed into auxInt
    	auxS390XRotateParams // aux is a s390x rotate parameters object encoding start bit, end bit and rotate amount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top