Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for qmove (0.46 sec)

  1. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    	XOR	$341, R1, R23	// 38370155
    	OR	$254, R25, R13	// 372d00fe
    //
    // move immediate: macro for lui+or, addi, addis, and other combinations
    //
    //	LMOVW imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVW	$1, R1
    	MOVV	$1, R1
    
    //	LMOVW ximm ',' rreg
    //	{
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (linux-386), const IN_MASK_ADD = 536870912
    pkg syscall (linux-386), const IN_MODIFY = 2
    pkg syscall (linux-386), const IN_MOVE = 192
    pkg syscall (linux-386), const IN_MOVED_FROM = 64
    pkg syscall (linux-386), const IN_MOVED_TO = 128
    pkg syscall (linux-386), const IN_MOVE_SELF = 2048
    pkg syscall (linux-386), const IN_NONBLOCK = 2048
    pkg syscall (linux-386), const IN_ONESHOT = 2147483648
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FDIVS	F1, F0, F2				// 53011018
    	FMINS	F1, F0, F2				// 53011028
    	FMAXS	F1, F0, F2				// 53111028
    	FSQRTS	F0, F1					// d3000058
    
    	// 11.7: Single-Precision Floating-Point Conversion and Move Instructions
    	FCVTWS	F0, X5					// d31200c0
    	FCVTWS.RNE	F0, X5				// d30200c0
    	FCVTWS.RTZ	F0, X5				// d31200c0
    	FCVTWS.RDN	F0, X5				// d32200c0
    	FCVTWS.RUP	F0, X5				// d33200c0
    	FCVTWS.RMM	F0, X5				// d34200c0
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const IN_MODIFY ideal-int
    pkg syscall (linux-arm-cgo), const IN_MOVE ideal-int
    pkg syscall (linux-arm-cgo), const IN_MOVED_FROM ideal-int
    pkg syscall (linux-arm-cgo), const IN_MOVED_TO ideal-int
    pkg syscall (linux-arm-cgo), const IN_MOVE_SELF ideal-int
    pkg syscall (linux-arm-cgo), const IN_NONBLOCK ideal-int
    pkg syscall (linux-arm-cgo), const IN_ONESHOT ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	TST	R1>>22, R2                          // 5f5841ea
    	TST	R1<<33, R2                          // 5f8401ea
    	TST	$0x22220000, R3                     // TST $572653568, R3           // 5b44a4d27f001bea
    
    // move an immediate to a Rn.
    	MOVD	$0x3fffffffc000, R0           // MOVD	$70368744161280, R0         // e07f72b2
    	MOVW	$1000000, R4                  // 04488852e401a072
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (linux-386), const IN_MASK_ADD ideal-int
    pkg syscall (linux-386), const IN_MODIFY ideal-int
    pkg syscall (linux-386), const IN_MOVE ideal-int
    pkg syscall (linux-386), const IN_MOVED_FROM ideal-int
    pkg syscall (linux-386), const IN_MOVED_TO ideal-int
    pkg syscall (linux-386), const IN_MOVE_SELF ideal-int
    pkg syscall (linux-386), const IN_NONBLOCK ideal-int
    pkg syscall (linux-386), const IN_ONESHOT ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. doc/asm.html

    what the toolchain actually generates for that operation might
    not be a move instruction at all, perhaps a clear or load.
    Or it might correspond exactly to the machine instruction with that name.
    In general, machine-specific operations tend to appear as themselves, while more general concepts like
    memory move and subroutine call and return are more abstract.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/ppc64.s

    // (Rx)(R0) is equivalent to (Rx+R0)
    // In case of base+displacement mode instructions if
    // the offset is 0, usage of (Rx) is equivalent to 0(Rx)
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// move constants
    	MOVD $1, R3                     // 38600001
    	MOVD $-1, R4                    // 3880ffff
    	MOVD $65535, R5                 // 6005ffff
    	MOVD $65536, R6                 // 3cc00001
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/mips.s

    	//		outcode(int($1), &$2, 0, &nullgen);
    	//	}
    	NOP	$4
    
    	//
    	// special
    	//
    	SYSCALL
    	BREAK
    	SYNC
    
    	//
    	// conditional move on zero/nonzero gp value
    	//
    	CMOVN	R1, R2, R3
    	CMOVZ	R1, R2, R3
    
    	//
    	// conditional move on fp false/true
    	//
    	CMOVF	R1, R2
    	CMOVT	R1, R2
    
    	//
    	// conditional traps
    	//
    	TEQ	$1, R1, R2
    	TEQ	$1, R1
    
    
    	//
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  10. doc/go_mem.html

    </p>
    
    <p>
    Not introducing data races also means not assuming that loops terminate.
    For example, a compiler must in general not move the accesses to <code>*p</code> or <code>*q</code>
    ahead of the loop in this program:
    </p>
    
    <pre>
    n := 0
    for e := list; e != nil; e = e.next {
    	n++
    }
    i := *p
    *q = 1
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top