Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for suffixMsg (0.31 sec)

  1. src/cmd/internal/obj/link.go

    	RegTo2   int16     // 2nd destination operand
    	Mark     uint16    // bitmask of arch-specific items
    	Optab    uint16    // arch-specific opcode index
    	Scond    uint8     // bits that describe instruction suffixes (e.g. ARM conditions, RISCV Rounding Mode)
    	Back     uint8     // for x86 back end: backwards branch state
    	Ft       uint8     // for x86 back end: type index of Prog.From
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    //    register (R11).
    
    // Suffixes encode the bit width of various instructions.
    // W (word)      = 32 bit
    // H (half word) = 16 bit
    // HU            = 16 bit unsigned
    // B (byte)      = 8 bit
    // BU            = 8 bit unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The advantage of using this pattern when working only with pom metadata is that both variants are discoverable through the version.
    The disadvantage is that there is no information what the different version suffixes mean semantically.
    So in the case of conflict, Gradle would just pick the highest version when comparing the version strings.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    		}
    		for {
    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    						p.errorf("instruction suffix expected identifier, found %s", str)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo.go

    			// Ignore non-canonical tags: Stat rewrites those to canonical
    			// pseudo-versions. Note that we compare against semver.Canonical here
    			// instead of module.CanonicalVersion: revToRev strips "+incompatible"
    			// suffixes before looking up tags, so a tag like "v2.0.0+incompatible"
    			// would not resolve at all. (The Go version string "v2.0.0+incompatible"
    			// refers to the "v2.0.0" version tag, which we handle below.)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/386Ops.go

    //  - Unused portions of AuxInt (or the Val portion of ValAndOff) are
    //    filled by sign-extending the used portion.  Users of AuxInt which interpret
    //    AuxInt as unsigned (e.g. shifts) must be careful.
    
    // Suffixes encode the bit width of various instructions.
    // L (long word) = 32 bit
    // W (word)      = 16 bit
    // B (byte)      = 8 bit
    
    // copied from ../../x86/reg.go
    var regNames386 = []string{
    	"AX",
    	"CX",
    	"DX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top