Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Night (4.36 sec)

  1. src/cmd/link/internal/arm64/asm.go

    			}
    			rela.AddAddrPlus(target.Arch, targ, int64(r.Add()))
    			// Not mark r done here. So we still apply it statically,
    			// so in the file content we'll also have the right offset
    			// to the relocation target. So it can be examined statically
    			// (e.g. go version).
    			return true
    		}
    
    		if target.IsDarwin() {
    			// Mach-O relocations are a royal pain to lay out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    						// All local symbols share the same TOC pointer. This caller has a valid TOC
    						// pointer in R2. Calls into a Go symbol preserve R2. No call stub is needed.
    					} else {
    						// This caller has a TOC pointer. The callee might clobber it. R2 needs to be saved
    						// and restored.
    						if sym, firstUse := genstub(ctxt, ldr, r, i, s, STUB_TOC); firstUse {
    							stubs = append(stubs, sym)
    						}
    					}
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    			// doesn't fit" errors from the external linker. To deal
    			// with this, ignore the addend when performing the
    			// distance calculation (this assumes that we're only
    			// handling backward jumps; ideally we might want to check
    			// both with and without the addend).
    			if ctxt.IsExternal() {
    				t = (ldr.SymValue(rs) - (ldr.SymValue(s) + int64(r.Off()))) / 4
    			} else {
    				// r.Add is the instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    	// Both frameSize and argSize must be simple integers; only frameSize
    	// can be negative.
    	// The "-argSize" may be missing; if so, set it to objabi.ArgsSizeUnknown.
    	// Parse left to right.
    	op := operands[next]
    	if len(op) < 2 || op[0].ScanToken != '$' {
    		p.errorf("TEXT %s: frame size must be an immediate constant", name)
    		return
    	}
    	op = op[1:]
    	negative := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/amd64/asm.go

    			}
    			rela.AddAddrPlus(target.Arch, targ, int64(r.Add()))
    			// Not mark r done here. So we still apply it statically,
    			// so in the file content we'll also have the right offset
    			// to the relocation target. So it can be examined statically
    			// (e.g. go version).
    			return true
    		}
    
    		if target.IsDarwin() {
    			// Mach-O relocations are a royal pain to lay out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top