Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Fish (0.67 sec)

  1. src/cmd/compile/internal/syntax/syntax.go

    //
    // If text is the empty string, the pragma is being returned
    // to the handler unused, meaning it appeared before a non-declaration.
    // The handler may wish to report an error. In this case, pos is the
    // current parser position, not the position of the pragma itself.
    // Blank specifies whether the line is blank before the pragma.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sparsetree.go

    	// 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)
    	//
    	// This simplifies life if we wish to query information about x
    	// when x is both an input to and output of a block.
    	entry, exit int32
    }
    
    func (s *SparseTreeNode) String() string {
    	return fmt.Sprintf("[%d,%d]", s.entry, s.exit)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    // regInfo is much handier at the call site than it is when the AuxCall is being constructed,
    // therefore do this lazily).
    //
    // TODO: there is a Clever Hack that allows pre-generation of a small-ish number of the slices
    // of inputInfo and outputInfo used here, provided that we are willing to reorder the inputs
    // and outputs from calls, so that all integer registers come first, then all floating registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top