Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LoweredPanicExtendB (0.23 sec)

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

    (PanicExtend [kind] hi lo y mem) && boundsABI(kind) == 0 => (LoweredPanicExtendA [kind] hi lo y mem)
    (PanicExtend [kind] hi lo y mem) && boundsABI(kind) == 1 => (LoweredPanicExtendB [kind] hi lo y mem)
    (PanicExtend [kind] hi lo y mem) && boundsABI(kind) == 2 => (LoweredPanicExtendC [kind] hi lo y mem)
    
    // Optimizations
    
    // fold offset into address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    		argLen:  4,
    		call:    true,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 64}, // SI
    				{1, 4},  // DX
    				{2, 8},  // BX
    			},
    		},
    	},
    	{
    		name:    "LoweredPanicExtendB",
    		auxType: auxInt64,
    		argLen:  4,
    		call:    true,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 64}, // SI
    				{1, 2},  // CX
    				{2, 4},  // DX
    			},
    		},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    		v.AuxInt = int64ToAuxInt(kind)
    		v.AddArg4(hi, lo, y, mem)
    		return true
    	}
    	// match: (PanicExtend [kind] hi lo y mem)
    	// cond: boundsABI(kind) == 1
    	// result: (LoweredPanicExtendB [kind] hi lo y mem)
    	for {
    		kind := auxIntToInt64(v.AuxInt)
    		hi := v_0
    		lo := v_1
    		y := v_2
    		mem := v_3
    		if !(boundsABI(kind) == 1) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top