Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for movbel (0.59 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	0xF2, 2966,
    	0x0, 2950,
    	/*2950*/ uint16(xCondDataSize), 2954, 2960, 0,
    	/*2954*/ uint16(xSetOp), uint16(MOVBE),
    	/*2956*/ uint16(xReadSlashR),
    	/*2957*/ uint16(xArgR16),
    	/*2958*/ uint16(xArgM16),
    	/*2959*/ uint16(xMatch),
    	/*2960*/ uint16(xSetOp), uint16(MOVBE),
    	/*2962*/ uint16(xReadSlashR),
    	/*2963*/ uint16(xArgR32),
    	/*2964*/ uint16(xArgM32),
    	/*2965*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	MLS_MI
    	MLS_PL
    	MLS_VS
    	MLS_VC
    	MLS_HI
    	MLS_LS
    	MLS_GE
    	MLS_LT
    	MLS_GT
    	MLS_LE
    	MLS
    	MLS_ZZ
    	MOV_EQ
    	MOV_NE
    	MOV_CS
    	MOV_CC
    	MOV_MI
    	MOV_PL
    	MOV_VS
    	MOV_VC
    	MOV_HI
    	MOV_LS
    	MOV_GE
    	MOV_LT
    	MOV_GT
    	MOV_LE
    	MOV
    	MOV_ZZ
    	MOV_S_EQ
    	MOV_S_NE
    	MOV_S_CS
    	MOV_S_CC
    	MOV_S_MI
    	MOV_S_PL
    	MOV_S_VS
    	MOV_S_VC
    	MOV_S_HI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (MOVBreg e:(MOVBreg x))
    	// cond: clobberIfDead(e)
    	// result: (MOVBreg x)
    	for {
    		e := v_0
    		if e.Op != OpS390XMOVBreg {
    			break
    		}
    		x := e.Args[0]
    		if !(clobberIfDead(e)) {
    			break
    		}
    		v.reset(OpS390XMOVBreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBreg e:(MOVHreg x))
    	// cond: clobberIfDead(e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBreg y:(MOVBreg _))
    	// result: y
    	for {
    		y := v_0
    		if y.Op != OpPPC64MOVBreg {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (MOVBreg (MOVBZreg x))
    	// result: (MOVBreg x)
    	for {
    		if v_0.Op != OpPPC64MOVBZreg {
    			break
    		}
    		x := v_0.Args[0]
    		v.reset(OpPPC64MOVBreg)
    		v.AddArg(x)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		} else { // result is not SSA-able; not escaped, so not on heap, but too large for SSA.
    			// Before register ABI this ought to be a self-move, home=dest,
    			// With register ABI, it's still a self-move if parameter is on stack (i.e., too big or overflowed)
    			// No VarDef, as the result slot is already holding live value.
    			results[i] = s.newValue2(ssa.OpDereference, n.Type(), s.addr(n), s.mem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top