- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for s390x (0.01 sec)
-
src/cmd/asm/internal/asm/testdata/s390x.s
Michael Munday <******@****.***> 1751054738 +0100
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
// Note that there is no list of names as there is for x86. for i := s390x.REG_R0; i <= s390x.REG_R15; i++ { register[obj.Rconv(i)] = int16(i) } for i := s390x.REG_F0; i <= s390x.REG_F15; i++ { register[obj.Rconv(i)] = int16(i) } for i := s390x.REG_V0; i <= s390x.REG_V31; i++ { register[obj.Rconv(i)] = int16(i) } for i := s390x.REG_AR0; i <= s390x.REG_AR15; i++ { register[obj.Rconv(i)] = int16(i) }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 07 02:20:14 UTC 2024 - 21.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
// 3-operand jumps. // First two must be registers target = &a[2] prog.From = a[0] prog.Reg = p.getRegister(prog, op, &a[1]) break } if p.arch.Family == sys.S390X { // 3-operand jumps. target = &a[2] prog.From = a[0] if a[1].Reg != 0 { // Compare two registers and jump. prog.Reg = p.getRegister(prog, op, &a[1]) } else {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/endtoend_test.go
testErrors(t, "riscv64", "riscv64error") } func TestRISCVValidation(t *testing.T) { testErrors(t, "riscv64", "riscv64validation") } func TestS390XEndToEnd(t *testing.T) { testEndToEnd(t, "s390x", "s390x")
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Mar 26 01:02:50 UTC 2025 - 11.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
} func TestLOONG64OperandParser(t *testing.T) { parser := newParser("loong64") testOperandParser(t, parser, loong64OperandTests) } func TestS390XOperandParser(t *testing.T) { parser := newParser("s390x") testOperandParser(t, parser, s390xOperandTests) } func TestFuncAddress(t *testing.T) { type subtest struct { arch string tests []operandTest } for _, sub := range []subtest{
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
cmd/testdata/xl-meta-merge.zip
nio/release/linux-amd64/minio> | | 64-bit ARM | <https://dl.min.io/server/minio/release/linux-arm64/minio> | | 64-bit PowerPC LE (ppc64le) | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> | | IBM Z-Series (S390X) | <https://dl.min.io/server/minio/release/linux-s390x/minio> | The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Mar 08 17:50:48 UTC 2024 - 30.2K bytes - Viewed (0) -
doc/asm.html
<p> This assembler is used by GOARCH values ppc64 and ppc64le. </p> <p> Reference: <a href="/pkg/cmd/internal/obj/ppc64">Go PPC64 Assembly Instructions Reference Manual</a> </p> <h3 id="s390x">IBM z/Architecture, a.k.a. s390x</h3> <p> The registers <code>R10</code> and <code>R11</code> are reserved. The assembler uses them to hold temporary values when assembling some instructions. </p> <p>
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
configure.py
def is_macos(): return platform.system() == 'Darwin' def is_ppc64le(): return platform.machine() == 'ppc64le' def is_s390x(): return platform.machine() == 's390x' def is_cygwin(): return platform.system().startswith('CYGWIN_NT') def get_input(question): try: try: answer = raw_input(question) except NameError:
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (0)