Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MVN (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AND x x) => x
    (OR  x x) => x
    (XOR x x) => (MOVDconst [0])
    (BIC x x) => (MOVDconst [0])
    (EON x x) => (MOVDconst [-1])
    (ORN x x) => (MOVDconst [-1])
    (AND x (MVN y)) => (BIC x y)
    (XOR x (MVN y)) => (EON x y)
    (OR  x (MVN y)) => (ORN x y)
    (MVN (XOR x y)) => (EON x y)
    (NEG (NEG x)) => x
    
    (CSEL [cc] (MOVDconst [-1]) (MOVDconst [0]) flag) => (CSETM [cc] flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// MVN <Wd>, <Wm> {, <shift> #<amount> }
    	{0xff2003e0, 0x2a2003e0, MVN, instArgs{arg_Wd, arg_Wm_shift__LSL_0__LSR_1__ASR_2__ROR_3__0_31}, nil},
    	// ORN <Wd>, <Wn>, <Wm> {, <shift> #<amount> }
    	{0xff208000, 0x2a200000, ORN, instArgs{arg_Wd, arg_Wn, arg_Wm_shift__LSL_0__LSR_1__ASR_2__ROR_3__0_31}, nil},
    	// MVN <Xd>, <Xm> {, <shift> #<amount> }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"MVN","Bits":"0|0|1|0|1|0|1|0|shift:2|1|Rm:5|imm6:6|1|1|1|1|1|Rd:5","Arch":"32-bit variant","Syntax":"MVN <Wd>, <Wm>{, <shift> #<amount>}","Code":"","Alias":"This instruction is an alias of the ORN (shifted register) instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.1.0+</version>
              <description>
                Indicates that this project is the root project, located in the upper directory of the source tree.
                This is the directory which may contain the .mvn directory.
    
                @since Maven 4.0.0
              </description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVH, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 45, 4, 0, 0, 0}, /* also MOVHU */
    	{AMOVW, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 45, 4, 0, 0, 0}, /* also MOVWU */
    	/* TODO: MVN C_SHIFT */
    
    	/* MOVs that become MOVK/MOVN/MOVZ/ADD/SUB/OR */
    	{AMOVW, C_MBCON, C_NONE, C_NONE, C_ZREG, C_NONE, 32, 4, 0, 0, 0},
    	{AMOVD, C_MBCON, C_NONE, C_NONE, C_ZREG, C_NONE, 32, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top