Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for AUX (0.1 sec)

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

    		{name: "EXTSWSLconst", argLength: 1, reg: gp11, asm: "EXTSWSLI", aux: "Int64"},
    
    		{name: "RLWINM", argLength: 1, reg: gp11, asm: "RLWNM", aux: "Int64"},                           // Rotate and mask by immediate "rlwinm". encodePPC64RotateMask describes aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	if v.InCache {
    		aux := v.AuxInt
    		if f.unCacheLine(v, aux) {
    			return
    		}
    		if aux == 0 {
    			switch v.Op {
    			case OpConstNil:
    				aux = constNilMagic
    			case OpConstSlice:
    				aux = constSliceMagic
    			case OpConstString:
    				aux = constEmptyStringMagic
    			case OpConstInterface:
    				aux = constInterfaceMagic
    			}
    			if aux != 0 && f.unCacheLine(v, aux) {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		sym1 := auxToSym(v.Aux)
    		val := v_0
    		if v_1.Op != OpAMD64LEAQ {
    			break
    		}
    		off2 := auxIntToInt32(v_1.AuxInt)
    		sym2 := auxToSym(v_1.Aux)
    		base := v_1.Args[0]
    		mem := v_2
    		if !(is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2)) {
    			break
    		}
    		v.reset(OpAMD64ADDLload)
    		v.AuxInt = int32ToAuxInt(off1 + off2)
    		v.Aux = symToAux(mergeSym(sym1, sym2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{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: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    	case auxSym, auxCall, auxTyp:
    		if v.Aux != nil {
    			return fmt.Sprintf(" {%v}", v.Aux)
    		}
    		return ""
    	case auxSymOff, auxCallOff, auxTypSize, auxNameOffsetInt8:
    		s := ""
    		if v.Aux != nil {
    			s = fmt.Sprintf(" {%v}", v.Aux)
    		}
    		if v.AuxInt != 0 || opcodeTable[v.Op].auxType == auxNameOffsetInt8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/check.go

    					}
    				} else {
    					f.Fatalf("value %v has Aux type %T, want *AuxCall", v, v.Aux)
    				}
    				canHaveAux = true
    			case auxNameOffsetInt8:
    				if _, ok := v.Aux.(*AuxNameOffset); !ok {
    					f.Fatalf("value %v has Aux type %T, want *AuxNameOffset", v, v.Aux)
    				}
    				canHaveAux = true
    				canHaveAuxInt = true
    			case auxSym, auxTyp:
    				canHaveAux = true
    			case auxSymOff, auxSymValAndOff, auxTypSize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/objfile.go

    }
    
    // Aux returns a pointer to the j-th aux symbol of the i-th symbol.
    func (r *Reader) Aux(i uint32, j int) *Aux {
    	off := r.AuxOff(i, j)
    	return (*Aux)(unsafe.Pointer(&r.b[off]))
    }
    
    // Auxs returns the aux symbols of the i-th symbol.
    func (r *Reader) Auxs(i uint32) []Aux {
    	off := r.AuxOff(i, 0)
    	n := r.NAux(i)
    	return (*[huge]Aux)(unsafe.Pointer(&r.b[off]))[:n:n]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		sym1 := auxToSym(v.Aux)
    		if v_0.Op != OpRISCV64MOVaddr {
    			break
    		}
    		off2 := auxIntToInt32(v_0.AuxInt)
    		sym2 := auxToSym(v_0.Aux)
    		base := v_0.Args[0]
    		mem := v_1
    		if !(is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2)) {
    			break
    		}
    		v.reset(OpRISCV64MOVBUload)
    		v.AuxInt = int32ToAuxInt(off1 + off2)
    		v.Aux = symToAux(mergeSym(sym1, sym2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top