Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 333 for prolog (0.24 sec)

  1. src/internal/coverage/cfile/apis.go

    	// finished clearing the entire counter segment, we will have lost
    	// the values in the prolog portion of main.XYZ's counter slab
    	// (nctrs, pkgid, funcid). This means that later on at the end of
    	// program execution as we walk through the entire counter array
    	// for the program looking for executed functions, we'll zoom past
    	// main.XYZ's prolog (which was zero'd) and hit the non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    	vars := make(map[string]string)
    	lines := strings.Split(string(out), "\n")
    	prolog := true
    	varsAtFrameOffset := make(map[string]int)
    	for _, line := range lines {
    		if line == "=-= stack layout for ABC:" {
    			prolog = false
    			continue
    		} else if prolog || line == "" {
    			continue
    		}
    		fields := strings.Fields(line)
    		wantFields := 9
    		if len(fields) != wantFields {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/MavenToolchainsIntegrationTest.groovy

            when:
            succeeds 'javaToolchains', '--info'
    
            then:
            outputContains "Java Toolchain auto-detection failed to parse Maven Toolchains located at ${toolchainsFile}. Content is not allowed in prolog."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    /**
     * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #999;
    }
    
    .token.punctuation {
        color: #ccc;
    }
    
    .token.tag,
    .token.attr-name,
    .token.namespace,
    .token.deleted {
        color: #e2777a;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    // error if a Go file with a cgo comment #include's the export header
    // generated by a different package. Unfortunately GoString means two
    // different things: in this prolog it means a C name for the Go type,
    // while in the prolog written into the start of the C code generated
    // from a cgo-using Go file it means the C.GoString function. There is
    // no way to resolve this conflict, but it also doesn't make much
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/seh.go

    		return
    	}
    
    	// This implementation expects the following function prologue layout:
    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	return list, sizeIdx
    }
    
    // locatePrologEnd walks the entry block of a function with incoming
    // register arguments and locates the last instruction in the prolog
    // that spills a register arg. It returns the ID of that instruction,
    // and (where appropriate) the prolog's lowered closure ptr store inst.
    //
    // Example:
    //
    //	b1:
    //	    v3 = ArgIntReg <int> {p1+0} [0] : AX
    //	    ... more arg regs ..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/runtime/asm_wasm.s

    	I64Add
    	I32WrapI64
    	Set SP
    
    	// call target function
    	Get CTXT
    	I32WrapI64
    	I64Load $0
    	CALL
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/stubs.go

    // getclosureptr can only be used in an assignment statement
    // at the entry of a function. Moreover, go:nosplit directive
    // must be specified at the declaration of caller function,
    // so that the function prolog does not clobber the closure register.
    // for example:
    //
    //	//go:nosplit
    //	func f(arg1, arg2, arg3 int) {
    //		dx := getclosureptr()
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/runtime/asm_mips64x.s

    	// call target function
    	MOVV	0(REGCTXT), R25
    	JAL	(R25)
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R1: framesize, R2: argsize, R3: LR
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top