Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for order1 (1.22 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BSFQ", argLength: 1, reg: gp11flags, asm: "BSFQ", typ: "(UInt64,Flags)"},        // # of low-order zeroes in 64-bit arg
    		{name: "BSFL", argLength: 1, reg: gp11, asm: "BSFL", typ: "UInt32", clobberFlags: true}, // # of low-order zeroes in 32-bit arg
    		{name: "BSRQ", argLength: 1, reg: gp11flags, asm: "BSRQ", typ: "(UInt64,Flags)"},        // # of high-order zeroes in 64-bit arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // "go tool foo".
    //
    // Generate processes packages in the order given on the command line,
    // one at a time. If the command line lists .go files from a single directory,
    // they are treated as a single package. Within a package, generate processes the
    // source files in a package in file name order, one at a time. Within
    // a source file, generate runs generators in the order they appear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		p.ImportPath = importPath
    		packageCache[importPath] = p
    
    		setCmdline(p)
    
    		// Load package.
    		// loadPackageData may return bp != nil even if an error occurs,
    		// in order to return partial information.
    		p.load(ctx, opts, path, stk, importPos, bp, err)
    
    		if !cfg.ModulesEnabled && path != cleanImport(path) {
    			p.Error = &PackageError{
    				ImportStack: stk.Copy(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	ab.Put4(evexEscapeByte, p0, p1, p2)
    	ab.Put1(evex.opcode)
    }
    
    // Emit VEX prefix and opcode byte.
    // The three addresses are the r/m, vvvv, and reg fields.
    // The reg and rm arguments appear in the same order as the
    // arguments to asmand, which typically follows the call to asmvex.
    // The final two arguments are the VEX prefix (see encoding above)
    // and the opcode byte.
    // For details about vex prefix see:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		if p.From.Type == obj.TYPE_REG {
    			/* reg reg none OR reg reg reg */
    			/* 3-register operand order: VRA, VRB, VRT */
    			/* 2-register operand order: VRA, VRT */
    			o1 = AOP_RRR(c.oprrr(p.As), uint32(p.To.Reg), uint32(p.From.Reg), uint32(p.Reg))
    		} else if p.From3Type() == obj.TYPE_CONST {
    			/* imm imm reg reg */
    			/* operand order: SIX, VRA, ST, VRT */
    			six := int(c.regoff(&p.From))
    			st := int(c.regoff(p.GetFrom3()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		switch p.As {
    		default:
    			c.ctxt.Diag("unexpected opcode %v", p.As)
    		case AMVC:
    			opcode = op_MVC
    		case AMVCIN:
    			opcode = op_MVCIN
    		case ACLC:
    			opcode = op_CLC
    			// swap operand order for CLC so that it matches CMP
    			b1, b2 = b2, b1
    			d1, d2 = d2, d1
    		case AXC:
    			opcode = op_XC
    		case AOC:
    			opcode = op_OC
    		case ANC:
    			opcode = op_NC
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    func (c *ctxt7) isRestartable(p *obj.Prog) bool {
    	if c.isUnsafePoint(p) {
    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    	// the content of REGTMP, upon async preemption. Currently, all cases
    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/link/internal/ld/data.go

    const wasmMinDataAddr = 4096 + 8192
    
    // address assigns virtual addresses to all segments and sections and
    // returns all segments in file order.
    func (ctxt *Link) address() []*sym.Segment {
    	var order []*sym.Segment // Layout order
    
    	va := uint64(*FlagTextAddr)
    	order = append(order, &Segtext)
    	Segtext.Rwx = 05
    	Segtext.Vaddr = va
    	for i, s := range Segtext.Sections {
    		va = uint64(Rnd(int64(va), int64(s.Align)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			}
    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    	// work does not matter much to overall execution time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top