Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AddArg2 (0.16 sec)

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

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

    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		cond := v_2
    		v.reset(OpLOONG64OR)
    		v0 := b.NewValue0(v.Pos, OpLOONG64MASKEQZ, t)
    		v0.AddArg2(x, cond)
    		v1 := b.NewValue0(v.Pos, OpLOONG64MASKNEZ, t)
    		v1.AddArg2(y, cond)
    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVVconst [int64(val)])
    	for {
    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.AddArg(ptr)
    		v5.AddArg(v6)
    		v3.AddArg2(v4, v5)
    		v7 := b.NewValue0(v.Pos, OpMIPS64NORconst, typ.UInt64)
    		v7.AuxInt = int64ToAuxInt(0)
    		v8 := b.NewValue0(v.Pos, OpMIPS64SLLV, typ.UInt64)
    		v9 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v9.AuxInt = int64ToAuxInt(0xff)
    		v8.AddArg2(v9, v5)
    		v7.AddArg(v8)
    		v2.AddArg2(v3, v7)
    		v.AddArg3(v0, v2, mem)
    		return true
    	}
    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

    		v1.AddArg(x)
    		v2 := b.NewValue0(v.Pos, OpRISCV64SRLI, t)
    		v2.AuxInt = int64ToAuxInt(1)
    		v2.AddArg(y)
    		v0.AddArg2(v1, v2)
    		v3 := b.NewValue0(v.Pos, OpRISCV64ANDI, t)
    		v3.AuxInt = int64ToAuxInt(1)
    		v4 := b.NewValue0(v.Pos, OpRISCV64AND, t)
    		v4.AddArg2(x, y)
    		v3.AddArg(v4)
    		v.AddArg2(v0, v3)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    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/rewriteWasm.go

    		v1 := b.NewValue0(v.Pos, OpWasmI64Const, typ.Int64)
    		v1.AuxInt = int64ToAuxInt(c & 15)
    		v0.AddArg2(x, v1)
    		v2 := b.NewValue0(v.Pos, OpRsh16Ux64, t)
    		v3 := b.NewValue0(v.Pos, OpWasmI64Const, typ.Int64)
    		v3.AuxInt = int64ToAuxInt(-c & 15)
    		v2.AddArg2(x, v3)
    		v.AddArg2(v0, v2)
    		return true
    	}
    	return false
    }
    func rewriteValueWasm_OpRotateLeft8(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
Back to top