Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for plfd (0.06 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	OP_LD            = 0xe8000000 // ld
    	OP_PLA_PFX       = 0x06100000 // pla (prefix instruction word)
    	OP_PLA_SFX       = 0x38000000 // pla (suffix instruction word)
    	OP_PLD_PFX_PCREL = 0x04100000 // pld (prefix instruction word, R=1)
    	OP_PLD_SFX       = 0xe4000000 // pld (suffix instruction word)
    	OP_MFLR          = 0x7c0802a6 // mflr
    	OP_MTLR          = 0x7c0803a6 // mtlr
    	OP_MFCTR         = 0x7c0902a6 // mfctr
    	OP_MTCTR         = 0x7c0903a6 // mtctr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    //	{
    //		$7.Type = obj.TYPE_REGREG2;
    //		$7.Offset = int64($9);
    //		outcode($1, $2, &$3, int32($5.Reg), &$7);
    //	}
    	MULAWT	R1, R2, R3, R4
    //
    // PLD
    //
    //	LTYPEPLD oreg
    //	{
    //		outcode($1, Always, &$2, 0, &nullgen);
    //	}
    	PLD	(R1)
    	PLD	4(R1)
    
    //
    // RET
    //
    //	LTYPEA cond
    //	{
    //		outcode($1, $2, &nullgen, 0, &nullgen);
    //	}
    	BEQ	2(PC)
    	RET
    
    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/compress/gzip/testdata/issue6550.gz.base64

    dirJx2r0nkupUac1GLQ6M2a9gkGdlrnt6rbHsJzoUcE9TmS9yiDcSVoogUWIbP7BqVFszu9bmPPStWKa8L2pilycEsTRevXdgRbmH83oNiNO1qnZxwZkdoojDFAhqWf4jHuYF5lzOiW4b3P+3PzVnwA4Ck33zvwJPHt3Qg5dXDLbPuvOL3OeTFVlpAIiZSjCSYAXLDm4R5NxiHKOBQ5Xt4TgvOpwynXdNGlMoQ4297Xm5yDKAILeh0i+lFD/1XQbzeQTqWP2pEkMpaqqDSkaQ0WEEPOEOM7ntVwxm88eK/lyWcmUi4e6WtIL+YpGOaVlRp3k8U7Pb7X9xFhm0i52Gsv80oaQd/jSEwdvSWU4/W67dXY2c69TqU6ESgJ/NFVJCD/ddHi5RHFXD2adblmyvBSZouRmLVczFVHN69uvfG3tEvJipfrDF5ebF2IQGMvfnyLmcdzGW4qeBz+golrNcCiIw795XMmr+5mjfD5/aBVNohk2VahN...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 21 14:55:12 UTC 2019
    - 85.3K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		// like print unrelated messages in the middle of a TestFoo line,
    		// which confuses test2json. Setting os.Stderr = os.Stdout will make
    		// them share a single pfd, which will hold a lock for each program
    		// write, preventing any interleaving.
    		//
    		// It might be nice to set Stderr = Stdout always, or perhaps if
    		// we can tell they are the same file, but for now -v=json is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		}
    		o2 = c.oshr(int(p.From.Reg), 0, REGTMP, int(p.Scond))
    		if o.flag&LPCREL != 0 {
    			o3 = o2
    			o2 = c.oprrr(p, AADD, int(p.Scond)) | REGTMP&15 | (REGPC&15)<<16 | (REGTMP&15)<<12
    		}
    
    	case 95: /* PLD off(reg) */
    		o1 = 0xf5d0f000
    
    		o1 |= (uint32(p.From.Reg) & 15) << 16
    		if p.From.Offset < 0 {
    			o1 &^= (1 << 23)
    			o1 |= uint32((-p.From.Offset) & 0xfff)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top