Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for STCK (0.24 sec)

  1. src/cmd/internal/obj/s390x/anames.go

    	"EXRL",
    	"LARL",
    	"LA",
    	"LAY",
    	"LAA",
    	"LAAG",
    	"LAAL",
    	"LAALG",
    	"LAN",
    	"LANG",
    	"LAX",
    	"LAXG",
    	"LAO",
    	"LAOG",
    	"LMY",
    	"LMG",
    	"STMY",
    	"STMG",
    	"STCK",
    	"STCKC",
    	"STCKE",
    	"STCKF",
    	"CLEAR",
    	"KM",
    	"KMC",
    	"KLMD",
    	"KIMD",
    	"KDSA",
    	"KMA",
    	"KMCTR",
    	"VA",
    	"VAB",
    	"VAH",
    	"VAF",
    	"VAG",
    	"VAQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/runtime/asm_s390x.s

    	// The TOD clock on s390 counts from the year 1900 in ~250ps intervals.
    	// This means that since about 1972 the msb has been set, making the
    	// result of a call to STORE CLOCK (stck) a negative number.
    	// We clear the msb to make it positive.
    	STCK	ret+0(FP)      // serialises before and after call
    	MOVD	ret+0(FP), R3  // R3 will wrap to 0 in the year 2043
    	SLD	$1, R3
    	SRD	$1, R3
    	MOVD	R3, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top