Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for un (0.41 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    	if !possibleConst(val) {
    		// they are always worst
    		return lattice{bottom, nil}
    	}
    	lt, exist := t.latticeCells[val]
    	if !exist {
    		return lattice{top, nil} // optimistically for un-visited value
    	}
    	return lt
    }
    
    func isConst(val *Value) bool {
    	switch val.Op {
    	case OpConst64, OpConst32, OpConst16, OpConst8,
    		OpConstBool, OpConst32F, OpConst64F:
    		return true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	if ctxt.IsExternal() {
    		s = ctxt.loader.LookupOrCreateSym(".llvmasm", 0)
    		sb = ctxt.loader.MakeSymbolUpdater(s)
    		sb.SetType(sym.SMACHO)
    		sb.SetReachable(true)
    		sb.AddUint8(0)
    	}
    
    	// Un-export runtime symbols from plugins. Since the runtime
    	// is included in both the main binary and each plugin, these
    	// symbols appear in both images. If we leave them exported in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    	ssa.BlockPPC64FLT: {ppc64.ABLT, ppc64.ABGE, false, false},
    	ssa.BlockPPC64FGE: {ppc64.ABGT, ppc64.ABLT, true, true}, // GE = GT or EQ; !GE = LT or UN
    	ssa.BlockPPC64FLE: {ppc64.ABLT, ppc64.ABGT, true, true}, // LE = LT or EQ; !LE = GT or UN
    	ssa.BlockPPC64FGT: {ppc64.ABGT, ppc64.ABLE, false, false},
    }
    
    func ssaGenBlock(s *ssagen.State, b, next *ssa.Block) {
    	switch b.Kind {
    	case ssa.BlockDefer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    	//   - things work properly for both register-resident
    	//     params and params passed on the stack
    	//   - things work for both referenced and unreferenced params
    	//   - things work for named return values un-named return vals
    	//
    	// The scenarios below don't cover all possible permutations and
    	// combinations, but they hit a bunch of the high points.
    
    	const prog = `
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?permissive`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    	re(`-f(no-)?plt`),
    	re(`-f(no-)?rtti`),
    	re(`-f(no-)?split-stack`),
    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    	re(`-f(un)signed-char`),
    	re(`-f(no-)?use-linker-plugin`), // safe if -B is not used; we don't permit -B
    	re(`-f(no-)?visibility-inlines-hidden`),
    	re(`-fsanitize=(.+)`),
    	re(`-ftemplate-depth-(.+)`),
    	re(`-fvisibility=(.+)`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "SelectNAddr", argLength: 1, aux: "Int64"}, // arg0=result, auxint=field index.  Returns the address of auxint'th member. Used for un-SSA-able result types.
    	{name: "MakeResult", argLength: -1},               // arg0 .. are components of a "Result" (like the result from a Call). The last arg should be memory (like the result from a call).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	defer tg.cleanup()
    	tg.parallel()
    
    	// golang.org/issue/23701.
    	// b_test imports b with augmented method from export_test.go.
    	// b_test also imports a, which imports b.
    	// Must not accidentally see un-augmented b propagate through a to b_test.
    	tg.tempFile("src/a/a.go", `package a
    		import "b"
    		type Type struct{}
    		func (*Type) M() b.T {return 0}
    	`)
    	tg.tempFile("src/b/b.go", `package b
    		type T int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top