Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for CR3 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	DS:   "DS",
    	ES:   "ES",
    	FS:   "FS",
    	GS:   "GS",
    	GDTR: "GDTR",
    	IDTR: "IDTR",
    	LDTR: "LDTR",
    	MSW:  "MSW",
    	TASK: "TASK",
    	CR0:  "CR0",
    	CR1:  "CR1",
    	CR2:  "CR2",
    	CR3:  "CR3",
    	CR4:  "CR4",
    	CR5:  "CR5",
    	CR6:  "CR6",
    	CR7:  "CR7",
    	CR8:  "CR8",
    	CR9:  "CR9",
    	CR10: "CR10",
    	CR11: "CR11",
    	CR12: "CR12",
    	CR13: "CR13",
    	CR14: "CR14",
    	CR15: "CR15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64error.s

    	MOVQ CR2, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR3, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR4, (AX)                  // ERROR "invalid instruction"
    	MOVQ CR8, (AX)                  // ERROR "invalid instruction"
    	MOVQ (AX), CR0                  // ERROR "invalid instruction"
    	MOVQ (AX), CR2                  // ERROR "invalid instruction"
    	MOVQ (AX), CR3                  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CMPW R3, $0, CR2                // CMPW R3,CR2,$0       // 2d030000
    	CMPW R3, $-32768, CR2           // CMPW R3,CR2,$-32768  // 2d038000
    	CMPWU R3, $0, CR3               // CMPWU R3,CR3,$0      // 29830000
    	CMPWU R3, $0x8008, CR3          // CMPWU R3,CR3,$32776  // 29838008
    
    	CMPEQB R3,R4,CR6                // 7f0321c0
    	CMPB R3,R4,R4                   // 7c6423f8
    
    	ADD R3, R4                      // 7c841a14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_ppc64x.s

    	DCBT	(R6)		// cache hint
    
    	SRD	$6,R9,R14	// There is at least one iteration.
    	MOVD	R14,CTR
    	ANDCC   $63,R9,R9
    	CMP	R9,$16,CR1	// Do setup for tail check early on.
    	CMP	R9,$32,CR2
    	CMP	R9,$48,CR3
    	ADD	$-16,R9,R9
    
    	MOVD	$32,R11		// set offsets to load into vector
    	MOVD	$48,R12		// set offsets to load into vector
    
    	PCALIGN	$16
    cmp64_loop:
    	LXVD2X	(R5)(R0),V3	// load bytes of A at offset 0 into vector
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	DS:   "DS",
    	ES:   "ES",
    	FS:   "FS",
    	GS:   "GS",
    	GDTR: "GDTR",
    	IDTR: "IDTR",
    	LDTR: "LDTR",
    	MSW:  "MSW",
    	TASK: "TASK",
    	CR0:  "CR0",
    	CR1:  "CR1",
    	CR2:  "CR2",
    	CR3:  "CR3",
    	CR4:  "CR4",
    	CR5:  "CR5",
    	CR6:  "CR6",
    	CR7:  "CR7",
    	CR8:  "CR8",
    	CR9:  "CR9",
    	CR10: "CR10",
    	CR11: "CR11",
    	CR12: "CR12",
    	CR13: "CR13",
    	CR14: "CR14",
    	CR15: "CR15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/crypto/aes/asm_ppc64x.s

    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), R7
    	LVX	(R7), ESPERM   // Permute value for P8_ macros.
    #endif
    
    	// Set CR{1,2,3}EQ to hold the key size information.
    	CMPU	R6, $10, CR1
    	CMPU	R6, $12, CR2
    	CMPU	R6, $14, CR3
    
    	MOVD	$16, R6
    	MOVD	$32, R7
    	MOVD	$48, R8
    	MOVD	$64, R9
    	MOVD	$80, R10
    	MOVD	$96, R11
    	MOVD	$112, R12
    
    	// Load text in BE order
    	P8_LXVB16X(R4, R0, V0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/runtime/memmove_ppc64x.s

    	CMP	LEN, $16
    	BGT	mcopy
    	SLD	$56, LEN, TMP
    	LXVL	SRC, TMP, V0
    	STXVL	V0, TGT, TMP
    	RET
    #endif
    mcopy:
    	ANDCC	$7, LEN, BYTES	// R7: bytes to copy
    	SRD	$3, LEN, DWORDS	// R6: double words to copy
    	MOVFL	CR0, CR3	// save CR from ANDCC
    	CMP	DWORDS, $0, CR1	// CR1[EQ] set if no double words to copy
    
    	// Determine overlap by subtracting dest - src and comparing against the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	DS:   "%ds",
    	ES:   "%es",
    	FS:   "%fs",
    	GS:   "%gs",
    	GDTR: "%gdtr",
    	IDTR: "%idtr",
    	LDTR: "%ldtr",
    	MSW:  "%msw",
    	TASK: "%task",
    	CR0:  "%cr0",
    	CR1:  "%cr1",
    	CR2:  "%cr2",
    	CR3:  "%cr3",
    	CR4:  "%cr4",
    	CR5:  "%cr5",
    	CR6:  "%cr6",
    	CR7:  "%cr7",
    	CR8:  "%cr8",
    	CR9:  "%cr9",
    	CR10: "%cr10",
    	CR11: "%cr11",
    	CR12: "%cr12",
    	CR13: "%cr13",
    	CR14: "%cr14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	VCMPGTSQCC V1, V2, V3                   // 10611787
    	VCMPGTUQ V1, V2, V3                     // 10611287
    	VCMPGTUQCC V1, V2, V3                   // 10611687
    	VCMPSQ V1, V2, CR2                      // 11011141
    	VCMPUQ V1, V2, CR3                      // 11811101
    	VCNTMBB V1, $1, R3                      // 10790e42
    	VCNTMBD V1, $1, R3                      // 107f0e42
    	VCNTMBH V1, $1, R3                      // 107b0e42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	CBAUDEX                          = 0x1000
    	CIBAUD                           = 0x100f0000
    	CLOCAL                           = 0x800
    	CR1                              = 0x200
    	CR2                              = 0x400
    	CR3                              = 0x600
    	CRDLY                            = 0x600
    	CREAD                            = 0x80
    	CS6                              = 0x10
    	CS7                              = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top