Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for TopFrame (0.08 sec)

  1. doc/asm.html

    Do not insert instructions to allocate a stack frame and save/restore the return
    address, even if this is not a leaf function.
    Only valid on functions that declare a frame size of 0.
    </li>
    <li>
    <code>TOPFRAME</code> = 2048
    <br>
    (For <code>TEXT</code> items.)
    Function is the outermost frame of the call stack. Traceback should stop at this function.
    </li>
    </ul>
    
    <h3 id="special-instructions">Special instructions</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  2. src/runtime/proc.go

    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    // mstart is the entry-point for new Ms.
    // It is written in assembly, uses ABI0, is marked TOPFRAME, and calls mstart0.
    func mstart()
    
    // mstart0 is the Go entry-point for new Ms.
    // This must not split the stack because we may not even have stack
    // bounds set up yet.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top