Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _rt0_ppc64_aix_lib (0.24 sec)

  1. src/runtime/cgo/gcc_aix_ppc64.c

     * adding special code in cmd/link.
     * However, it will be called for every Go programs which has cgo.
     * Inside _rt0_ppc64_aix_lib(), runtime.isarchive is checked in order
     * to know if this program is a c-archive or a simple cgo program.
     * If it's not set, _rt0_ppc64_ax_lib() returns directly.
     */
    static void libinit() {
    	_rt0_ppc64_aix_lib();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/runtime/cgo/callbacks_aix.go

    package cgo
    
    // These functions must be exported in order to perform
    // longcall on cgo programs (cf gcc_aix_ppc64.c).
    //
    //go:cgo_export_static __cgo_topofstack
    //go:cgo_export_static runtime.rt0_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 402 bytes
    - Viewed (0)
  3. src/runtime/rt0_aix_ppc64.s

    	MOVD R14, R3 // argc
    	MOVD R15, R4 // argv
    	BL _main(SB)
    
    
    DEFINE_PPC64X_FUNCDESC(main, _main)
    TEXT _main(SB),NOSPLIT,$-8
    	MOVD $runtime·rt0_go(SB), R12
    	MOVD R12, CTR
    	BR (CTR)
    
    
    TEXT _rt0_ppc64_aix_lib(SB),NOSPLIT,$-8
    	// Start with standard C stack frame layout and linkage.
    	MOVD	LR, R0
    	MOVD	R0, 16(R1) // Save LR in caller's frame.
    	MOVW	CR, R0	   // Save CR in caller's frame
    	MOVD	R0, 8(R1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		sym, err := f.ImportedSymbols()
    		if err != nil {
    			fatalf("cannot load imported symbols from XCOFF file %s: %v", obj, err)
    		}
    		for _, s := range sym {
    			if s.Name == "runtime_rt0_go" || s.Name == "_rt0_ppc64_aix_lib" {
    				// These symbols are imported by runtime/cgo but
    				// must not be added to _cgo_import.go as there are
    				// Go symbols.
    				continue
    			}
    			checkImportSymName(s.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top