Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for optab (0.11 sec)

  1. src/cmd/internal/obj/x86/avx_optabs.go

    //	VTHING ymm2/m256, ymmV, ymm1
    //
    // The opcode array in the corresponding Optab entry
    // should contain the (VEX prefixes, opcode byte) pair
    // for each of the two forms.
    // For example, the entries for VPXOR are:
    //
    //	VPXOR xmm2/m128, xmmV, xmm1
    //	VEX.NDS.128.66.0F.WIG EF /r
    //
    //	VPXOR ymm2/m256, ymmV, ymm1
    //	VEX.NDS.256.66.0F.WIG EF /r
    //
    // Produce this optab entry:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			}
    			return s.newValue1(ssa.OpSlicePtrUnchecked, n.Type(), a)
    		} else {
    			return s.newValue1(ssa.OpStringPtr, n.Type(), a)
    		}
    
    	case ir.OITAB:
    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		return s.newValue1(ssa.OpITab, n.Type(), a)
    
    	case ir.OIDATA:
    		n := n.(*ir.UnaryExpr)
    		a := s.expr(n.X)
    		return s.newValue1(ssa.OpIData, n.Type(), a)
    
    	case ir.OMAKEFACE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    	case OpHmul32u:
    		return rewriteValueS390X_OpHmul32u(v)
    	case OpHmul64:
    		v.Op = OpS390XMULHD
    		return true
    	case OpHmul64u:
    		v.Op = OpS390XMULHDU
    		return true
    	case OpITab:
    		return rewriteValueS390X_OpITab(v)
    	case OpInterCall:
    		v.Op = OpS390XCALLinter
    		return true
    	case OpIsInBounds:
    		return rewriteValueS390X_OpIsInBounds(v)
    	case OpIsNonNil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top