Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for s390 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    const (
    	SYS_LOG                             = 0x17  // 23
    	SYS_COSH                            = 0x18  // 24
    	SYS_TANH                            = 0x19  // 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on s390x")
    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	p := cursym.Func().Text
    	if p == nil || p.Link == nil { // handle external functions and ELF section symbols
    		return
    	}
    
    	if oprange[AORW&obj.AMask] == nil {
    		ctxt.Diag("s390x ops not initialized, call s390x.buildop first")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    }
    
    func (i R_RISCV) String() string   { return stringName(uint32(i), rriscvStrings, false) }
    func (i R_RISCV) GoString() string { return stringName(uint32(i), rriscvStrings, true) }
    
    // Relocation types for s390x processors.
    type R_390 int
    
    const (
    	R_390_NONE        R_390 = 0
    	R_390_8           R_390 = 1
    	R_390_12          R_390 = 2
    	R_390_16          R_390 = 3
    	R_390_32          R_390 = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		}
    		return []string{"-m64"}
    	case "arm64":
    		if cfg.Goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390x":
    		return []string{"-m64", "-march=z196"}
    	case "mips64", "mips64le":
    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-gc-stress.test

    HeapAlloc dt=456 heapalloc_value=195001048
    GCMarkAssistBegin dt=18 stack=3
    GoBlock dt=22 reason_string=13 stack=11
    GoStart dt=23 g=113 g_seq=10
    GCMarkAssistEnd dt=3
    HeapAlloc dt=54 heapalloc_value=195099352
    GoStop dt=6390 reason_string=16 stack=6
    GoStart dt=23 g=113 g_seq=11
    GCMarkAssistBegin dt=6 stack=3
    GoBlock dt=21 reason_string=10 stack=18
    GoStart dt=33 g=101 g_seq=6
    GCMarkAssistEnd dt=6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top