Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 354 for prolog (0.17 sec)

  1. test/64bit.go

    	Uint64{1<<32 - 1, 1<<32 - 1},
    }
    
    var ntest = 0
    
    // Part 1 is tests of variable operations; generic functions
    // called by repetitive code.  Could make a table but not worth it.
    
    const prolog = "\n" +
    	"package main\n" +
    	"\n" +
    	"import \"os\"\n" +
    	"\n" +
    	"var ok = true\n" +
    	"\n" +
    	"func testInt64Unary(a, plus, xor, minus int64) {\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/asm_riscv64.s

    	// call target function
    	MOV	0(CTXT), X10
    	JALR	X1, X10
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Called with return address (i.e. caller's PC) in X5 (aka T0),
    // and the LR register contains the caller's LR.
    //
    // The traceback routines see morestack on a g0 as being
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. src/runtime/asm_s390x.s

    	// call target function
    	MOVD	0(R12), R3	// code pointer
    	BL	(R3)
    
    	// should never return
    	BL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R3: framesize, R4: argsize, R5: 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: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/runtime/asm_mipsx.s

    	// call target function
    	MOVW	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 May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/runtime/asm_loong64.s

    	// call target function
    	MOVV	0(REGCTXT), R6
    	JAL	(R6)
    
    	// should never return
    	JAL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // loong64: R31: 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 May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    	// Insert the registration sequence into the function. We want this sequence to
    	// appear before any counter updates, so use a hack to ensure that this edit
    	// applies before the edit corresponding to the prolog counter update.
    
    	boff := f.offset(body.Pos())
    	ipos := f.fset.File(body.Pos()).Pos(boff)
    	ip := f.offset(ipos)
    	f.edit.Replace(ip, ip+1, string(f.content[ipos-1])+regHook+" ; ")
    
    	f.fn.counterVar = ""
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/runtime/asm_arm.s

    	MOVW	0(R7), R0
    	BL	(R0)
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // R3 prolog's LR
    // using NOFRAME means do not save LR on stack.
    //
    // 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: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"text/x-matlab",
    				"application/x-matlab-data",
    				"text/x-modula",
    				"text/x-objcsrc",
    				"text/x-ocaml",
    				"text/x-pascal",
    				"text/x-perl",
    				"text/x-php",
    				"text/x-prolog",
    				"text/x-python",
    				"text/x-rst",
    				"text/x-rexx",
    				"text/x-ruby",
    				"text/x-scala",
    				"text/x-scheme",
    				"text/x-sed",
    				"text/x-sql",
    				"text/x-setext",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top