Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for REG (0.27 sec)

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

    (MOVHZreg y:(MOVHBRload _ _)) => y
    
    (MOVHreg y:(MOV(H|B)reg _)) => y // repeat
    
    (MOV(H|HZ)reg y:(MOV(HZ|H)reg x)) => (MOV(H|HZ)reg x)
    
    // W - there are more combinations than these
    
    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    // MULL r1,r2,(hi,lo)
    //
    //	LTYPEM cond reg ',' reg ',' regreg
    //	{
    //		outcode($1, $2, &$3, int32($5.Reg), &$7);
    //	}
    	MULL	R1, R2, (R3,R4)
    
    //
    // MULA r1,r2,r3,r4: (r1*r2+r3) & 0xffffffff . r4
    // MULAW{T,B} r1,r2,r3,r4
    //
    //	LTYPEN cond reg ',' reg ',' reg ',' spreg
    //	{
    //		$7.Type = obj.TYPE_REGREG2;
    //		$7.Offset = int64($9);
    //		outcode($1, $2, &$3, int32($5.Reg), &$7);
    //	}
    	MULAWT	R1, R2, R3, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

     * H  = H-U1
     * Z3 = Z1*Z2
     * Z3 = Z3*H << store-out Z3 result reg.. could override Z1, if slices have same backing array
     *
     * S1 = Z2*T2
     * S1 = Y1*S1
     * R  = Z1*T1
     * R  = Y2*R
     * R  = R-S1
     *
     * T1 = H*H
     * T2 = H*T1
     * U1 = U1*T1
     *
     * X3 = R*R
     * X3 = X3-T2
     * T1 = 2*U1
     * X3 = X3-T1 << store-out X3 result reg
     *
     * T2 = S1*T2
     * Y3 = U1-X3
     * Y3 = R*Y3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

     * H  = H-U1
     * Z3 = Z1*Z2
     * Z3 = Z3*H << store-out Z3 result reg.. could override Z1, if slices have same backing array
     *
     * S1 = Z2*T2
     * S1 = Y1*S1
     * R  = Z1*T1
     * R  = Y2*R
     * R  = R-S1
     *
     * T1 = H*H
     * T2 = H*T1
     * U1 = U1*T1
     *
     * X3 = R*R
     * X3 = X3-T2
     * T1 = 2*U1
     * X3 = X3-T1 << store-out X3 result reg
     *
     * T2 = S1*T2
     * Y3 = U1-X3
     * Y3 = R*Y3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    	}
    	if op == OpArgIntReg {
    		reg := v.Block.Func.Config.intParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op == OpArgFloatReg {
    		reg := v.Block.Func.Config.floatParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op.IsCall() {
    		if ac, ok := v.Aux.(*AuxCall); ok && ac.reg != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    					return errENOENT
    		*/
    	}
    	if ZosTraceLevel > 0 {
    		var name string
    		if reg == nil {
    			reg = regexp.MustCompile("(^unix\\.[^/]+$|.*\\/unix\\.[^/]+$)")
    		}
    		i := 1
    		pc, file, line, ok := runtime.Caller(i)
    		if ok {
    			name = runtime.FuncForPC(pc).Name()
    		}
    		for ok && reg.MatchString(runtime.FuncForPC(pc).Name()) {
    			i += 1
    			pc, file, line, ok = runtime.Caller(i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    #define RETPOLINE(reg) \
    	/*   CALL setup */     BYTE $0xE8; BYTE $(2+2); BYTE $0; BYTE $0; BYTE $0;	\
    	/* nospec: */									\
    	/*   PAUSE */           BYTE $0xF3; BYTE $0x90;					\
    	/*   JMP nospec */      BYTE $0xEB; BYTE $-(2+2);				\
    	/* setup: */									\
    	/*   MOVQ AX, 0(SP) */  BYTE $0x48|((reg&8)>>1); BYTE $0x89;			\
    	                        BYTE $0x04|((reg&7)<<3); BYTE $0x24;			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	activePods                 []*v1.Pod
    }
    
    func returnPolicyByName(testCase testMemoryManager) Policy {
    	switch testCase.policyName {
    	case policyTypeMock:
    		return &mockPolicy{
    			err: fmt.Errorf("fake reg error"),
    		}
    	case policyTypeStatic:
    		policy, _ := NewPolicyStatic(&testCase.machineInfo, testCase.reserved, topologymanager.NewFakeManager())
    		return policy
    	case policyTypeNone:
    		return NewPolicyNone()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	t.Parallel()
    
    	f, err := CreateTemp(t.TempDir(), "_Go_ReaddirOfFile")
    	if err != nil {
    		t.Fatal(err)
    	}
    	f.Write([]byte("foo"))
    	f.Close()
    	reg, err := Open(f.Name())
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer reg.Close()
    
    	names, err := reg.Readdirnames(-1)
    	if err == nil {
    		t.Error("Readdirnames succeeded; want non-nil error")
    	}
    	var pe *PathError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (TESTL (MOVLconst [c]) x) => (TESTLconst [c] x)
    (TESTW (MOVLconst [c]) x) => (TESTWconst [int16(c)] x)
    (TESTB (MOVLconst [c]) x) => (TESTBconst [int8(c)] x)
    
    // TEST %reg,%reg is shorter than CMP
    (CMPQconst x [0]) => (TESTQ x x)
    (CMPLconst x [0]) => (TESTL x x)
    (CMPWconst x [0]) => (TESTW x x)
    (CMPBconst x [0]) => (TESTB x x)
    (TESTQconst [-1] x) && x.Op != OpAMD64MOVQconst => (TESTQ x x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top