Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for movbeq (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top