Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for movbe (0.16 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/_gen/generic.rules

    	&& clobber(move)
    	=> (Zero {t} [n] dst1 mem)
    (Move {t} [n] dst1 src1 move:(Move {t} [n] dst2 _ mem))
    	&& move.Uses == 1
    	&& isSamePtr(dst1, dst2) && disjoint(src1, n, dst2, n)
    	&& clobber(move)
    	=> (Move {t} [n] dst1 src1 mem)
    (Zero {t} [n] dst1 vardef:(VarDef {x} move:(Move {t} [n] dst2 _ mem)))
    	&& move.Uses == 1 && vardef.Uses == 1
    	&& isSamePtr(dst1, dst2)
    	&& clobber(move, vardef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word move
    (Move [s] dst src mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Move [8]
    		(OffPtr <dst.Type> dst [s-8])
    		(OffPtr <src.Type> src [s-8])
    		(Move [s-s%16] dst src mem))
    (Move [s] dst src mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Move [16]
    		(OffPtr <dst.Type> dst [s-16])
    		(OffPtr <src.Type> src [s-16])
    		(Move [s-s%16] dst src mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected %v in the podBackoffQ", hpp1.Name)
    	}
    
    	// Move clock by podInitialBackoffDuration, so that pods in the unschedulablePods would pass the backing off,
    	// and the pods will be moved into activeQ.
    	c.Step(q.podInitialBackoffDuration)
    	q.flushBackoffQCompleted(logger) // flush the completed backoffQ to move hpp1 to activeQ.
    	q.MoveAllToActiveOrBackoffQueue(logger, NodeAdd, nil, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    }
    
    Node* Unary(ops::NodeOut a, const GraphDefBuilder::Options& opts) {
      return ops::UnaryOp("UnaryTest", std::move(a), opts);
    }
    
    Node* Binary(ops::NodeOut a, ops::NodeOut b,
                 const GraphDefBuilder::Options& opts) {
      return ops::BinaryOp("BinaryTest", std::move(a), std::move(b), opts);
    }
    
    Node* BinaryUnknownShape(ops::NodeOut a, ops::NodeOut b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/rewriteWasm.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Move [0] _ _ mem)
    	// result: mem
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		mem := v_2
    		v.copyOf(mem)
    		return true
    	}
    	// match: (Move [1] dst src mem)
    	// result: (I64Store8 dst (I64Load8U src mem) mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return {};
      }
      return std::move(status_or_node_def.value());
    }
    
    // Converts a mlir padding StringRef to TfLitePadding.
    // Returns std::nullopt if conversion fails.
    static std::optional<TfLitePadding> GetTflitePadding(Operation* inst,
                                                         llvm::StringRef padding) {
      const tflite::Padding padding_attr =
          std::move(llvm::StringSwitch<tflite::Padding>(padding)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. 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