Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for AUX (0.07 sec)

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

    		{name: "MOVHload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVH", typ: "Int16", faultOnNilArg0: true, symEffect: "Read"},    // load from arg0 + auxInt + aux.  arg1=mem.
    		{name: "MOVHUload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVHU", typ: "UInt16", faultOnNilArg0: true, symEffect: "Read"}, // load from arg0 + auxInt + aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64splitload.go

    	// result: (TESTB x:(MOVBload {sym} [vo.Off()] ptr mem) x)
    	for {
    		vo := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		mem := v_1
    		if !(vo.Val() == 0) {
    			break
    		}
    		v.reset(OpAMD64TESTB)
    		x := b.NewValue0(v.Pos, OpAMD64MOVBload, typ.UInt8)
    		x.AuxInt = int32ToAuxInt(vo.Off())
    		x.Aux = symToAux(sym)
    		x.AddArg2(ptr, mem)
    		v.AddArg2(x, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "MOVHload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVH", typ: "Int16", faultOnNilArg0: true, symEffect: "Read"},    // load from arg0 + auxInt + aux.  arg1=mem.
    		{name: "MOVHUload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVHU", typ: "UInt16", faultOnNilArg0: true, symEffect: "Read"}, // load from arg0 + auxInt + aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Rsh16Ux16", argLength: 2, aux: "Bool"},
    	{name: "Rsh16Ux32", argLength: 2, aux: "Bool"},
    	{name: "Rsh16Ux64", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux8", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux16", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux32", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux64", argLength: 2, aux: "Bool"},
    	{name: "Rsh64Ux8", argLength: 2, aux: "Bool"},
    	{name: "Rsh64Ux16", argLength: 2, aux: "Bool"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386splitload.go

    	for {
    		vo := auxIntToValAndOff(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		mem := v_1
    		v.reset(Op386CMPBconst)
    		v.AuxInt = int8ToAuxInt(vo.Val8())
    		v0 := b.NewValue0(v.Pos, Op386MOVBload, typ.UInt8)
    		v0.AuxInt = int32ToAuxInt(vo.Off())
    		v0.Aux = symToAux(sym)
    		v0.AddArg2(ptr, mem)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/expand_calls.go

    				}
    			} else {
    				if a == nil {
    					aux := container.Aux
    					auxInt := container.AuxInt + rc.storeOffset
    					a = container.Block.NewValue0IA(container.Pos, OpArg, at, auxInt, aux)
    				} else {
    					// do nothing, the original should be okay.
    				}
    				x.commonArgs[key] = a
    			}
    		}
    	} else if container.Op == OpSelectN {
    		call := container.Args[0]
    		aux := call.Aux.(*AuxCall)
    		which := container.AuxInt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. src/debug/pe/symbol.go

    			naux = int(sym.NumberOfAuxSymbols)
    		} else {
    			// Read an aux symbol. At the moment we assume all
    			// aux symbols are format 5 (obviously this doesn't always
    			// hold; more cases will be needed below if more aux formats
    			// are supported in the future).
    			naux--
    			aux := (*COFFSymbolAuxFormat5)(unsafe.Pointer(&sym))
    			err = binary.Read(r, binary.LittleEndian, aux)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/cse.go

    			return tc
    		}
    	}
    
    	if v.Aux != w.Aux {
    		if v.Aux == nil {
    			return types.CMPlt
    		}
    		if w.Aux == nil {
    			return types.CMPgt
    		}
    		return lt2Cmp(auxIDs[v.Aux] < auxIDs[w.Aux])
    	}
    
    	return types.CMPeq
    }
    
    // Sort values to make the initial partition.
    type sortvalues struct {
    	a      []*Value // array of values
    	auxIDs auxmap   // aux -> aux ID map
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    
    		{name: "MOVDconst", reg: gp01, asm: "MOV", typ: "UInt64", aux: "Int64", rematerializeable: true}, // auxint
    
    		// Loads: load <size> bits from arg0+auxint+aux and extend to 64 bits; arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritedec.go

    	// result: mem
    	for {
    		t := auxToType(v.Aux)
    		mem := v_2
    		if !(t.Size() == 0) {
    			break
    		}
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Store {t} dst (ComplexMake real imag) mem)
    	// cond: t.Size() == 8
    	// result: (Store {typ.Float32} (OffPtr <typ.Float32Ptr> [4] dst) imag (Store {typ.Float32} dst real mem))
    	for {
    		t := auxToType(v.Aux)
    		dst := v_0
    		if v_1.Op != OpComplexMake {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top