Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for opirr (0.03 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    		o3 = OP_IR(c.opir(ALU32ID), uint32(v>>32), uint32(p.To.Reg))
    		o4 = OP_12IRR(c.opirr(ALU52ID), uint32(v>>52), uint32(p.To.Reg), uint32(p.To.Reg))
    
    	case 60: // add $dcon,r1,r2
    		v := c.vregoff(&p.From)
    		o1 = OP_IR(c.opir(ALU12IW), uint32(v>>12), uint32(REGTMP))
    		o2 = OP_12IRR(c.opirr(AOR), uint32(v), uint32(REGTMP), uint32(REGTMP))
    		o3 = OP_IR(c.opir(ALU32ID), uint32(v>>32), uint32(REGTMP))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    			r = o.param
    		}
    		v := c.regoff(&p.From)
    		switch o.size {
    		case 12:
    			o1 = OP_IRR(c.opirr(ALUI), uint32((v+1<<15)>>16), REGZERO, REGTMP)
    			o2 = OP_RRR(c.oprrr(add), r, REGTMP, REGTMP)
    			o3 = OP_IRR(c.opirr(a), uint32(v), REGTMP, p.To.Reg)
    
    		case 4:
    			o1 = OP_IRR(c.opirr(a), uint32(v), r, p.To.Reg)
    		}
    
    	case 28: /* mov fr,[sl]ext/auto/oreg ==> swc1 o(r) */
    		a := AMOVF
    		if p.As == AMOVD {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    		if p.To.Type != obj.TYPE_NONE {
    			o2 |= (uint32(p.To.Reg) & 15) << 12
    		}
    
    	case 14: /* movb/movbu/movh/movhu R,R */
    		o1 = c.oprrr(p, ASLL, int(p.Scond))
    
    		if p.As == AMOVBU || p.As == AMOVHU {
    			o2 = c.oprrr(p, ASRL, int(p.Scond))
    		} else {
    			o2 = c.oprrr(p, ASRA, int(p.Scond))
    		}
    
    		r := int(p.To.Reg)
    		o1 |= (uint32(p.From.Reg)&15)<<0 | (uint32(r)&15)<<12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	c, s := localPipe(t)
    	go func() {
    		Client(c, testConfig).sendAlert(alertUnknownCA)
    		c.Close()
    	}()
    
    	err := Server(s, testConfig).Handshake()
    	s.Close()
    	var opErr *net.OpError
    	if !errors.As(err, &opErr) || opErr.Err != error(alertUnknownCA) {
    		t.Errorf("Got error: %s; expected: %s", err, error(alertUnknownCA))
    	}
    }
    
    func TestClose(t *testing.T) {
    	c, s := localPipe(t)
    	go c.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top