Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for igen (0.17 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    David Chase <******@****.***> 1712070764 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. api/except.txt

    pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
    pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
    pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
    pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
    pkg syscall (freebsd-386), type Stat_t struct, Lspare int32
    pkg syscall (freebsd-386), type Stat_t struct, Nlink uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec.go

    // Code generated from _gen/dec.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "cmd/compile/internal/types"
    
    func rewriteValuedec(v *Value) bool {
    	switch v.Op {
    	case OpArrayMake1:
    		return rewriteValuedec_OpArrayMake1(v)
    	case OpArraySelect:
    		return rewriteValuedec_OpArraySelect(v)
    	case OpComplexImag:
    		return rewriteValuedec_OpComplexImag(v)
    	case OpComplexReal:
    		return rewriteValuedec_OpComplexReal(v)
    	case OpIData:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6.go

    			// Special case: clobber the destination register with
    			// the PC so we don't have to clobber CX.
    			// The SSA backend depends on CX not being clobbered across LEAL.
    			// See cmd/compile/internal/ssa/gen/386.rules (search for Flag_shared).
    			reg = p.To.Reg
    		}
    	}
    
    	if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO {
    		//     ADUFFxxx $offset
    		// becomes
    		//     $MOV runtime.duffxxx@GOT, $reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/addressingmodes.go

    	[2]Op{OpAMD64SETAEstore, OpAMD64LEAQ1}: OpAMD64SETAEstoreidx1,
    
    	// These instructions are re-split differently for performance, see needSplit above.
    	// TODO if 386 versions are created, also update needSplit and _gen/386splitload.rules
    	[2]Op{OpAMD64CMPBload, OpAMD64ADDQ}: OpAMD64CMPBloadidx1,
    	[2]Op{OpAMD64CMPWload, OpAMD64ADDQ}: OpAMD64CMPWloadidx1,
    	[2]Op{OpAMD64CMPLload, OpAMD64ADDQ}: OpAMD64CMPLloadidx1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:57 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    // Code generated by gen/arithBoundaryGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type utd64 struct {
    	a, b                    uint64
    	add, sub, mul, div, mod uint64
    }
    type itd64 struct {
    	a, b                    int64
    	add, sub, mul, div, mod int64
    }
    type utd32 struct {
    	a, b                    uint32
    	add, sub, mul, div, mod uint32
    }
    type itd32 struct {
    	a, b                    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    // exist as a module, excluding targetPrefix but otherwise including path
    // itself, sorted by descending length. Prefixes that are not valid module paths
    // but are valid package paths (like "m" or "example.com/.gen") are included,
    // since they might be replaced.
    func modulePrefixesExcludingTarget(path string) []string {
    	prefixes := make([]string, 0, strings.Count(path, "/")+1)
    
    	mainModulePrefixes := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    	case ODEFER:
    		suffix = ".deferwrap"
    	}
    	gen := &globClosgen
    
    	// There may be multiple functions named "_". In those
    	// cases, we can't use their individual Closgens as it
    	// would lead to name clashes.
    	if outerfn != nil && !IsBlank(outerfn.Nname) {
    		pkg = outerfn.Sym().Pkg
    		outer = FuncName(outerfn)
    
    		switch why {
    		case OCLOSURE:
    			gen = &outerfn.funcLitGen
    		case ORANGE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/main.go

    		if err := pprof.WriteHeapProfile(f); err != nil {
    			log.Fatal("could not write memory profile: ", err)
    		}
    	}
    }
    
    func genOp() {
    	w := new(bytes.Buffer)
    	fmt.Fprintf(w, "// Code generated from _gen/*Ops.go using 'go generate'; DO NOT EDIT.\n")
    	fmt.Fprintln(w)
    	fmt.Fprintln(w, "package ssa")
    
    	fmt.Fprintln(w, "import (")
    	fmt.Fprintln(w, "\"cmd/internal/obj\"")
    	for _, a := range archs {
    		if a.pkg != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    				t.Fatal(err)
    			}
    			if !matched {
    				t.Errorf("Failed to detect long backward BC fixup in (%v):%s\n", platenv, out)
    			}
    		}
    	}
    }
    
    // gen generates a very large program with a very long forward and backwards conditional branch.
    func gen(buf *bytes.Buffer, jmpinsn string) {
    	fmt.Fprintln(buf, "TEXT f(SB),0,$0-0")
    	fmt.Fprintln(buf, "label_start:")
    	fmt.Fprintln(buf, jmpinsn, "label_end")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top