Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 179 for NoFrame (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    //       doc: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_3.1.0/com.ibm.zos.v3r1.bpxb100/bpx2cr_List_of_offsets.htm
    //
    // func bpxcall(plist []unsafe.Pointer, bpx_offset int64)
    
    TEXT ·bpxcall(SB), NOSPLIT|NOFRAME, $0
    	MOVD  plist_base+0(FP), R1  // r1 points to plist
    	MOVD  bpx_offset+24(FP), R2 // r2 offset to BPX vector table
    	MOVD  R14, R7               // save r14
    	MOVD  R15, R8               // save r15
    	MOVWZ 16(R0), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400/asm_arm64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Save link register
    	MOVD	R30, R9
    
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), RSP
    
    	// Ask signaller to setgid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 760 bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat_arm.s

    TEXT ·addMulVVW1536(SB), $0-16
    	MOVW	$48, R5
    	JMP		addMulVVWx(SB)
    
    // func addMulVVW2048(z, x *uint, y uint) (c uint)
    TEXT ·addMulVVW2048(SB), $0-16
    	MOVW	$64, R5
    	JMP		addMulVVWx(SB)
    
    TEXT addMulVVWx(SB), NOFRAME|NOSPLIT, $0
    	MOVW	$0, R0
    	MOVW	z+0(FP), R1
    	MOVW	x+4(FP), R2
    	MOVW	y+8(FP), R3
    	ADD	R5<<2, R1, R5
    	MOVW	$0, R4
    	B E9
    
    L9:	MOVW.P	4(R2), R6
    	MULLU	R6, R3, (R7, R6)
    	ADD.S	R4, R6
    	ADC	R0, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 900 bytes
    - Viewed (0)
  4. src/runtime/sys_linux_arm.s

    	MOVW	flags+0(FP), R1
    	MOVW	$SYS_pipe2, R7
    	SWI	$0
    	MOVW	R0, errno+12(FP)
    	RET
    
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0
    	MOVW	code+0(FP), R0
    	MOVW	$SYS_exit_group, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1002, R1
    	MOVW	R0, (R1)	// fail hard
    
    TEXT exit1<>(SB),NOSPLIT|NOFRAME,$0
    	MOVW	code+0(FP), R0
    	MOVW	$SYS_exit, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1003, R1
    	MOVW	R0, (R1)	// fail hard
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/preempt_arm.s

    // Code generated by mkpreempt.go; DO NOT EDIT.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·asyncPreempt(SB),NOSPLIT|NOFRAME,$0-0
    	MOVW.W R14, -188(R13)
    	MOVW R0, 4(R13)
    	MOVW R1, 8(R13)
    	MOVW R2, 12(R13)
    	MOVW R3, 16(R13)
    	MOVW R4, 20(R13)
    	MOVW R5, 24(R13)
    	MOVW R6, 28(R13)
    	MOVW R7, 32(R13)
    	MOVW R8, 36(R13)
    	MOVW R9, 40(R13)
    	MOVW R11, 44(R13)
    	MOVW R12, 48(R13)
    	MOVW CPSR, R0
    	MOVW R0, 52(R13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/runtime/textflag.h

    // thread local base to the thread local storage in this variable.
    #define TLSBSS	256
    // Do not insert instructions to allocate a stack frame for this function.
    // Only valid on functions that declare a frame size of 0.
    #define NOFRAME 512
    // Function can call reflect.Type.Method or reflect.Type.MethodByName.
    #define REFLECTMETHOD 1024
    // Function is the outermost frame of the call stack. Call stack unwinders
    // should stop at this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_mips64x.s

    	JMP	cmpbody<>(SB)
    
    // On entry:
    // R1 length of a
    // R2 length of b
    // R3 points to the start of a
    // R4 points to the start of b
    // R9 points to the return value (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	R3, R4, samebytes // same start of a and b
    
    	SGTU	R1, R2, R7
    	BNE	R0, R7, r2_lt_r1
    	MOVV	R1, R10
    	JMP	entry
    r2_lt_r1:
    	MOVV	R2, R10	// R10 is min(R1, R2)
    entry:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. src/runtime/cgo/asm_loong64.s

    // func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	/*
    	 * We still need to save all callee save register as before, and then
    	 * push 3 args for fn (R4, R5, R7), skipping R6.
    	 * Also note that at procedure entry in gc world, 8(R29) will be the
    	 *  first arg.
    	 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/internal/bytealg/compare_loong64.s

    	JMP	cmpbody<>(SB)
    
    // On entry:
    // R5 length of a
    // R7 length of b
    // R4 points to the start of a
    // R6 points to the start of b
    // R13 points to the return value (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0
    	BEQ	R4, R6, samebytes // same start of a and b
    
    	SGTU	R5, R7, R9
    	BNE	R0, R9, r2_lt_r1
    	MOVV	R5, R14
    	JMP	entry
    r2_lt_r1:
    	MOVV	R7, R14	// R14 is min(R4, R5)
    entry:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_arm64.s

    // avoids loading R0-R4 twice and uses LDP and STP.
    //
    // See https://golang.org/issues/43145 for the main compiler issue.
    //
    // func carryPropagate(v *Element)
    TEXT ·carryPropagate(SB),NOFRAME|NOSPLIT,$0-8
    	MOVD v+0(FP), R20
    
    	LDP 0(R20), (R0, R1)
    	LDP 16(R20), (R2, R3)
    	MOVD 32(R20), R4
    
    	AND $0x7ffffffffffff, R0, R10
    	AND $0x7ffffffffffff, R1, R11
    	AND $0x7ffffffffffff, R2, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top