Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for asmidx (0.22 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			ab.Put1(byte(0<<6 | reg[base]<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			return
    		}
    
    		if disp8, ok := toDisp8(v, p, ab); ok {
    			ab.Put1(byte(1<<6 | reg[base]<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			ab.Put1(disp8)
    			return
    		}
    
    		ab.Put1(byte(2<<6 | reg[base]<<0 | r<<3))
    		ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    		goto putrelv
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. test/asmhdr.go

    // buildrundir
    
    // Copyright 2021 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.
    
    // Test the -asmhdr output of the compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 30 18:30:05 UTC 2021
    - 237 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    			return true
    		}
    		// A case ignorable may also introduce a word break, so we may need
    		// to continue searching even after detecting a break.
    		isMid := c.info.isMid()
    		if (wasMid && isMid) || c.info.isBreak() {
    			c.isMidWord = false
    		}
    		wasMid = isMid
    		c.copy()
    	}
    	return true
    }
    
    // finalSigmaSpan would be the same as isLower.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    // index of the package in the PkgIndex array. 0 is an invalid index.
    //
    // SymIdx is the index of the symbol in the given package.
    // - If PkgIdx is PkgIdxSelf, SymIdx is the index of the symbol in the
    //   SymbolDefs array.
    // - If PkgIdx is PkgIdxHashed64, SymIdx is the index of the symbol in the
    //   Hashed64Defs array.
    // - If PkgIdx is PkgIdxHashed, SymIdx is the index of the symbol in the
    //   HashedDefs array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/decodesym.go

    	relocs := ldr.Relocs(symIdx)
    	return decodetypeName(ldr, symIdx, &relocs, off)
    }
    
    func decodetypeStructFieldType(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym, i int) loader.Sym {
    	off := decodetypeStructFieldArrayOff(ldr, arch, symIdx, i)
    	relocs := ldr.Relocs(symIdx)
    	return decodeRelocSym(ldr, symIdx, &relocs, int32(off+arch.PtrSize))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/symbolbuilder.go

    	sb.extSymPayload = l.getPayload(symIdx)
    	return sb
    }
    
    // MakeSymbolUpdater creates a symbol builder helper for an existing
    // symbol 'symIdx'. If 'symIdx' is not an external symbol, then create
    // a clone of it (copy name, properties, etc) fix things up so that
    // the lookup tables and caches point to the new version, not the old
    // version.
    func (l *Loader) MakeSymbolUpdater(symIdx Sym) *SymbolBuilder {
    	if symIdx == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/deadcode.go

    			}
    		}
    	}
    }
    
    func (d *deadcodePass) mark(symIdx, parent loader.Sym) {
    	if symIdx != 0 && !d.ldr.AttrReachable(symIdx) {
    		d.wq.push(symIdx)
    		d.ldr.SetAttrReachable(symIdx, true)
    		if buildcfg.Experiment.FieldTrack && d.ldr.Reachparent[symIdx] == 0 {
    			d.ldr.Reachparent[symIdx] = parent
    		}
    		if *flagDumpDep {
    			to := d.ldr.SymName(symIdx)
    			if to != "" {
    				to = d.dumpDepAddFlags(to, symIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/math/dim_riscv64.s

    	MOVD	y+8(FP), F1
    	FCLASSD	F0, X5
    	FCLASSD	F1, X6
    
    	// -Inf special cases
    	MOV	$NegInf, X7
    	BEQ	X7, X5, isMinX
    	BEQ	X7, X6, isMinY
    
    	// NaN special cases
    	MOV	$NaN, X7
    	BEQ	X7, X5, isMinX
    	BEQ	X7, X6, isMinY
    
    	// normal case
    	FMIND	F0, F1, F0
    	MOVD	F0, ret+16(FP)
    	RET
    
    isMinX: // return x
    	MOVD	F0, ret+16(FP)
    	RET
    
    isMinY: // return y
    	MOVD	F1, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. cmd/tier-last-day-stats.go

    	// within the hour since l.UpdatedAt
    	if since < 1 {
    		return
    	}
    
    	idx, lastIdx := t.Hour(), l.UpdatedAt.Hour()
    
    	l.UpdatedAt = t // update to the latest time index
    
    	if since >= 24 {
    		l.Bins = [24]tierStats{}
    		return
    	}
    
    	for lastIdx != idx {
    		lastIdx = (lastIdx + 1) % 24
    		l.Bins[lastIdx] = tierStats{}
    	}
    }
    
    func (l *lastDayTierStats) clone() lastDayTierStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    				case "encoding/json", "encoding/xml", "encoding/gob":
    					argidx = 0 // func(interface{})
    				}
    			}
    		}
    		if argidx < 0 {
    			return // not a function we are interested in
    		}
    
    		if len(call.Args) < argidx+1 {
    			return // not enough arguments, e.g. called with return values of another function
    		}
    
    		t := pass.TypesInfo.Types[call.Args[argidx]].Type
    		switch t.Underlying().(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top