Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for top (0.03 sec)

  1. src/cmd/compile/internal/types2/errorcalls_test.go

    			open = '('
    		case ']':
    			open = '['
    		case '}':
    			open = '{'
    		default:
    			continue
    		}
    		// closing parenthesis/bracket must have matching opening
    		top := len(stack) - 1
    		if top < 0 || stack[top] != open {
    			return false
    		}
    		stack = stack[:top]
    	}
    	return len(stack) == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/cover/html.go

    			#topbar {
    				background: black;
    				position: fixed;
    				top: 0; left: 0; right: 0;
    				height: 42px;
    				border-bottom: 1px solid rgb(80, 80, 80);
    			}
    			#content {
    				margin-top: 50px;
    			}
    			#nav, #legend {
    				float: left;
    				margin-left: 10px;
    			}
    			#legend {
    				margin-top: 12px;
    			}
    			#nav {
    				margin-top: 10px;
    			}
    			#legend span {
    				margin: 0 5px;
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// Parameter value feeds unmodified into a top level indirect
    	// function call (assumes parameter is of function type).
    	ParamFeedsIndirectCall
    
    	// Parameter value feeds unmodified into an indirect function call
    	// that is conditional/nested (not guaranteed to execute). Assumes
    	// parameter is of function type.
    	ParamMayFeedIndirectCall
    
    	// Parameter value feeds unmodified into a top level "switch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/tighten.go

    	}
    
    	// Second step, floods the known memory state of some blocks to others.
    	for len(changed) != 0 {
    		top := changed[0]
    		changed = changed[1:]
    		mem := startMem[top.ID]
    		for i, p := range top.Preds {
    			pb := p.b
    			if endMem[pb.ID] != nil {
    				continue
    			}
    			if mem.Op == OpPhi && mem.Block == top {
    				endMem[pb.ID] = mem.Args[i]
    			} else {
    				endMem[pb.ID] = mem
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/union.go

    	assert(!IsInterface(y.typ))
    	for i, x := range terms {
    		if IsInterface(x.typ) {
    			continue
    		}
    		// disjoint requires non-nil, non-top arguments,
    		// and non-interface types as term types.
    		if debug {
    			if x == nil || x.typ == nil || y == nil || y.typ == nil {
    				panic("empty or top union term")
    			}
    		}
    		if !(*term)(x).disjoint((*term)(y)) {
    			return i
    		}
    	}
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/flags/flags.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package flags implements top-level flags and the usage message for the assembler.
    package flags
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"flag"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadcode.go

    	live = f.Cache.allocBoolSlice(f.NumValues())
    	liveOrderStmts = f.Cache.allocValueSlice(f.NumValues())[:0]
    
    	// After regalloc, consider all values to be live.
    	// See the comment at the top of regalloc.go and in deadcode for details.
    	if f.RegAlloc != nil {
    		for i := range live {
    			live[i] = true
    		}
    		return
    	}
    
    	// Record all the inline indexes we need
    	var liveInlIdx map[int]bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    // declarations and inline function bodies. In turn, this allows
    // avoiding unnecessary work for compilation units that import large
    // packages.
    //
    //
    // The top-level data format is structured as:
    //
    //     Header struct {
    //         Tag        byte   // 'i'
    //         Version    uvarint
    //         StringSize uvarint
    //         DataSize   uvarint
    //     }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/386splitload.rules

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // See the top of AMD64splitload.rules for discussion of these rules.
    
    (CMP(L|W|B)load {sym} [off] ptr x mem) => (CMP(L|W|B) (MOV(L|W|B)load {sym} [off] ptr mem) x)
    
    (CMPLconstload {sym} [vo] ptr mem) => (CMPLconst (MOVLload {sym} [vo.Off()] ptr mem) [vo.Val()])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 620 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sparsetree.go

    type SparseTreeNode struct {
    	child   *Block
    	sibling *Block
    	parent  *Block
    
    	// Every block has 6 numbers associated with it:
    	// entry-1, entry, entry+1, exit-1, and exit, exit+1.
    	// entry and exit are conceptually the top of the block (phi functions)
    	// entry+1 and exit-1 are conceptually the bottom of the block (ordinary defs)
    	// entry-1 and exit+1 are conceptually "just before" the block (conditions flowing in)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top