Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MOVBZloadidx (0.21 sec)

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

    		// In these cases an index register is used in addition to a base register
    		// Loads from memory location arg[0] + arg[1].
    		{name: "MOVBZloadidx", argLength: 3, reg: gploadidx, asm: "MOVBZ", typ: "UInt8"},  // zero extend uint8 to uint64
    		{name: "MOVHloadidx", argLength: 3, reg: gploadidx, asm: "MOVH", typ: "Int16"},    // sign extend int16 to int64
    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/rewritePPC64.go

    		v.Aux = symToAux(sym)
    		v.AddArg2(x, mem)
    		return true
    	}
    	// match: (MOVBZload [0] {sym} p:(ADD ptr idx) mem)
    	// cond: sym == nil && p.Uses == 1
    	// result: (MOVBZloadidx ptr idx mem)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 {
    			break
    		}
    		sym := auxToSym(v.Aux)
    		p := v_0
    		if p.Op != OpPPC64ADD {
    			break
    		}
    		idx := p.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// indexed loads/stores
    		{name: "MOVBZloadidx", argLength: 3, reg: gploadidx, commutative: true, asm: "MOVBZ", aux: "SymOff", typ: "UInt8", symEffect: "Read"},   // load a byte from arg0+arg1+auxint+aux. arg2=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)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Note that MOV??reg returns a 64-bit int, x is not necessarily that wide
    // This may interact with other patterns in the future. (Compare with arm64)
    (MOV(B|H|W)Zreg x:(MOVBZload _ _)) => x
    (MOV(B|H|W)Zreg x:(MOVBZloadidx _ _ _)) => x
    (MOV(H|W)Zreg x:(MOVHZload _ _)) => x
    (MOV(H|W)Zreg x:(MOVHZloadidx _ _ _)) => x
    (MOV(H|W)reg x:(MOVHload _ _)) => x
    (MOV(H|W)reg x:(MOVHloadidx _ _ _)) => x
    (MOV(WZ|W)reg x:(MOV(WZ|W)load _ _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. 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:   "MOVBZloadidx",
    		argLen: 3,
    		asm:    ppc64.AMOVBZ,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{1, 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
    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