Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Generators (1.29 sec)

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

    }
    
    // isFlagOp reports if v is an OP with the flag type.
    func (v *Value) isFlagOp() bool {
    	if v.Type.IsFlags() || v.Type.IsTuple() && v.Type.FieldType(1).IsFlags() {
    		return true
    	}
    	// PPC64 carry generators put their carry in a non-flag-typed register
    	// in their output.
    	switch v.Op {
    	case OpPPC64SUBC, OpPPC64ADDC, OpPPC64SUBCconst, OpPPC64ADDCconst:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    		return true
    	}
    
    	g := &Generator{
    		r:        bytes.NewReader(src),
    		path:     absFile,
    		pkg:      filePkg.Name.String(),
    		commands: make(map[string][]string),
    	}
    	return g.run()
    }
    
    // A Generator represents the state of a single Go source file
    // being scanned for generator commands.
    type Generator struct {
    	r        io.Reader
    	path     string // full rooted path name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	{"decompose builtin", "late opt"},
    	// decompose builtin is the last pass that may introduce new float ops, so run softfloat after it
    	{"decompose builtin", "softfloat"},
    	// tuple selectors must be tightened to generators and de-duplicated before scheduling
    	{"tighten tuple selectors", "schedule"},
    	// remove critical edges before phi tighten, so that phi args get better placement
    	{"critical", "phi tighten"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticinit/sched.go

    }
    
    // from here down is the walk analysis
    // of composite literals.
    // most of the work is to generate
    // data statements for the constant
    // part of the composite literal.
    
    var statuniqgen int // name generator for static temps
    
    // StaticName returns a name backed by a (writable) static data symbol.
    // Use readonlystaticname for read-only node.
    func StaticName(t *types.Type) *ir.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.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 asm implements the parser and instruction generator for the assembler.
    // TODO: Split apart?
    package asm
    
    import (
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"strconv"
    	"strings"
    	"text/scanner"
    	"unicode/utf8"
    
    	"cmd/asm/internal/arch"
    	"cmd/asm/internal/flags"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top