Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for stwx (0.07 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	case STBX, STBUX, STHX, STHUX, STWX, STWUX, STDX, STDUX,
    		STHBRX, STWBRX, STDBRX, STSWX, STFIWX:
    		return "MOV" + op[2:len(op)-1] + " " + args[0] + ",(" + args[2] + ")(" + args[1] + ")"
    
    	case STDCXCC, STWCXCC, STHCXCC, STBCXCC:
    		return op + " " + args[0] + ",(" + args[2] + ")(" + args[1] + ")"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    	case LWA, LWAX, LWAUX:
    		return true
    	case LD, LDU, LDX, LDUX:
    		return true
    	case LQ:
    		return true
    	case STB, STBU, STBX, STBUX:
    		return true
    	case STH, STHU, STHX, STHUX:
    		return true
    	case STW, STWU, STWX, STWUX:
    		return true
    	case STD, STDU, STDX, STDUX:
    		return true
    	case STQ:
    		return true
    	case LHBRX, LWBRX, STHBRX, STWBRX:
    		return true
    	case LBARX, LWARX, LHARX, LDARX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    	MOVHZ  (R3), R4		<=>	lhz r4,0(r3)
    	MOVHU 2(R3), R4		<=>	lhau r4,2(r3)
    	MOVBZ (R3), R4		<=>	lbz r4,0(r3)
    
    	MOVD R4,(R3)		<=>	std r4,0(r3)
    	MOVW R4,(R3)		<=>	stw r4,0(r3)
    	MOVW R4,(R3+R5)		<=>	stwx r4,r3,r5
    	MOVWU R4,4(R3)		<=>	stwu r4,4(r3)
    	MOVH R4,2(R3)		<=>	sth r4,2(r3)
    	MOVBU R4,(R3)(R5)		<=>	stbux r4,r3,r5
    
    4. Compares
    
    When an instruction does a compare or other operation that might
    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/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	STHBRX:         "sthbrx",
    	STHU:           "sthu",
    	STHUX:          "sthux",
    	STHX:           "sthx",
    	STMW:           "stmw",
    	STSWI:          "stswi",
    	STSWX:          "stswx",
    	STW:            "stw",
    	STWBRX:         "stwbrx",
    	STWU:           "stwu",
    	STWUX:          "stwux",
    	STWX:           "stwx",
    	SUBFC:          "subfc",
    	SUBFCCC:        "subfc.",
    	SUBFCO:         "subfco",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		return OPVCC(31, 407, 0, 0) /* sthx */
    	case AMOVHBR:
    		return OPVCC(31, 918, 0, 0) /* sthbrx */
    
    	case AMOVHZU, AMOVHU:
    		return OPVCC(31, 439, 0, 0) /* sthux */
    
    	case AMOVWZ, AMOVW:
    		return OPVCC(31, 151, 0, 0) /* stwx */
    
    	case AMOVWZU, AMOVWU:
    		return OPVCC(31, 183, 0, 0) /* stwux */
    	case ASTSW:
    		return OPVCC(31, 661, 0, 0) /* stswx */
    	case AMOVWBR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/mdo/writer-stax.vm

         * @throws IOException IOException if any
         */
        public void write(Writer writer, ${root.name} ${rootLcapName}) throws IOException, XMLStreamException {
            XMLOutputFactory factory = new com.ctc.wstx.stax.WstxOutputFactory();
            factory.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, false);
            factory.setProperty(com.ctc.wstx.api.WstxOutputProperties.P_USE_DOUBLE_QUOTES_IN_XML_DECL, true);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

    #else
        public ${root.name} read(Reader reader, boolean strict) throws XMLStreamException {
    #end
            XMLInputFactory factory = new com.ctc.wstx.stax.WstxInputFactory();
            factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, false);
    #if ( $locationTracking )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. src/runtime/cgo/abi_ppc64x.h

    	MOVD	$(offset+16*0), rtmp  \
    	STVX	V20, (rtmp)(R1)       \
    	MOVD	$(offset+16*1), rtmp  \
    	STVX	V21, (rtmp)(R1)       \
    	MOVD	$(offset+16*2), rtmp  \
    	STVX	V22, (rtmp)(R1)       \
    	MOVD	$(offset+16*3), rtmp  \
    	STVX	V23, (rtmp)(R1)       \
    	MOVD	$(offset+16*4), rtmp  \
    	STVX	V24, (rtmp)(R1)       \
    	MOVD	$(offset+16*5), rtmp  \
    	STVX	V25, (rtmp)(R1)       \
    	MOVD	$(offset+16*6), rtmp  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. maven-plugin-api/pom.xml

                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <templates>
                    <template>reader-stax.vm</template>
                    <template>writer-stax.vm</template>
                  </templates>
                  <params>
                    <param>packageModelV4=org.apache.maven.api.plugin.descriptor.lifecycle</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. maven-api-impl/pom.xml

                  </models>
                  <templates>
                    <template>merger.vm</template>
                    <template>transformer.vm</template>
                    <template>reader-stax.vm</template>
                    <template>writer-stax.vm</template>
                  </templates>
                  <params>
                    <param>forcedIOModelVersion=1.2.0</param>
                    <param>packageModelV3=org.apache.maven.settings</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top