Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for op2str2 (0.36 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		if isRegShiftOrExt(&p.To) {
    			// extended or shifted offset register.
    			c.checkShiftAmount(p, &p.To)
    
    			o1 = c.opstrr(p, p.As, true)
    			o1 |= c.encRegShiftOrExt(p, &p.To, p.To.Index) /* includes reg, op, etc */
    		} else {
    			// (Rn)(Rm), no extension or shift.
    			o1 = c.opstrr(p, p.As, false)
    			o1 |= uint32(p.To.Index&31) << 16
    		}
    		o1 |= uint32(p.To.Reg&31) << 5
    		rf := int(p.From.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    }
    
    // Create description of operation that could not be converted.
    static std::string GetOpDescriptionForDebug(Operation* inst) {
      const int kLargeElementsAttr = 16;
      std::string op_str;
      llvm::raw_string_ostream os(op_str);
      inst->getName().print(os);
      os << "(";
      if (!inst->getOperandTypes().empty()) {
        bool first = true;
        for (Type operand_type : inst->getOperandTypes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top