Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MOVBZload (0.4 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Move [3] dst src mem) =>
    	(MOVBstore [2] dst (MOVBZload [2] src mem)
    		(MOVHstore dst (MOVHZload src mem) mem))
    (Move [5] dst src mem) =>
    	(MOVBstore [4] dst (MOVBZload [4] src mem)
    		(MOVWstore dst (MOVWZload src mem) mem))
    (Move [6] dst src mem) =>
    	(MOVHstore [4] dst (MOVHZload [4] src mem)
    		(MOVWstore dst (MOVWZload src mem) mem))
    (Move [7] dst src mem) =>
    	(MOVBstore [6] dst (MOVBZload [6] src mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Load <t> ptr mem) && is16BitInt(t) && !t.IsSigned() => (MOVHZload ptr mem)
    (Load <t> ptr mem) && t.IsBoolean() => (MOVBZload ptr mem)
    (Load <t> ptr mem) && is8BitInt(t) &&  t.IsSigned() => (MOVBreg (MOVBZload ptr mem)) // PPC has no signed-byte load.
    (Load <t> ptr mem) && is8BitInt(t) && !t.IsSigned() => (MOVBZload ptr mem)
    
    (Load <t> ptr mem) && is32BitFloat(t) => (FMOVSload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: t.IsBoolean()
    	// result: (MOVBZload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(t.IsBoolean()) {
    			break
    		}
    		v.reset(OpPPC64MOVBZload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: is8BitInt(t) && t.IsSigned()
    	// result: (MOVBreg (MOVBZload ptr mem))
    	for {
    		t := v.Type
    		ptr := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		ptr2 := v_1.Args[0]
    		if !(isSamePtr(ptr1, ptr2)) {
    			break
    		}
    		v.reset(OpS390XMOVBZreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBZload [off1] {sym} (ADDconst [off2] ptr) mem)
    	// cond: is20Bit(int64(off1)+int64(off2))
    	// result: (MOVBZload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpS390XADDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVWZreg", argLength: 1, reg: gp11, asm: "MOVWZ", typ: "Int64"}, // zero extend uint32 to uint64
    
    		// Load bytes in the endian order of the arch from arg0+aux+auxint into a 64 bit register.
    		{name: "MOVBZload", argLength: 2, reg: gpload, asm: "MOVBZ", aux: "SymOff", typ: "UInt8", faultOnNilArg0: true, symEffect: "Read"},  // load byte 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)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    		{name: "MOVBZload", argLength: 2, reg: gpload, asm: "MOVBZ", aux: "SymOff", typ: "UInt8", faultOnNilArg0: true, symEffect: "Read"},  // load byte from arg0+auxint+aux. arg1=mem.  Zero extend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 1073733624}, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29
    			},
    		},
    	},
    	{
    		name:           "MOVBZload",
    		auxType:        auxSymOff,
    		argLen:         2,
    		faultOnNilArg0: true,
    		symEffect:      SymRead,
    		asm:            ppc64.AMOVBZ,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top