Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for movbeq (0.2 sec)

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

    		{name: "MOVBEQloadidx8", argLength: 3, reg: gploadidx, asm: "MOVBEQ", scale: 8, aux: "SymOff", typ: "UInt64", symEffect: "Read"},                    // load and swap 8 bytes from arg0+8*arg1+auxint+aux. arg2=mem
    		// indexed MOVBE stores
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/rewriteMIPS.go

    func rewriteValueMIPS_OpMIPSMOVBreg(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (MOVBreg x:(MOVBload _ _))
    	// result: (MOVWreg x)
    	for {
    		x := v_0
    		if x.Op != OpMIPSMOVBload {
    			break
    		}
    		v.reset(OpMIPSMOVWreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBreg x:(MOVBreg _))
    	// result: (MOVWreg x)
    	for {
    		x := v_0
    		if x.Op != OpMIPSMOVBreg {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	{ASTRL, yincq, Px, opBytes{0x0f, 0x00, 01}},
    	{ASTRQ, yincq, Pw, opBytes{0x0f, 0x00, 01}},
    	{AXSETBV, ynone, Pm, opBytes{0x01, 0xd1, 0}},
    	{AMOVBEW, ymovbe, Pq, opBytes{0x38, 0xf0, 0, 0x38, 0xf1, 0}},
    	{AMOVBEL, ymovbe, Pm, opBytes{0x38, 0xf0, 0, 0x38, 0xf1, 0}},
    	{AMOVBEQ, ymovbe, Pw, opBytes{0x0f, 0x38, 0xf0, 0, 0x0f, 0x38, 0xf1, 0}},
    	{ANOPW, ydivl, Pe, opBytes{0x0f, 0x1f, 00}},
    	{ANOPL, ydivl, Px, opBytes{0x0f, 0x1f, 00}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_MVI     uint32 = 0x9200 // FORMAT_SI         MOVE (immediate)
    	op_MVIY    uint32 = 0xEB52 // FORMAT_SIY        MOVE (immediate)
    	op_MVN     uint32 = 0xD100 // FORMAT_SS1        MOVE NUMERICS
    	op_MVO     uint32 = 0xF100 // FORMAT_SS2        MOVE WITH OFFSET
    	op_MVPG    uint32 = 0xB254 // FORMAT_RRE        MOVE PAGE
    	op_MVST    uint32 = 0xB255 // FORMAT_RRE        MOVE STRING
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #define polyAdd(S) ADDQ S, acc0; ADCQ 8+S, acc1; ADCQ $1, acc2
    #define polyMulStage1 MOVQ (0*8)(BP), AX; MOVQ AX, t2; MULQ acc0; MOVQ AX, t0; MOVQ DX, t1; MOVQ (0*8)(BP), AX; MULQ acc1; IMULQ acc2, t2; ADDQ AX, t1; ADCQ DX, t2
    #define polyMulStage2 MOVQ (1*8)(BP), AX; MOVQ AX, t3; MULQ acc0; ADDQ AX, t1; ADCQ $0, DX; MOVQ DX, acc0; MOVQ (1*8)(BP), AX; MULQ acc1; ADDQ AX, t2; ADCQ $0, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	case REG_UXTH <= r && r < REG_UXTW:
    		return roff(rm, 1, num)
    	case REG_UXTW <= r && r < REG_UXTX:
    		if a.Type == obj.TYPE_MEM {
    			if num == 0 {
    				// According to the arm64 specification, for instructions MOVB, MOVBU and FMOVB,
    				// the extension amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    				// But in Go, we don't distinguish between Rn.UXTW and Rn.UXTW<<0, so we encode it as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    namespace {
    // This pattern matches and merges a tfl.reshape under the following
    // condition:
    // * The input's defining op is another tfl.reshape.
    // TODO(antiagainst): This pattern probably should be moved to the peephole
    // category, after we have the infra for peephole passes.
    struct RemoveAdjacentReshape : public RewritePattern {
      explicit RemoveAdjacentReshape(MLIRContext* context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                               std::move(graph));
      }
    
      SimpleSavedModelMLIRImportInput(const MetaGraphDef* meta_graph_def,
                                      const GraphDebugInfo& debug_info,
                                      std::unique_ptr<Graph> graph)
          : SavedModelMLIRImportInput(meta_graph_def, debug_info),
            graph_(std::move(graph)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    		case AMOVW: /* load/store/move word with sign extension; move 32-bit literals  */
    			opset(AMOVWZ, r0) /* Same as above, but zero extended */
    
    		case AVCLZLSBB:
    			opset(AVCTZLSBB, r0)
    
    		case AADD,
    			AADDIS,
    			AANDCC, /* and. Rb,Rs,Ra; andi. $uimm,Rs,Ra */
    			AANDISCC,
    			AFMOVSX,
    			AFMOVSZ,
    			ALSW,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
    
    // scripts/fuse_gtest.py depends on gtest's own header being #included
    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
Back to top