Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for r22 (0.03 sec)

  1. src/runtime/signal_ppc64x.go

    	print("r17  ", hex(c.r17()), "\n")
    	print("r18  ", hex(c.r18()), "\t")
    	print("r19  ", hex(c.r19()), "\n")
    	print("r20  ", hex(c.r20()), "\t")
    	print("r21  ", hex(c.r21()), "\n")
    	print("r22  ", hex(c.r22()), "\t")
    	print("r23  ", hex(c.r23()), "\n")
    	print("r24  ", hex(c.r24()), "\t")
    	print("r25  ", hex(c.r25()), "\n")
    	print("r26  ", hex(c.r26()), "\t")
    	print("r27  ", hex(c.r27()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_mipsx.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips || mipsle
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define	REGCTXT	R22
    
    // memequal(a, b unsafe.Pointer, size uintptr) bool
    TEXT runtime·memequal(SB),NOSPLIT,$0-13
    	MOVW	a+0(FP), R1
    	MOVW	b+4(FP), R2
    	BEQ	R1, R2, eq
    	MOVW	size+8(FP), R3
    	ADDU	R1, R3, R4
    loop:
    	BNE	R1, R4, test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/operand_test.go

    	{"R12", "R12"},
    	{"R13", "R13"},
    	{"R14", "R14"},
    	{"R15", "R15"},
    	{"R16", "R16"},
    	{"R17", "R17"},
    	{"R18", "R18"},
    	{"R19", "R19"},
    	{"R2", "R2"},
    	{"R20", "R20"},
    	{"R21", "R21"},
    	{"R22", "R22"},
    	{"R23", "R23"},
    	{"R24", "R24"},
    	{"R25", "R25"},
    	{"R26", "R26"},
    	{"R27", "R27"},
    	{"R28", "R28"},
    	{"R29", "R29"},
    	{"R3", "R3"},
    	{"R31", "R31"},
    	{"R4", "R4"},
    	{"R5", "R5"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		// Scheduler ensures LoweredGetClosurePtr occurs only in entry block,
    		// and sorts it to the very beginning of the block to prevent other
    		// use of R22 (mips.REGCTXT, the closure pointer)
    		{name: "LoweredGetClosurePtr", reg: regInfo{outputs: []regMask{buildReg("R22")}}, zeroWidth: true},
    
    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. src/runtime/cgo/abi_ppc64x.h

    	MOVD	R16, (offset+8*2)(R1)  \
    	MOVD	R17, (offset+8*3)(R1)  \
    	MOVD	R18, (offset+8*4)(R1)  \
    	MOVD	R19, (offset+8*5)(R1)  \
    	MOVD	R20, (offset+8*6)(R1)  \
    	MOVD	R21, (offset+8*7)(R1)  \
    	MOVD	R22, (offset+8*8)(R1)  \
    	MOVD	R23, (offset+8*9)(R1)  \
    	MOVD	R24, (offset+8*10)(R1) \
    	MOVD	R25, (offset+8*11)(R1) \
    	MOVD	R26, (offset+8*12)(R1) \
    	MOVD	R27, (offset+8*13)(R1) \
    	MOVD	R28, (offset+8*14)(R1) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/runtime/asm_ppc64x.s

    	MOVD	R21, 216(R1)
    	MOVD	R22, 224(R1)
    	MOVD	R23, 232(R1)
    	MOVD	R24, 240(R1)
    	MOVD	R25, 248(R1)
    	MOVD	R26, 256(R1)
    	MOVD	R27, 264(R1)
    	MOVD	R28, 272(R1)
    	MOVD	R29, 280(R1)
    	MOVD	g, 288(R1)
    	MOVD	LR, R31
    	MOVD	R31, 32(R1)
    	CALL	runtime·debugCallCheck(SB)
    	MOVD	40(R1), R22
    	XOR	R0, R0
    	CMP	R22, $0
    	BEQ	good
    	MOVD	48(R1), R22
    	MOVD	$8, R20
    	TW	$31, R0, R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. src/internal/bytealg/equal_mips64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "textflag.h"
    
    #define	REGCTXT	R22
    
    // memequal(a, b unsafe.Pointer, size uintptr) bool
    TEXT runtime·memequal(SB),NOSPLIT|NOFRAME,$0-25
    	MOVV	a+0(FP), R1
    	MOVV	b+8(FP), R2
    	BEQ	R1, R2, eq
    	MOVV	size+16(FP), R3
    	ADDV	R1, R3, R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_ppc64le.s

    	SLD	$2,R18,R18	// p[6]*4
    	MOVWZ	(R10)(R17),R21	// tab[0][p[7]]
    	ADD	$1024,R10,R10	// tab[1]
    	RLDICL	$56,R9,$56,R19	// p[5]
    	SLD	$2,R19,R19	// p[5]*4:1
    	MOVWZ	(R10)(R18),R22	// tab[1][p[6]]
    	ADD	$1024,R10,R10	// tab[2]
    	XOR	R21,R22,R21	// xor done R22
    	CLRLSLDI $56,R9,$2,R20
    	MOVWZ	(R10)(R19),R23	// tab[2][p[5]]
    	ADD	$1024,R10,R10	// &tab[3]
    	XOR	R21,R23,R21	// xor done R23
    	MOVWZ	(R10)(R20),R24	// tab[3][p[4]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r22
    
    import org.gradle.integtests.fixtures.executer.GradleBackedArtifactBuilder
    import org.gradle.integtests.fixtures.executer.NoDaemonGradleExecuter
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/ClientShutdownCrossVersionSpec.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r22
    
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top