Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MOVQconst (0.34 sec)

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

    (SARQconst [c] (MOVQconst [d])) => (MOVQconst [d>>uint64(c)])
    (SARLconst [c] (MOVQconst [d])) => (MOVQconst [int64(int32(d))>>uint64(c)])
    (SARWconst [c] (MOVQconst [d])) => (MOVQconst [int64(int16(d))>>uint64(c)])
    (SARBconst [c] (MOVQconst [d])) => (MOVQconst [int64(int8(d))>>uint64(c)])
    (NEGQ (MOVQconst [c])) => (MOVQconst [-c])
    (NEGL (MOVLconst [c])) => (MOVLconst [-c])
    (MULQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)*d])
    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/rewriteAMD64.go

    				continue
    			}
    			v.reset(OpAMD64SHLDQ)
    			v.AddArg3(lo, hi, bits)
    			return true
    		}
    		break
    	}
    	// match: (ORQ (MOVQconst [c]) (MOVQconst [d]))
    	// result: (MOVQconst [c|d])
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpAMD64MOVQconst {
    				continue
    			}
    			c := auxIntToInt64(v_0.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVLconst", reg: gp01, asm: "MOVL", typ: "UInt32", aux: "Int32", rematerializeable: true}, // 32 low bits of auxint
    		{name: "MOVQconst", reg: gp01, asm: "MOVQ", typ: "UInt64", aux: "Int64", rematerializeable: true}, // auxint
    
    		{name: "CVTTSD2SL", argLength: 1, reg: fpgp, asm: "CVTTSD2SL"}, // convert float64 to int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssa/opGen.go

    		asm:               x86.AMOVL,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 49135}, // AX CX DX BX BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    		},
    	},
    	{
    		name:              "MOVQconst",
    		auxType:           auxInt64,
    		argLen:            0,
    		rematerializeable: true,
    		asm:               x86.AMOVQ,
    		reg: regInfo{
    			outputs: []outputInfo{
    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