Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for opload (0.18 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    				if eh > 1 {
    					c.ctxt.Diag("illegal EH field\n%v", p)
    				}
    				o1 = AOP_RRRI(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg), uint32(eh))
    			} else {
    				o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    			}
    		default:
    			o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    		}
    	case 46: /* plain op */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    						v.Op, v.Type.String())
    				}
    			case OpStringLen:
    				if v.Type != c.Types.Int {
    					f.Fatalf("bad %s type: want int, have %s",
    						v.Op, v.Type.String())
    				}
    			case OpLoad:
    				if !v.Args[1].Type.IsMemory() {
    					f.Fatalf("bad arg 1 type to %s: want mem, have %s",
    						v.Op, v.Args[1].Type.String())
    				}
    			case OpStore:
    				if !v.Type.IsMemory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			b.AddEdgeTo(cacheMiss)
    			b.AddEdgeTo(loopHead)
    
    			// On a hit, load the data fields of the cache entry.
    			//   Case = e.Case
    			//   Itab = e.Itab
    			s.startBlock(cacheHit)
    			eCase := s.newValue2(ssa.OpLoad, typs.Int, s.newValue1I(ssa.OpOffPtr, typs.IntPtr, s.config.PtrSize, e), s.mem())
    			eItab := s.newValue2(ssa.OpLoad, typs.BytePtr, s.newValue1I(ssa.OpOffPtr, typs.BytePtrPtr, 2*s.config.PtrSize, e), s.mem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(t.IsStruct() && t.NumFields() == 4 && CanSSA(t)) {
    			break
    		}
    		v.reset(OpStructMake4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    // license that can be found in the LICENSE file.
    
    package upload
    
    import (
    	"bytes"
    	"net/http"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"time"
    )
    
    var (
    	dateRE     = regexp.MustCompile(`(\d\d\d\d-\d\d-\d\d)[.]json$`)
    	dateFormat = "2006-01-02"
    	// TODO(rfindley): use dateFormat throughout.
    )
    
    // uploadReportDate returns the date component of the upload file name, or "" if the
    // date was unmatched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVWloadidx", argLength: 3, reg: gp2load, asm: "MOVW", typ: "Int32"},     // load 32-bit word from arg0 + arg1, sign-extended to 64-bit, arg2=mem.
    		{name: "MOVWUloadidx", argLength: 3, reg: gp2load, asm: "MOVWU", typ: "UInt32"},  // load 32-bit word from arg0 + arg1, zero-extended to 64-bit, arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVD, C_AACON2, C_NONE, C_NONE, C_RSP, C_NONE, 4, 8, REGFROM, NOTUSETMP, 0},
    
    	/* load long effective stack address (load int32 offset and add) */
    	{AMOVD, C_LACON, C_NONE, C_NONE, C_RSP, C_NONE, 34, 8, REGSP, LFROM, 0},
    
    	// Load a large constant into a vector register.
    	{AVMOVS, C_ADDR, C_NONE, C_NONE, C_VREG, C_NONE, 65, 12, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    	// packages.
    	Tidy bool
    
    	// TidyDiff, if true, causes tidy not to modify go.mod or go.sum but
    	// instead print the necessary changes as a unified diff. It exits
    	// with a non-zero code if the diff is not empty.
    	TidyDiff bool
    
    	// TidyCompatibleVersion is the oldest Go version that must be able to
    	// reproducibly reload the requested packages.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVWload", argLength: 2, reg: gpload, asm: "MOVW", aux: "SymOff", typ: "Int32", faultOnNilArg0: true, symEffect: "Read"},    // load 4 bytes sign extend
    		{name: "MOVWZload", argLength: 2, reg: gpload, asm: "MOVWZ", aux: "SymOff", typ: "UInt32", faultOnNilArg0: true, symEffect: "Read"}, // load 4 bytes zero extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    			return nil
    		})
    	}
    	if upload {
    		g.Go(func() error {
    			uploaderChild(uploadStartTime, uploadURL)
    			return nil
    		})
    	}
    	g.Wait()
    }
    
    func uploaderChild(asof time.Time, uploadURL string) {
    	if err := upload.Run(upload.RunConfig{
    		UploadURL: uploadURL,
    		LogWriter: os.Stderr,
    		StartTime: asof,
    	}); err != nil {
    		log.Printf("upload failed: %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top