Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LoweredPanicExtendB (0.28 sec)

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

    		{name: "LoweredPanicExtendB", argLength: 4, aux: "Int64", reg: regInfo{inputs: []regMask{r5, r2, r3}}, typ: "Mem", call: true}, // arg0=idxHi, arg1=idxLo, arg2=len, arg3=mem, returns memory. AuxInt contains report code (see PanicExtend in genericOps.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "LoweredPanicExtendB", argLength: 4, aux: "Int64", reg: regInfo{inputs: []regMask{r4, r1, r2}}, typ: "Mem", call: true}, // arg0=idxHi, arg1=idxLo, arg2=len, arg3=mem, returns memory. AuxInt contains report code (see PanicExtend in genericOps.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "LoweredPanicExtendB", argLength: 4, aux: "Int64", reg: regInfo{inputs: []regMask{si, cx, dx}}, typ: "Mem", call: true}, // arg0=idxHi, arg1=idxLo, arg2=len, arg3=mem, returns memory. AuxInt contains report code (see PanicExtend in genericOps.go).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS.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
    
    // Absorb boolean tests into block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/rewriteMIPS.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: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.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: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. 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)
  9. 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