Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for ReadMode (0.12 sec)

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

    			for j := goobj.CUFileIndex(0); j < max; j++ {
    				fileOffset, ok := fileOffsets[cu.FileTable[j]]
    				if !ok {
    					// We're looping through all possible file indices. It's possible a file's
    					// been deadcode eliminated, and although it's a valid file in the CU, it's
    					// not needed in this binary. When that happens, use an invalid offset.
    					fileOffset = ^uint32(0)
    				}
    				off = sb.SetUint32(ctxt.Arch, off, fileOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (SLTIU [x] (ORI  [y] _)) && y >= 0 && uint64(y) >= uint64(x) => (MOVDconst [0])
    
    // SLT/SLTU with known outcomes.
    (SLT  x x) => (MOVDconst [0])
    (SLTU x x) => (MOVDconst [0])
    
    // Deadcode for LoweredMuluhilo
    (Select0 m:(LoweredMuluhilo x y)) && m.Uses == 1 => (MULHU x y)
    (Select1 m:(LoweredMuluhilo x y)) && m.Uses == 1 => (MUL x y)
    
    (FADD(S|D) a (FMUL(S|D) x y)) && a.Block.Func.useFMA(v) => (FMADD(S|D) x y a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    	Reachparent []Sym
    
    	// CgoExports records cgo-exported symbols by SymName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    				sb2.AddUint8(1)
    			} else {
    				sb2.AddUint8(0)
    			}
    		}
    
    		// Set runtime.disableMemoryProfiling bool if
    		// runtime.MemProfile is not retained in the binary after
    		// deadcode (and we're not dynamically linking).
    		memProfile := ctxt.loader.Lookup("runtime.MemProfile", abiInternalVer)
    		if memProfile != 0 && !ctxt.loader.AttrReachable(memProfile) && !ctxt.DynlinkingGo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top