Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for tramps (0.14 sec)

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

    			// lay down trampolines after each function
    			for ; ntramps < len(ctxt.tramps); ntramps++ {
    				tramp := ctxt.tramps[ntramps]
    				if ctxt.IsAIX() && strings.HasPrefix(ldr.SymName(tramp), "runtime.text.") {
    					// Already set in assignAddress
    					continue
    				}
    				sect, n, va = assignAddress(ctxt, sect, n, tramp, va, true, big)
    			}
    		}
    
    		// merge tramps into Textp, keeping Textp in address order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/riscv64/asm.go

    		// a new trampoline.
    		var tramp loader.Sym
    		for i := 0; ; i++ {
    			oName := ldr.SymName(rs)
    			name := fmt.Sprintf("%s-tramp%d", oName, i)
    			if r.Add() != 0 {
    				name = fmt.Sprintf("%s%+x-tramp%d", oName, r.Add(), i)
    			}
    			tramp = ldr.LookupOrCreateSym(name, int(ldr.SymVersion(rs)))
    			ldr.SetAttrReachable(tramp, true)
    			if ldr.SymType(tramp) == sym.SDYNIMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    Ziqi Zhao <******@****.***> 1710466962 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm64/asm.go

    					break
    				}
    			}
    			if ldr.SymType(tramp) == 0 {
    				// trampoline does not exist, create one
    				trampb := ldr.MakeSymbolUpdater(tramp)
    				ctxt.AddTramp(trampb)
    				if ldr.SymType(rs) == sym.SDYNIMPORT {
    					if r.Add() != 0 {
    						ctxt.Errorf(s, "nonzero addend for DYNIMPORT call: %v+%d", ldr.SymName(rs), r.Add())
    					}
    					gentrampgot(ctxt, ldr, trampb, rs)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    === Create the configuration file
    
    Travis CI requires you to check in a https://docs.travis-ci.com/user/customizing-the-build/[configuration file] with your source code named `.travis.yml`.
    This file contains all relevant instructions for building the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    				trampb := ldr.MakeSymbolUpdater(tramp)
    				ctxt.AddTramp(trampb)
    				gentramp(ctxt, ldr, trampb, rs, r.Add())
    			}
    			sb := ldr.MakeSymbolUpdater(s)
    			relocs := sb.Relocs()
    			r := relocs.At(ri)
    			r.SetSym(tramp)
    			r.SetAdd(0) // This was folded into the trampoline target address
    		}
    	default:
    		ctxt.Errorf(s, "trampoline called with non-jump reloc: %d (%s)", r.Type(), sym.RelocName(ctxt.Arch, r.Type()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/internal/trace/event.go

    //
    // If two Stacks are equal then their Frames are guaranteed to be identical. If they are not
    // equal, however, their Frames may still be equal.
    type Stack struct {
    	table *evTable
    	id    stackID
    }
    
    // Frames is an iterator over the frames in a Stack.
    func (s Stack) Frames(yield func(f StackFrame) bool) bool {
    	if s.id == 0 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    The failure prints stack traces for all goroutines if there is no current goroutine
    or the failure is internal to the run-time.
    GOTRACEBACK=none omits the goroutine stack traces entirely.
    GOTRACEBACK=single (the default) behaves as described above.
    GOTRACEBACK=all adds stack traces for all user-created goroutines.
    GOTRACEBACK=system is like “all” but adds stack frames for run-time functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Drops functions above the highest matched frame.",
    		"If set, all frames above the highest match are dropped from every sample.",
    		"Matching includes the function name, filename or object name."),
    	"tagroot": helpText(
    		"Adds pseudo stack frames for labels key/value pairs at the callstack root.",
    		"A comma-separated list of label keys.",
    		"The first key creates frames at the new root."),
    	"tagleaf": helpText(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/trace/viewer.go

    	"internal/trace"
    	"internal/trace/traceviewer"
    	"time"
    )
    
    // viewerFrames returns the frames of the stack of ev. The given frame slice is
    // used to store the frames to reduce allocations.
    func viewerFrames(stk trace.Stack) []*trace.Frame {
    	var frames []*trace.Frame
    	stk.Frames(func(f trace.StackFrame) bool {
    		frames = append(frames, &trace.Frame{
    			PC:   f.PC,
    			Fn:   f.Func,
    			File: f.File,
    			Line: int(f.Line),
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top