Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for bcr (0.12 sec)

  1. src/runtime/defs_windows_arm.go

    	r11          uint32
    	r12          uint32
    
    	spr  uint32
    	lrr  uint32
    	pc   uint32
    	cpsr uint32
    
    	fpscr   uint32
    	padding uint32
    
    	floatNeon [16]neon128
    
    	bvr      [8]uint32
    	bcr      [8]uint32
    	wvr      [1]uint32
    	wcr      [1]uint32
    	padding2 [2]uint32
    }
    
    func (c *context) ip() uintptr { return uintptr(c.pc) }
    func (c *context) sp() uintptr { return uintptr(c.spr) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/defs_windows_arm64.go

    	contextflags uint32
    	cpsr         uint32
    	x            [31]uint64 // fp is x[29], lr is x[30]
    	xsp          uint64
    	pc           uint64
    	v            [32]neon128
    	fpcr         uint32
    	fpsr         uint32
    	bcr          [8]uint32
    	bvr          [8]uint64
    	wcr          [2]uint32
    	wvr          [2]uint64
    }
    
    func (c *context) ip() uintptr { return uintptr(c.pc) }
    func (c *context) sp() uintptr { return uintptr(c.xsp) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    used operands.
    
    BC op1, op2, op3
    
    	  op1: type of branch
    	      16 -> bctr (branch on ctr)
    	      12 -> bcr  (branch if cr bit is set)
    	      8  -> bcr+bctr (branch on ctr and cr values)
    		4  -> bcr != 0 (branch if specified cr bit is not set)
    
    		There are more combinations but these are the most common.
    
    	  op2: condition register field and condition bit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K 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/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)
  6. 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)
  7. src/cmd/internal/obj/s390x/asmz.go

    		} else if p.As == ACSG {
    			zRSY(op_CSG, uint32(p.From.Reg), uint32(p.Reg), uint32(p.To.Reg), uint32(v), asm)
    		}
    
    	case 80: // sync
    		zRR(op_BCR, 14, 0, asm) // fast-BCR-serialization
    
    	case 81: // float to fixed and fixed to float moves (no conversion)
    		switch p.As {
    		case ALDGR:
    			zRRE(op_LDGR, uint32(p.To.Reg), uint32(p.From.Reg), asm)
    		case ALGDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function isSyntheticClick(ev){if(ev.type==='click'){if(ev.detail===0){return true;}
    var t=Gestures.findOriginalTarget(ev);var bcr=t.getBoundingClientRect();var x=ev.pageX,y=ev.pageY;return!(x>=bcr.left&&x<=bcr.right&&(y>=bcr.top&&y<=bcr.bottom));}
    return false;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top