Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bclr (0.04 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BCL $20,CR0LT,$1,LR             // 4e800821
    	BCL $20,CR0LT,$0,LR             // 4e800021
    	BCL $20,CR0LT,LR                // 4e800021
    	BCL $20,CR0GT,LR                // 4e810021
    	BCL 20,CR0LT,LR                 // BCL $20,CR0LT,LR // 4e800021
    	BCL 20,undefined_symbol,LR      // BCL $20,CR0LT,LR // 4e800021
    	BCL 20,undefined_symbol+1,LR    // BCL $20,CR0GT,LR // 4e810021
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	OP_TOCSAVE       = 0xf8410018 // std r2,24(r1)
    	OP_NOP           = 0x60000000 // nop
    	OP_BL            = 0x48000001 // bl 0
    	OP_BCTR          = 0x4e800420 // bctr
    	OP_BCTRL         = 0x4e800421 // bctrl
    	OP_BCL           = 0x40000001 // bcl
    	OP_ADDI          = 0x38000000 // addi
    	OP_ADDIS         = 0x3c000000 // addis
    	OP_LD            = 0xe8000000 // ld
    	OP_PLA_PFX       = 0x06100000 // pla (prefix instruction word)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    			AREM, AREMU, AREMW, AREMUW,
    			AADDUW, ASH1ADD, ASH1ADDUW, ASH2ADD, ASH2ADDUW, ASH3ADD, ASH3ADDUW, ASLLIUW,
    			AANDN, AORN, AXNOR, AMAX, AMAXU, AMIN, AMINU, AROL, AROLW, AROR, ARORW, ARORI, ARORIW,
    			ABCLR, ABCLRI, ABEXT, ABEXTI, ABINV, ABINVI, ABSET, ABSETI:
    			p.Reg = p.To.Reg
    		}
    	}
    
    	// Rewrite instructions with constant operands to refer to the immediate
    	// form of the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FlagEQ"}, // CC=0 (equal)
    		{name: "FlagLT"}, // CC=1 (less than)
    		{name: "FlagGT"}, // CC=2 (greater than)
    		{name: "FlagOV"}, // CC=3 (overflow)
    
    		// Fast-BCR-serialization to ensure store-load ordering.
    		{name: "SYNC", argLength: 1, reg: sync, asm: "SYNC", typ: "Mem"},
    
    		// Atomic loads. These are just normal loads but return <value,memory> tuples
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		}
    
    		pp := s.Call(v)
    
    		// Convert the call into a blrl with hint this is not a subroutine return.
    		// The full bclrl opcode must be specified when passing a hint.
    		pp.As = ppc64.ABCL
    		pp.From.Type = obj.TYPE_CONST
    		pp.From.Offset = ppc64.BO_ALWAYS
    		pp.Reg = ppc64.REG_CR0LT // The preferred value if BI is ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (RoundToEven x) => (FIDBR [4] x)
    (Round       x) => (FIDBR [1] x)
    (FMA     x y z) => (FMADD z x y)
    
    (Sqrt32    ...) => (FSQRTS ...)
    
    // Atomic loads and stores.
    // The SYNC instruction (fast-BCR-serialization) prevents store-load
    // reordering. Other sequences of memory operations (load-load,
    // store-store and load-store) are already guaranteed not to be reordered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-rand-max.in

    �b��hUb�0���]T(�9��Q��e�}�!�A��+���	����t��o<�K�S#ro|��hT�Ί��Td ����W���3�؁Nt2��ܳ�!2���z�T;	Ծ��s�&V<�R�O��rq��5����/x�!�P=�H�N޽�8�;~��j/?�ܾ+&DM����l����B� �)C5��BcR��Ų@�����L��z���xW�M1U���~߬�xl4��\����4R�E�NX�\��ͫ��`lc��|.F]xP]�`G�t\�,Ż�������[����lp�+^�9ԃ)[��_��{�LH���~�rG�^�u���h��׵r\�Vp��������)��=���9-���4��3_��W0/!�ᘮ��uG���W�)e[�y=��J�$-�6dw�:��
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top