Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for set_rip (0.32 sec)

  1. src/runtime/defs_netbsd_amd64.go

    	REG_RBX    = C._REG_RBX
    	REG_RAX    = C._REG_RAX
    	REG_GS     = C._REG_GS
    	REG_FS     = C._REG_FS
    	REG_ES     = C._REG_ES
    	REG_DS     = C._REG_DS
    	REG_TRAPNO = C._REG_TRAPNO
    	REG_ERR    = C._REG_ERR
    	REG_RIP    = C._REG_RIP
    	REG_CS     = C._REG_CS
    	REG_RFLAGS = C._REG_RFLAGS
    	REG_RSP    = C._REG_RSP
    	REG_SS     = C._REG_SS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1K bytes
    - Viewed (0)
  2. src/runtime/defs_windows_amd64.go

    // AMD64 does not have link register, so this returns 0.
    func (c *context) lr() uintptr      { return 0 }
    func (c *context) set_lr(x uintptr) {}
    
    func (c *context) set_ip(x uintptr) { c.rip = uint64(x) }
    func (c *context) set_sp(x uintptr) { c.rsp = uint64(x) }
    func (c *context) set_fp(x uintptr) { c.rbp = uint64(x) }
    
    func prepareContextForSigResume(c *context) {
    	c.r8 = c.rsp
    	c.r9 = c.rip
    }
    
    func dumpregs(r *context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/defs_windows_arm.go

    func (c *context) lr() uintptr { return uintptr(c.lrr) }
    
    func (c *context) set_ip(x uintptr) { c.pc = uint32(x) }
    func (c *context) set_sp(x uintptr) { c.spr = uint32(x) }
    func (c *context) set_lr(x uintptr) { c.lrr = uint32(x) }
    
    // arm does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.r0 = c.spr
    	c.r1 = c.pc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/runtime/signal_linux_s390x.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_r0(x uint64)      { c.regs().gregs[0] = x }
    func (c *sigctxt) set_r13(x uint64)     { c.regs().gregs[13] = x }
    func (c *sigctxt) set_link(x uint64)    { c.regs().gregs[14] = x }
    func (c *sigctxt) set_sp(x uint64)      { c.regs().gregs[15] = x }
    func (c *sigctxt) set_pc(x uint64)      { c.regs().psw_addr = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 20:42:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

                package org.gradle.api.plugins;
                class JavaPluginConvention {
                    String _prop;
                    String getProp() { return _prop; }
                    void setProp(String value) { _prop = value; }
                    String doSomething(String arg) { return arg; }
                }
            """)
            !GroovyObject.isAssignableFrom(original)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  6. src/runtime/signal_freebsd_arm.go

    func (c *sigctxt) sigaddr() uint32 { return uint32(c.info.si_addr) }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().__gregs[15] = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().__gregs[13] = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().__gregs[14] = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().__gregs[10] = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/signal_linux_arm.go

    func (c *sigctxt) sigaddr() uint32 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().pc = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().sp = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().lr = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().r10 = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/signal_openbsd_arm.go

    	return *(*uint32)(add(unsafe.Pointer(c.info), 16))
    }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().sc_usr_sp = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().sc_usr_lr = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().sc_r10 = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info.si_code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/signal_netbsd_arm.go

    func (c *sigctxt) sigaddr() uint32 { return uint32(c.info._reason) }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().__gregs[_REG_R15] = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().__gregs[_REG_R13] = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().__gregs[_REG_R14] = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().__gregs[_REG_R10] = x }
    
    func (c *sigctxt) set_sigcode(x uint32) { c.info._code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/ExceptionAttributionIntegrationTest.groovy

                        p.extensions.create("thing", ExtensionImpl)
                    }
                }
    
                class ExtensionImpl {
                    String getProp() { return "value" }
                    void setProp(String value) {
                        throw new RuntimeException("broken")
                    }
                }
            """
            file("buildSrc/src/main/resources/META-INF/gradle-plugins/test.broken.properties") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 07 06:23:22 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top