Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AuxInt (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BTQconst", argLength: 1, reg: gp1flags, asm: "BTQ", typ: "Flags", aux: "Int8"},                         // test whether bit auxint in arg0 is set, 0 <= auxint < 64
    		{name: "BTCQconst", argLength: 1, reg: gp11, asm: "BTCQ", resultInArg0: true, clobberFlags: true, aux: "Int8"}, // complement bit auxint in arg0, 31 <= auxint < 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueLOONG64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    		val := auxIntToInt32(v.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v6.AuxInt = int64ToAuxInt(3)
    		v7 := b.NewValue0(v.Pos, OpMIPS64XORconst, typ.UInt64)
    		v7.AuxInt = int64ToAuxInt(3)
    		v7.AddArg(ptr)
    		v6.AddArg(v7)
    		v5.AddArg(v6)
    		v3.AddArg2(v4, v5)
    		v8 := b.NewValue0(v.Pos, OpMIPS64NORconst, typ.UInt64)
    		v8.AuxInt = int64ToAuxInt(0)
    		v9 := b.NewValue0(v.Pos, OpMIPS64SLLV, typ.UInt64)
    		v10 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v10.AuxInt = int64ToAuxInt(0xff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt32(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v7 := b.NewValue0(v.Pos, OpMIPSXORconst, typ.UInt32)
    		v7.AuxInt = int32ToAuxInt(3)
    		v7.AddArg(ptr)
    		v6.AddArg(v7)
    		v5.AddArg(v6)
    		v3.AddArg2(v4, v5)
    		v8 := b.NewValue0(v.Pos, OpMIPSNORconst, typ.UInt32)
    		v8.AuxInt = int32ToAuxInt(0)
    		v9 := b.NewValue0(v.Pos, OpMIPSSLL, typ.UInt32)
    		v10 := b.NewValue0(v.Pos, OpMIPSMOVWconst, typ.UInt32)
    		v10.AuxInt = int32ToAuxInt(0xff)
    		v9.AddArg2(v10, v5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    	// result: (I64Const [int64(c)])
    	for {
    		c := auxIntToInt16(v.AuxInt)
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(int64(c))
    		return true
    	}
    }
    func rewriteValueWasm_OpConst32(v *Value) bool {
    	// match: (Const32 [c])
    	// result: (I64Const [int64(c)])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(int64(c))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    // ssa/rewritegeneric.go.
    
    // values are specified using the following format:
    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top