Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for asmb2 (0.06 sec)

  1. src/cmd/link/internal/ld/main.go

    		if err := ctxt.Out.Mmap(filesize); err != nil {
    			Exitf("mapping output file failed: %v", err)
    		}
    	}
    	// asmb will redirect symbols to the output file mmap, and relocations
    	// will be applied directly there.
    	bench.Start("Asmb")
    	asmb(ctxt)
    
    	exitIfErrors()
    
    	// Generate additional symbols for the native symbol table just prior
    	// to code generation.
    	bench.Start("GenSymsLate")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/wasm/asm.go

    		data := ld.DatblkBytes(ctxt, int64(sect.Vaddr), int64(sect.Length))
    		dataSects[i] = wasmDataSect{sect, data}
    	}
    }
    
    // asmb writes the final WebAssembly module binary.
    // Spec: https://webassembly.github.io/spec/core/binary/modules.html
    func asmb2(ctxt *ld.Link, ldr *loader.Loader) {
    	types := []*wasmFuncType{
    		// For normal Go functions, the single parameter is PC_B,
    		// the return value is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	// specific work like setting up the elf headers/dynamic relocations, etc.
    	// The phases are called "Asmb" and "Asmb2". Asmb2 needs to be defined for
    	// every architecture, but only if architecture has an Asmb function will
    	// it be used for assembly.  Otherwise a generic assembly Asmb function is
    	// used.
    	Asmb  func(*Link, *loader.Loader)
    	Asmb2 func(*Link, *loader.Loader)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			}
    			target.Arch.ByteOrder.PutUint32(P[off:], uint32(o))
    		case 8:
    			target.Arch.ByteOrder.PutUint64(P[off:], uint64(o))
    		}
    	}
    	if target.IsExternal() {
    		// We'll stream out the external relocations in asmb2 (e.g. elfrelocsect)
    		// and we only need the count here.
    		atomic.AddUint32(&ldr.SymSect(s).Relcount, uint32(nExtReloc))
    	}
    }
    
    // Convert a Go relocation to an external relocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

    import jcifs.internal.smb2.ServerMessageBlock2Request;
    import jcifs.internal.smb2.ServerMessageBlock2Response;
    import jcifs.internal.smb2.Smb2Constants;
    import jcifs.internal.smb2.create.Smb2CloseRequest;
    import jcifs.internal.smb2.create.Smb2CloseResponse;
    import jcifs.internal.smb2.create.Smb2CreateRequest;
    import jcifs.internal.smb2.create.Smb2CreateResponse;
    import jcifs.internal.smb2.info.Smb2QueryInfoRequest;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. src/cmd/link/internal/arm64/asm.go

    			// statically in the 'reloc' phase, or externally
    			// linking, in which case the relocation will be
    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    
    		if target.IsElf() {
    			// Generate R_AARCH64_RELATIVE relocations for best
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    			// statically in the 'reloc' phase, or externally
    			// linking, in which case the relocation will be
    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    		// Generate R_PPC64_RELATIVE relocations for best
    		// efficiency in the dynamic linker.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top