- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for Assembler (0.29 sec)
-
src/cmd/asm/internal/asm/testdata/ppc64.s
// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically // and accept the same constants. MOVW $2147483648, R5 // 64058000 MOVWZ $-2147483648, R5 // 3ca08000 // TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 29 13:14:38 UTC 2024 - 51K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc_extra.s
MOVQ DR7, SI // 0f21fe // Test other movtab entries. PUSHQ GS // 0fa8 PUSHQ FS // 0fa0 POPQ FS // 0fa1 POPQ GS // 0fa9 // All instructions below semantically have unsigned operands, // but previous assembler permitted negative arguments. // This behavior is preserved for compatibility reasons. VPSHUFD $-79, X7, X7 // c5f970ffb1 RORXL $-1, (AX), DX // c4e37bf010ff RORXQ $-1, (AX), DX // c4e3fbf010ff
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 11 18:32:50 UTC 2023 - 57.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
* * ### Paths and Queries should decompose * * Neither of the built-in URL models offer direct access to path segments or query parameters. * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get * silently replaced with spaces? If a query parameter contains a '&', does that get escaped?
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
// very large or unaligned offset uses constant pool. // the encoding cannot be checked as the address of the constant pool is unknown. // here we only test that they can be assembled. MOVB R1, 0x1000000(R2) // MOVB R1, 16777216(R2) MOVB R1, 0x44332211(R2) // MOVB R1, 1144201745(R2) MOVH R1, 0x1001000(R2) // MOVH R1, 16781312(R2) MOVH R1, 0x44332211(R2) // MOVH R1, 1144201745(R2)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jul 24 18:45:14 UTC 2024 - 95.2K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
"unsigned long long": "ulonglong", // Used by Clang 14; issue 53013. } const signedDelta = 64 // String returns the current type representation. Format arguments // are assembled within this method so that any changes in mutable // values are taken into account. func (tr *TypeRepr) String() string { if len(tr.Repr) == 0 { return "" } if len(tr.FormatArgs) == 0 {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0)