Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MOVOload (0.39 sec)

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

    (Move [4] dst src mem) => (MOVLstore dst (MOVLload src mem) mem)
    (Move [8] dst src mem) => (MOVQstore dst (MOVQload src mem) mem)
    (Move [16] dst src mem) && config.useSSE => (MOVOstore dst (MOVOload src mem) mem)
    (Move [16] dst src mem) && !config.useSSE =>
    	(MOVQstore [8] dst (MOVQload [8] src mem)
    		(MOVQstore dst (MOVQload src mem) mem))
    
    (Move [32] dst src mem) =>
    	(Move [16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVQstore", argLength: 3, reg: gpstore, asm: "MOVQ", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},
    
    		// MOVOload/store: 16 byte load/store
    		// These operations are only used to move data around: there is no *O arithmetic, for example.
    		{name: "MOVOload", argLength: 2, reg: fpload, asm: "MOVUPS", aux: "SymOff", typ: "Int128", faultOnNilArg0: true, symEffect: "Read"}, // load 16 bytes from arg0+auxint+aux. arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	}
    	return false
    }
    func rewriteValueAMD64_OpAMD64MOVOload(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVOload [off1] {sym} (ADDQconst [off2] ptr) mem)
    	// cond: is32Bit(int64(off1)+int64(off2))
    	// result: (MOVOload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpAMD64ADDQconst {
    			break
    		}
    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/opGen.go

    				{1, 49151},      // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    				{0, 4295032831}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 g R15 SB
    			},
    		},
    	},
    	{
    		name:           "MOVOload",
    		auxType:        auxSymOff,
    		argLen:         2,
    		faultOnNilArg0: true,
    		symEffect:      SymRead,
    		asm:            x86.AMOVUPS,
    		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