Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for immh (0.23 sec)

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

    		case xArgImm8:
    			inst.Args[narg] = Imm(imm8)
    			narg++
    
    		case xArgImm8u:
    			inst.Args[narg] = Imm(uint8(imm8))
    			narg++
    
    		case xArgImm16:
    			inst.Args[narg] = Imm(int16(imm))
    			narg++
    
    		case xArgImm16u:
    			inst.Args[narg] = Imm(uint16(imm))
    			narg++
    
    		case xArgImm32:
    			inst.Args[narg] = Imm(int32(imm))
    			narg++
    
    		case xArgImm64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    			return ImmAlt{uint8(v), uint8(rot)}
    		}
    		return Imm(v>>rot | v<<(32-rot))
    
    	case arg_endian:
    		return Endian((x >> 9) & 1)
    
    	case arg_fbits:
    		return Imm((16 << ((x >> 7) & 1)) - ((x&(1<<4-1))<<1 | (x>>5)&1))
    
    	case arg_fp_0:
    		return Imm(0)
    
    	case arg_imm24:
    		return Imm(x & (1<<24 - 1))
    
    	case arg_imm5:
    		return Imm((x >> 7) & (1<<5 - 1))
    
    	case arg_imm5_32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	o1 |= uint32(p.To.Reg&0x1f) << 21                         // T
    	o1 |= uint32(p.From.Offset&0x1) << 17                     // IX
    	o0 |= uint32((p.RestArgs[0].Addr.Offset>>16)&0xffff) << 0 // imm0
    	o1 |= uint32(p.RestArgs[0].Addr.Offset&0xffff) << 0       // imm1
    	out[1] = o1
    	out[0] = o0
    }
    
    // xxspltiw XT,IMM32
    func type_xxspltiw(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenPfxOpcodes[p.As-AXXSPLTIW]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		buf.WriteString(opName)
    		l := inst.Args[3].(Imm)
    		if l == 0 {
    			// L == 0 is an extended mnemonic for the same.
    			asm := fmt.Sprintf(" %s,%s,%s",
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			buf.WriteString(asm)
    			startArg = 4
    		}
    
    	case "sync":
    		lsc := inst.Args[0].(Imm)<<4 | inst.Args[1].(Imm)
    		switch lsc {
    		case 0x00:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    	switch a := arg.(type) {
    	case Imm:
    		return fmt.Sprintf("$%d", uint32(a.Imm))
    
    	case Imm64:
    		return fmt.Sprintf("$%d", int64(a.Imm))
    
    	case ImmShift:
    		if a.shift == 0 {
    			return fmt.Sprintf("$%d", a.imm)
    		}
    		return fmt.Sprintf("$(%d<<%d)", a.imm, a.shift)
    
    	case PCRel:
    		addr := int64(pc) + int64(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/mips64.s

    	ROTRV	R16, R9		// 02094856
    
    //	LSHW imm ',' sreg ',' rreg
    //	{
    //		outcode(int($1), &$2, int($4), &$6);
    //	}
    	SLL	$19, R22, R21	// 0016acc0
    	SLLV	$19, R22, R21	// 0016acf8
    	SRL	$31, R6, R17	// 00068fc2
    	SRLV	$31, R6, R17	// 00068ffa
    	SRA	$8, R8, R19	// 00089a03
    	SRAV	$19, R8, R7	// 00083cfb
    	ROTR	$12, R8, R3	// 00281b02
    	ROTRV	$8, R22, R22	// 0036b23a
    
    //	LSHW imm ',' rreg
    //	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    			}
    		}
    	}
    }
    
    // An Imm is an integer constant.
    type Imm struct {
    	Imm     uint32
    	Decimal bool
    }
    
    func (Imm) isArg() {}
    
    func (i Imm) String() string {
    	if !i.Decimal {
    		return fmt.Sprintf("#%#x", i.Imm)
    	} else {
    		return fmt.Sprintf("#%d", i.Imm)
    	}
    }
    
    type Imm64 struct {
    	Imm     uint64
    	Decimal bool
    }
    
    func (Imm64) isArg() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			op = "int3"
    		}
    
    	case CMPPS, CMPPD, CMPSD_XMM, CMPSS:
    		imm, ok := inst.Args[2].(Imm)
    		if ok && 0 <= imm && imm < 8 {
    			inst.Args[2] = nil
    			op = cmppsOps[imm] + op[3:]
    		}
    
    	case PCLMULQDQ:
    		imm, ok := inst.Args[2].(Imm)
    		if ok && imm&^0x11 == 0 {
    			inst.Args[2] = nil
    			op = pclmulqOps[(imm&0x10)>>3|(imm&1)]
    		}
    
    	case XLATB:
    		if markLastImplicit(&inst, PrefixAddrSize) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    type Rel int32
    
    func (Rel) isArg() {}
    
    func (r Rel) String() string {
    	return fmt.Sprintf(".%+d", r)
    }
    
    // An Imm is an integer constant.
    type Imm int64
    
    func (Imm) isArg() {}
    
    func (i Imm) String() string {
    	return fmt.Sprintf("%#x", int64(i))
    }
    
    func (i Inst) String() string {
    	var buf bytes.Buffer
    	for _, p := range i.Prefix {
    		if p == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		}
    		return op + " (" + args[1] + ")(" + args[0] + ")"
    
    	// branch instructions needs additional handling
    	case BCLR:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "RET"
    		}
    		return op + " " + strings.Join(args, ", ")
    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top