Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for imms (0.28 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //       (64-UInt(immh:immb)) when immh = 01xx
    //       (128-UInt(immh:immb)) when immh = 1xxx
    //
    // - arg_immediate_index_Q_imm4__imm4lt20gt_00__imm4_10:
    //     the lowest numbered byte element to be extracted, encoded in the "Q:imm4" field.
    //     It can have the following values:
    //       imm4<2:0> when Q = 0, imm4<3> = 0
    //       imm4 when Q = 1, imm4<3> = x
    //
    // - arg_sysop_AT_SYS_CR_system:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K 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/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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    				}
    			}
    		}
    	}
    
    	switch inst.Op {
    	case AAM, AAD:
    		if imm, ok := iargs[0].(Imm); ok {
    			if inst.DataSize == 32 {
    				iargs[0] = Imm(uint32(int8(imm)))
    			} else if inst.DataSize == 16 {
    				iargs[0] = Imm(uint16(int8(imm)))
    			}
    		}
    
    	case PUSH:
    		if imm, ok := iargs[0].(Imm); ok {
    			iargs[0] = Imm(uint32(imm))
    		}
    	}
    
    	for _, p := range inst.Prefix {
    		if p&PrefixImplicit != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K 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/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)
  9. src/go/doc/example.go

    	// Copy to avoid mutation.
    	imps := make([]*ast.ImportSpec, len(origImps))
    	copy(imps, origImps)
    	// Assume the imports are sorted by position.
    	slices.SortFunc(imps, func(a, b *ast.ImportSpec) int {
    		return cmp.Compare(a.Pos(), b.Pos())
    	})
    	// Assume gofmt has been applied, so there is a blank line between adjacent imps
    	// if and only if they are more than 2 positions apart (newline, tab).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K 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