Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for nora (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "XORconst", argLength: 1, reg: gp11, asm: "XOR", aux: "Int64", typ: "UInt64"}, // arg0 ^ auxInt
    		{name: "NOR", argLength: 2, reg: gp21, asm: "NOR", commutative: true},                // ^(arg0 | arg1)
    		{name: "NORconst", argLength: 1, reg: gp11, asm: "NOR", aux: "Int64"},                // ^(arg0 | auxInt)
    
    		{name: "NEGV", argLength: 1, reg: gp11},                // -arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    		{name: "XORconst", argLength: 1, reg: gp11, asm: "XOR", aux: "Int64", typ: "UInt64"}, // arg0 ^ auxInt
    		{name: "NOR", argLength: 2, reg: gp21, asm: "NOR", commutative: true},                // ^(arg0 | arg1)
    		{name: "NORconst", argLength: 1, reg: gp11, asm: "NOR", aux: "Int64"},                // ^(arg0 | auxInt)
    
    		{name: "NEGV", argLength: 1, reg: gp11},                // -arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    	ROTR	$12, R8		// 00284302
    	ROTRV	$63, R22	// 0036b7fe
    
    
    //	LAND/LXOR/LNOR/LOR rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	R14, R8		// 010e4024
    	XOR	R15, R9		// 012f4826
    	NOR	R16, R10	// 01505027
    	OR	R17, R11	// 01715825
    
    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    	XOR	$341, R1, R23	// 38370155
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (RotateLeft32 x y) => (ROTR  x (NEGV <y.Type> y))
    (RotateLeft64 x y) => (ROTRV x (NEGV <y.Type> y))
    
    // unary ops
    (Neg(64|32|16|8) ...) => (NEGV ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(64|32|16|8) x) => (NOR (MOVVconst [0]) x)
    
    (Sqrt ...) => (SQRTD ...)
    (Sqrt32 ...) => (SQRTF ...)
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    // unary ops
    (Neg(64|32|16|8) ...) => (NEGV ...)
    (Neg(32|64)F ...) => (NEG(F|D) ...)
    
    (Com(64|32|16|8) x) => (NOR (MOVVconst [0]) x)
    
    (Sqrt ...) => (SQRTD ...)
    (Sqrt32 ...) => (SQRTF ...)
    
    // boolean ops -- booleans are represented with 0=false, 1=true
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    			if x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {
    				fmt.Fprintf(s, "%q", x)
    				return
    			}
    		}
    
    		// Only include typ if it's neither the default nor untyped type
    		// for the constant value.
    		if k := val.Kind(); typ == types.Types[types.DefaultKinds[k]] || typ == types.UntypedTypes[k] {
    			fmt.Fprint(s, val)
    		} else {
    			fmt.Fprintf(s, "%v(%v)", typ, val)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	NAND R3, R4, R5                 // 7c851bb8
    	NANDCC R3, R4, R5               // 7c851bb9
    	EQV R3, R4, R5                  // 7c851a38
    	EQVCC R3, R4, R5                // 7c851a39
    	NOR R3, R4, R5                  // 7c8518f8
    	NORCC R3, R4, R5                // 7c8518f9
    
    	SUB R3, R4                      // 7c832050
    	SUB R3, R4, R5                  // 7ca32050
    	SUBC R3, R4                     // 7c832010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (SUB x (MOVWconst [c])) => (SUBconst [c] x)
    (AND x (MOVWconst [c])) => (ANDconst [c] x)
    (OR  x (MOVWconst [c])) => (ORconst  [c] x)
    (XOR x (MOVWconst [c])) => (XORconst [c] x)
    (NOR x (MOVWconst [c])) => (NORconst [c] x)
    
    (SLL x (MOVWconst [c])) => (SLLconst x [c&31])
    (SRL x (MOVWconst [c])) => (SRLconst x [c&31])
    (SRA x (MOVWconst [c])) => (SRAconst x [c&31])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64_OpCom16(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com16 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCom32(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Com32 x)
    	// result: (NOR x x)
    	for {
    		x := v_0
    		v.reset(OpPPC64NOR)
    		v.AddArg2(x, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    			ld = ppc64.ALWAR
    			st = ppc64.ASTWCCC
    		}
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    		// LWSYNC - Assuming shared data not write-through-required nor
    		// caching-inhibited. See Appendix B.2.2.2 in the ISA 2.07b.
    		plwsync := s.Prog(ppc64.ALWSYNC)
    		plwsync.To.Type = obj.TYPE_NONE
    		// LBAR or LWAR
    		p := s.Prog(ld)
    		p.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top