Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for GetRpc (0.45 sec)

  1. src/syscall/syscall_linux_s390x.go

    	_, _, errno := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
    	return errno
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	getPC := debugInfo.GetPC
    
    	if ctxt.UseBASEntries {
    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    		listSym.WriteAddr(ctxt, listSym.Size, ctxt.Arch.PtrSize, startPC, 0)
    	}
    
    	// Re-read list, translating its address from block/value ID to PC.
    	for i := 0; i < len(list); {
    		begin := getPC(decodeValue(ctxt, readPtr(ctxt, list[i:])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_386.go

    	if e != 0 {
    		err = e
    	}
    	return
    }
    
    func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/anames.go

    	"SCASL",
    	"SCASQ",
    	"SCASW",
    	"SETCC",
    	"SETCS",
    	"SETEQ",
    	"SETGE",
    	"SETGT",
    	"SETHI",
    	"SETLE",
    	"SETLS",
    	"SETLT",
    	"SETMI",
    	"SETNE",
    	"SETOC",
    	"SETOS",
    	"SETPC",
    	"SETPL",
    	"SETPS",
    	"SFENCE",
    	"SGDT",
    	"SHA1MSG1",
    	"SHA1MSG2",
    	"SHA1NEXTE",
    	"SHA1RNDS4",
    	"SHA256MSG1",
    	"SHA256MSG2",
    	"SHA256RNDS2",
    	"SHLB",
    	"SHLL",
    	"SHLQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// The current stack frame that we're running deferred calls for.
    	sp unsafe.Pointer
    	lr uintptr
    	fp unsafe.Pointer
    
    	// retpc stores the PC where the panic should jump back to, if the
    	// function last returned by _panic.next() recovers the panic.
    	retpc uintptr
    
    	// Extra state for handling open-coded defers.
    	deferBitsPtr *uint8
    	slotsPtr     unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "SETNEF", argLength: 1, reg: flagsgpax, asm: "SETNE", clobberFlags: true}, // extract != condition from arg0
    		{name: "SETORD", argLength: 1, reg: flagsgp, asm: "SETPC"},                       // extract "ordered" (No Nan present) condition from arg0
    		{name: "SETNAN", argLength: 1, reg: flagsgp, asm: "SETPS"},                       // extract "unordered" (Nan present) condition from arg0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	MOVQ	CX, cx-(1*8+8)(SP)
    	MOVQ	AX, ax-(0*8+8)(SP)
    
    	// Save the argument frame size.
    	MOVQ	DX, frameSize-128(SP)
    
    	// Perform a safe-point check.
    	MOVQ	retpc-8(FP), AX	// Caller's PC
    	MOVQ	AX, 0(SP)
    	CALL	runtimeĀ·debugCallCheck(SB)
    	MOVQ	8(SP), AX
    	TESTQ	AX, AX
    	JZ	good
    	// The safety check failed. Put the reason string at the top
    	// of the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	SETOC DL                                // 0f91c2
    	SETOC R11                               // 410f91c3
    	SETPC (BX)                              // 0f9b03
    	SETPC (R11)                             // 410f9b03
    	SETPC DL                                // 0f9bc2
    	SETPC R11                               // 410f9bc3
    	SETPL (BX)                              // 0f9903
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETNEF", argLength: 1, reg: flagsgp, asm: "SETNE", clobberFlags: true, needIntTemp: true}, // extract != condition from arg0
    		{name: "SETORD", argLength: 1, reg: flagsgp, asm: "SETPC"},                                        // extract "ordered" (No Nan present) condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		// lists. At the moment, Prog.Pc is a sequence number; it's not a real PC
    		// until after assembly, so the translation needs to be deferred.
    		debugInfo.GetPC = func(b, v ssa.ID) int64 {
    			switch v {
    			case ssa.BlockStart.ID:
    				if b == f.Entry.ID {
    					return 0 // Start at the very beginning, at the assembler-generated prologue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top