Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sgdu (1.24 sec)

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

    	// match: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpLOONG64SGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVVconst [0]))
    	for {
    		ptr := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	// match: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpMIPS64SGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVVconst [0]))
    	for {
    		ptr := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	v_0 := v.Args[0]
    	// match: (IsInBounds idx len)
    	// result: (SGTU len idx)
    	for {
    		idx := v_0
    		len := v_1
    		v.reset(OpMIPSSGTU)
    		v.AddArg2(len, idx)
    		return true
    	}
    }
    func rewriteValueMIPS_OpIsNonNil(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (IsNonNil ptr)
    	// result: (SGTU ptr (MOVWconst [0]))
    	for {
    		ptr := v_0
    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/internal/obj/ppc64/asm9.go

    // The size is needed when setting the offset value in the instruction
    // and when generating relocation for that field.
    // DS form instructions include: ld, ldu, lwa, std, stdu.  All other
    // loads and stores with an offset field are D form.  This function should
    // only be called with the same opcodes as are handled by opstore and opload.
    func (c *ctxt9) opform(insn uint32) int {
    	switch insn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	{AMOVL, Yml, Ynone, Ytr6, movMemReg2op, [4]uint8{0x0f, 0x26, 6, 0xff}},
    	{AMOVL, Yml, Ynone, Ytr7, movMemReg2op, [4]uint8{0x0f, 0x26, 7, 0xff}},
    
    	// lgdt, sgdt, lidt, sidt
    	{AMOVL, Ym, Ynone, Ygdtr, movMemReg2op, [4]uint8{0x0f, 0x01, 2, 0}},
    	{AMOVL, Ygdtr, Ynone, Ym, movRegMem2op, [4]uint8{0x0f, 0x01, 0, 0}},
    	{AMOVL, Ym, Ynone, Yidtr, movMemReg2op, [4]uint8{0x0f, 0x01, 3, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top