codegen_c.cc 25.9 KB
Newer Older
1 2 3 4
/*!
 *  Copyright (c) 2017 by Contributors
 * \file codegen_c.cc
 */
5
#include <iomanip>
6
#include <cctype>
7
#include "codegen_c.h"
8
#include "../pass/ir_util.h"
9
#include "../arithmetic/compute_expr.h"
10 11 12 13 14 15

namespace tvm {
namespace codegen {

using namespace ir;

16
void CodeGenC::Init(bool output_ssa) {
17
  print_ssa_form_ = output_ssa;
18 19 20 21 22
}

void CodeGenC::InitFuncState(LoweredFunc f) {
  alloc_storage_scope_.clear();
  handle_data_type_.clear();
23
  CodeGenSourceBase::ClearFuncState();
24
}
25 26

void CodeGenC::ReserveKeywordsAsUnique() {
27
  // skip the first underscore, so SSA variable starts from _1
28
  GetUniqueName("_");
29
  GetUniqueName("extern");
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  GetUniqueName("void");
  GetUniqueName("int");
  GetUniqueName("float");
  GetUniqueName("double");
  GetUniqueName("char");
  GetUniqueName("unsigned");
  GetUniqueName("short");
  GetUniqueName("long");
  GetUniqueName("if");
  GetUniqueName("else");
  GetUniqueName("switch");
  GetUniqueName("case");
  GetUniqueName("default");
  GetUniqueName("for");
  GetUniqueName("do");
  GetUniqueName("while");
  GetUniqueName("goto");
  GetUniqueName("register");
  GetUniqueName("continue");
  GetUniqueName("break");
  GetUniqueName("typedef");
  GetUniqueName("struct");
  GetUniqueName("enum");
  GetUniqueName("union");
  GetUniqueName("return");
}

void CodeGenC::AddFunction(LoweredFunc f) {
  // clear previous generated state.
  this->InitFuncState(f);
  // reserve keywords
  ReserveKeywordsAsUnique();
62 63
  // add to alloc buffer type.
  for (const auto & kv : f->handle_data_type) {
64
    RegisterHandleType(kv.first.get(), kv.second.type());
65
  }
66

67 68 69
  this->stream << "void " << f->name << "(";
  for (size_t i = 0; i < f->args.size(); ++i) {
    Var v = f->args[i];
70 71
    std::string vid = AllocVarID(v.get());
    if (i != 0) stream << ", ";
72
    if (v.type().is_handle()) {
73
      auto it = alloc_storage_scope_.find(v.get());
74
      if (it != alloc_storage_scope_.end())
75
        PrintStorageScope(it->second, stream);
76 77 78 79 80 81
      stream << ' ';

      if (handle_data_type_.count(v.get())) {
        PrintType(handle_data_type_.at(v.get()), stream);
      } else {
        stream << "void";
82
      }
83
      stream << "*";
84

85 86 87
      if (f->is_restricted && restrict_keyword_.length() != 0) {
        stream << ' ' << restrict_keyword_;
      }
88 89 90
    } else {
      PrintType(v.type(), stream);
    }
91 92 93
    stream << ' ' << vid;
  }
  stream << ") {\n";
94
  this->PreFunctionBody(f);
95
  int func_scope = this->BeginScope();
96
  this->PrintStmt(f->body);
97
  this->EndScope(func_scope);
98
  this->PrintIndent();
99 100 101 102
  this->stream << "}\n\n";
}

std::string CodeGenC::Finish() {
103
  return decl_stream.str() + stream.str();
104 105 106 107 108
}

void CodeGenC::PrintExpr(const Expr& n, std::ostream& os) {  // NOLINT(*)
  if (print_ssa_form_) {
    std::ostringstream temp;
109
    VisitExpr(n, temp);
110 111
    os << SSAGetID(temp.str(), n.type());
  } else {
112
    VisitExpr(n, os);
113 114 115
  }
}

116 117 118 119 120 121 122
void CodeGenC::PrintSSAAssign(
    const std::string& target, const std::string& src, Type t) {
  PrintType(t, stream);
  stream << ' ' << target << " = ";
  if (src.length() > 3 &&
      src[0] == '(' && src[src.length() - 1] == ')') {
    stream << src.substr(1, src.length() - 2);
123
  } else {
124
    stream << src;
125
  }
126
  stream << ";\n";
127 128 129
}

// Print a reference expression to a buffer.
130
std::string CodeGenC::GetBufferRef(
131
    Type t, const Variable* buffer, Expr index) {
132
  std::ostringstream os;
133
  std::string vid = GetVarID(buffer);
134 135 136 137
  std::string scope;
  if (alloc_storage_scope_.count(buffer)) {
    scope = alloc_storage_scope_.at(buffer);
  }
138
  bool is_vol = volatile_buf_.count(buffer) != 0;
139
  if (t.lanes() == 1) {
140
    if (!HandleTypeMatch(buffer, t) || is_vol) {
141
      os << "((";
142 143 144 145 146 147 148
      if (is_vol) {
        os << "volatile ";
      }
      if (scope.length() != 0) {
        PrintStorageScope(scope, os);
      }
      os << ' ';
149 150 151 152 153 154 155 156 157 158 159
      PrintType(t, os);
      os << "*)" << vid << ')';
    } else {
      os << vid;
    }
    os << '[';
    PrintExpr(index, os);
    os << ']';
  } else {
    // Buffer declared as vector type.
    // optimize for case where it is in register,
160
    if (HandleTypeMatch(buffer, t) && !is_vol) {
161 162 163 164 165 166
      // optimize for constant access
      int offset;
      if (arith::GetConstInt(index, &offset)) {
        CHECK_EQ(offset % t.lanes(), 0)
            << "Find unaligned vector load to a vector type";
        os << vid << '[' << (offset / t.lanes()) << ']';
167
        return os.str();
168 169 170
      }
    }
    os << "((";
171 172 173 174 175 176 177
    if (is_vol) {
      os << "volatile ";
    }
    if (scope.length() != 0) {
      PrintStorageScope(scope, os);
    }
    os << ' ';
178 179 180 181
    PrintType(t, os);
    os << "*)(";
    if (!HandleTypeMatch(buffer, t.element_of())) {
      os << '(';
182 183 184 185
      if (scope.length() != 0) {
        PrintStorageScope(scope, os);
      }
      os << ' ';
186 187 188 189 190 191 192
      PrintType(t.element_of(), os);
      os << "*)";
    }
    os << vid << " + ";
    PrintExpr(index, os);
    os << "))[0]";
  }
193
  return os.str();
194 195
}

196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
// Print a reference expression to a buffer.
std::string CodeGenC::GetStructRef(
    Type t, const Expr& buffer, const Expr& index, int kind) {
  if (kind < intrinsic::kArrKindBound_) {
    std::ostringstream os;
    os << "(((TVMArray*)";
    this->PrintExpr(buffer, os);
    os << ")";
    if (kind == intrinsic::kArrAddr) {
      os << " + ";
      this->PrintExpr(index, os);
      os << ")";
      return os.str();
    }
    os << '[';
    this->PrintExpr(index, os);
    os << "].";
    // other case: get fields.
    switch (kind) {
      case intrinsic::kArrData: os << "data"; break;
      case intrinsic::kArrShape: os << "shape"; break;
      case intrinsic::kArrStrides: os << "strides"; break;
      case intrinsic::kArrNDim: os << "ndim"; break;
      case intrinsic::kArrTypeCode: os << "dtype.code"; break;
      case intrinsic::kArrTypeBits: os << "dtype.bits"; break;
221
      case intrinsic::kArrByteOffset: os << "byte_offset"; break;
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
      case intrinsic::kArrTypeLanes: os << "dtype.lanes"; break;
      case intrinsic::kArrDeviceId: os << "ctx.device_id"; break;
      case intrinsic::kArrDeviceType: os << "ctx.device_type"; break;
      default: LOG(FATAL) << "unknown field code";
    }
    os << ')';
    return os.str();
  } else {
    CHECK_LT(kind, intrinsic::kTVMValueKindBound_);
    std::ostringstream os;
    os << "(((TVMValue*)";
    this->PrintExpr(buffer, os);
    os << ")[" << index << "].";
    if (t.is_handle()) {
      os << "v_handle";
    } else if (t.is_float()) {
      os << "v_float64";
    } else if (t.is_int()) {
      os << "v_int64";
    } else {
Siju committed
242
      LOG(FATAL) << "Do not know how to handle type" << t;
243 244 245 246 247 248
    }
    os << ")";
    return os.str();
  }
}

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265

bool CodeGenC::HandleTypeMatch(const Variable* buf_var, Type t) const {
  auto it = handle_data_type_.find(buf_var);
  if (it == handle_data_type_.end()) return false;
  return it->second == t;
}

void CodeGenC::RegisterHandleType(const Variable* buf_var, Type t) {
  auto it = handle_data_type_.find(buf_var);
  if (it == handle_data_type_.end()) {
    handle_data_type_[buf_var] = t;
  } else {
    CHECK(it->second == t)
        << "conflicting buf var type";
  }
}

266 267 268
void CodeGenC::PrintVecElemLoad(const std::string& vec,
                                Type t, int i,
                                std::ostream& os) {  // NOLINT(*)
269
  os << vec << ".s" << std::hex << i << std::dec;
270 271 272 273 274 275 276
}

void CodeGenC::PrintVecElemStore(const std::string& vec,
                                 Type t, int i,
                                 const std::string& value) {
  this->PrintIndent();
  stream << vec << ".s" << std::hex << i
277
         << " = " << value << ";\n" << std::dec;
278 279
}

280 281 282
std::string CodeGenC::GetVecLoad(
    Type t, const Variable* buffer, Expr base) {
  return GetBufferRef(t, buffer, base);
283 284 285 286 287
}

void CodeGenC::PrintVecStore(const Variable* buffer,
                             Type t, Expr base,
                             const std::string& value) {
288
  std::string ref = GetBufferRef(t, buffer, base);
289
  this->PrintIndent();
290
  stream << ref << " = " << value << ";\n";
291 292
}

293 294 295 296 297 298 299 300 301
std::string CodeGenC::CastFromTo(std::string value, Type from, Type target) {
  if (from == target) return value;
  std::ostringstream os;
  os << "((";
  this->PrintType(target, os);
  os << ")" << value << ")";
  return os.str();
}

302
void CodeGenC::BindThreadIndex(const IterVar& iv) {
303
  LOG(FATAL) << "not implemented";
304 305
}

306
void CodeGenC::PrintStorageSync(const Call* op) { // NOLINT(*)
307 308 309 310 311 312
}

void CodeGenC::PrintStorageScope(const std::string& scope, std::ostream& os) { // NOLINT(*)
  CHECK_EQ(scope, "global");
}

313
void CodeGenC::PrintType(Type t, std::ostream& os) {  // NOLINT(*)
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
  CHECK_EQ(t.lanes(), 1)
      << "do not yet support vector types";
  if (t.is_handle()) {
    os << "void*"; return;
  }
  if (t.is_float()) {
    if (t.bits() == 32) {
      os << "float"; return;
    }
    if (t.bits() == 64) {
      os << "double"; return;
    }
  } else if (t.is_uint()) {
    switch (t.bits()) {
      case 8: case 16: case 32: case 64: {
        os << "uint" << t.bits() << "_t"; return;
      }
      case 1: os << "int"; return;
    }
  } else if (t.is_int()) {
    switch (t.bits()) {
      case 8: case 16: case 32: case 64: {
        os << "int" << t.bits() << "_t";  return;
      }
    }
  }
  LOG(FATAL) << "Cannot convert type " << t << " to C type";
}


inline void PrintConst(const IntImm* op, std::ostream& os, CodeGenC* p) { // NOLINT(*)
  if (op->type == Int(32)) {
    std::ostringstream temp;
    temp << op->value;
    p->MarkConst(temp.str());
    os << temp.str();
  } else {
    os << "(";
    p->PrintType(op->type, os);
    os << ")" << op->value;
  }
}

inline void PrintConst(const UIntImm* op, std::ostream& os, CodeGenC* p) { // NOLINT(*)
  if (op->type == UInt(32)) {
    std::ostringstream temp;
    temp << op->value << "U";
    p->MarkConst(temp.str());
    os << temp.str();
  } else {
    os << "(";
    p->PrintType(op->type, os);
    os << ")" << op->value;
  }
}

inline void PrintConst(const FloatImm* op, std::ostream& os, CodeGenC* p) { // NOLINT(*)
  switch (op->type.bits()) {
    case 64: case 32: {
      std::ostringstream temp;
374
      temp << std::scientific << op->value;
375 376 377 378 379 380 381 382
      if (op->type.bits() == 32) temp << 'f';
      p->MarkConst(temp.str());
      os << temp.str();
      break;
    }
    case 16: {
      os << '(';
      p->PrintType(op->type, os);
383
      os << ')' << std::scientific <<op->value << 'f';
384 385 386 387 388 389
      break;
    }
    default: LOG(FATAL) << "Bad bit-width for float: " << op->type << "\n";
  }
}

390 391 392 393 394 395 396 397 398 399 400 401
void CodeGenC::VisitExpr_(const IntImm *op, std::ostream& os) {  // NOLINT(*)
  PrintConst(op, os, this);
}
void CodeGenC::VisitExpr_(const UIntImm *op, std::ostream& os) {  // NOLINT(*)
  PrintConst(op, os, this);
}
void CodeGenC::VisitExpr_(const FloatImm *op, std::ostream& os) { // NOLINT(*)
  PrintConst(op, os, this);
}
void CodeGenC::VisitExpr_(const StringImm *op, std::ostream& os) { // NOLINT(*)
  os << "\"" << op->value << "\"";
}
402 403 404 405 406 407

template<typename T>
inline void PrintBinaryExpr(const T* op,
                            const char *opstr,
                            std::ostream& os,  // NOLINT(*)
                            CodeGenC* p) {
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
  if (op->type.lanes() == 1) {
    if (isalpha(opstr[0])) {
      os << opstr << '(';
      p->PrintExpr(op->a, os);
      os << ", ";
      p->PrintExpr(op->b, os);
      os << ')';
    } else {
      os << '(';
      p->PrintExpr(op->a, os);
      os << ' ' << opstr << ' ';
      p->PrintExpr(op->b, os);
      os << ')';
    }
  } else {
    p->PrintVecBinaryOp(opstr, op->type, op->a, op->b, os);
  }
425 426
}

427 428 429 430
inline void PrintBinaryIntrinsitc(const Call* op,
                                  const char *opstr,
                                  std::ostream& os,  // NOLINT(*)
                                  CodeGenC* p) {
431 432 433 434 435 436 437 438 439 440
  if (op->type.lanes() == 1) {
    CHECK_EQ(op->args.size(), 2U);
    os << '(';
    p->PrintExpr(op->args[0], os);
    os << opstr;
    p->PrintExpr(op->args[1], os);
    os << ')';
  } else {
    p->PrintVecBinaryOp(opstr, op->type, op->args[0], op->args[1], os);
  }
441
}
442
void CodeGenC::VisitExpr_(const Cast *op, std::ostream& os) {  // NOLINT(*)
443 444 445
  std::stringstream value;
  this->PrintExpr(op->value, value);
  os << CastFromTo(value.str(), op->value.type(), op->type);
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
}
void CodeGenC::VisitExpr_(const Variable *op, std::ostream& os) {  // NOLINT(*)
  os << GetVarID(op);
}
void CodeGenC::VisitExpr_(const Add *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "+", os, this);
}
void CodeGenC::VisitExpr_(const Sub *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "-", os, this);
}
void CodeGenC::VisitExpr_(const Mul *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "*", os, this);
}
void CodeGenC::VisitExpr_(const Div *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "/", os, this);
}
void CodeGenC::VisitExpr_(const Mod *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "%", os, this);
}
void CodeGenC::VisitExpr_(const Min *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "min", os, this);
}
void CodeGenC::VisitExpr_(const Max *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "max", os, this);
}
void CodeGenC::VisitExpr_(const EQ *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "==", os, this);
}
void CodeGenC::VisitExpr_(const NE *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "!=", os, this);
}
void CodeGenC::VisitExpr_(const LT *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "<", os, this);
}
void CodeGenC::VisitExpr_(const LE *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "<=", os, this);
}
void CodeGenC::VisitExpr_(const GT *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, ">", os, this);
}
void CodeGenC::VisitExpr_(const GE *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, ">=", os, this);
}
void CodeGenC::VisitExpr_(const And *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "&&", os, this);
}
void CodeGenC::VisitExpr_(const Or *op, std::ostream& os) {  // NOLINT(*)
  PrintBinaryExpr(op, "||", os, this);
}
void CodeGenC::VisitExpr_(const Not *op, std::ostream& os) {  // NOLINT(*)
  os << '!';
  PrintExpr(op->a, os);
}
499

500
void CodeGenC::VisitExpr_(const Call *op, std::ostream& os) {  // NOLINT(*)
501 502 503 504 505 506 507 508 509 510 511
  if (op->call_type == Call::Extern ||
      op->call_type == Call::PureExtern) {
    os << op->name << "(";
    for (size_t i = 0; i < op->args.size(); i++) {
      this->PrintExpr(op->args[i], os);
      if (i < op->args.size() - 1) {
        os << ", ";
      }
    }
    os << ")";
  } else if (op->is_intrinsic(Call::bitwise_and)) {
512
    PrintBinaryIntrinsitc(op, " & ", os, this);
513
  } else if (op->is_intrinsic(Call::bitwise_xor)) {
514
    PrintBinaryIntrinsitc(op, " ^ ", os, this);
515
  } else if (op->is_intrinsic(Call::bitwise_or)) {
516
    PrintBinaryIntrinsitc(op, " | ", os, this);
517 518 519
  } else if (op->is_intrinsic(Call::bitwise_not)) {
    CHECK_EQ(op->args.size(), 1U);
    os << "(~";
520
    this->PrintExpr(op->args[0], os);
521 522
    os << ')';
  } else if (op->is_intrinsic(Call::shift_left)) {
523
    PrintBinaryIntrinsitc(op, " << ", os, this);
524
  } else if (op->is_intrinsic(Call::shift_right)) {
525
    PrintBinaryIntrinsitc(op, " >> ", os, this);
526 527 528 529 530 531 532 533
  } else if (op->is_intrinsic(intrinsic::tvm_if_then_else)) {
    os << "(";
    PrintExpr(op->args[0], os);
    os << " ? ";
    PrintExpr(op->args[1], os);
    os << " : ";
    PrintExpr(op->args[2], os);
    os << ")";
534
  } else if (op->is_intrinsic(intrinsic::tvm_address_of)) {
535 536 537
    const Load *l = op->args[0].as<Load>();
    CHECK(op->args.size() == 1 && l);
    os << "((";
538 539
    this->PrintType(l->type.element_of(), os);
    os << " *)" << this->GetVarID(l->buffer_var.get())
540
       << " + ";
541
    this->PrintExpr(l->index, os);
542
    os << ')';
543
  } else if (op->is_intrinsic(intrinsic::tvm_struct_get)) {
544
    CHECK_EQ(op->args.size(), 3U);
545 546 547
    os << GetStructRef(
        op->type, op->args[0], op->args[1],
        op->args[2].as<IntImm>()->value);
548 549 550
  } else if (op->is_intrinsic(intrinsic::tvm_handle_is_null)) {
    CHECK_EQ(op->args.size(), 1U);
    os << "(";
551
    this->PrintExpr(op->args[0], os);
552 553
    os << " == NULL)";
  } else {
554 555 556 557 558 559
    if (op->call_type == Call::Intrinsic ||
        op->call_type == Call::PureIntrinsic) {
      LOG(FATAL) << "Unresolved intrinsic " << op->name
                 << " with return type " << op->type;
    } else {
      LOG(FATAL) << "Unresolved call type " << op->call_type;
560 561 562 563
    }
  }
}

564
void CodeGenC::PrintVecBinaryOp(
565
    const std::string& op, Type t,
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
    Expr lhs, Expr rhs, std::ostream& os) {  // NOLINT(*)
  if (isalpha(op[0])) {
    os << op << "(";
    this->PrintExpr(lhs, os);
    os << ", ";
    this->PrintExpr(rhs, os);
    os << ")";
  } else {
    os <<"(";
    this->PrintExpr(lhs, os);
    os << ' ' << op << ' ';
    this->PrintExpr(rhs, os);
    os << ")";
  }
}

582
void CodeGenC::VisitExpr_(const Load* op, std::ostream& os) {  // NOLINT(*)
583
  int lanes = op->type.lanes();
584
  // delcare type.
585
  if (op->type.lanes() == 1) {
586
    std::string ref = GetBufferRef(op->type, op->buffer_var.get(), op->index);
587
    os << ref;
588
  } else {
589 590
    CHECK(is_one(op->predicate))
        << "predicated load is not supported";
591
    Expr base;
592
    if (GetRamp1Base(op->index, op->type.lanes(), &base)) {
593
      std::string ref = GetVecLoad(op->type, op->buffer_var.get(), base);
594
      os << ref;
595
    } else {
596 597 598 599
      // The assignment below introduces side-effect, and the resulting value cannot
      // be reused across multiple expression, thus a new scope is needed
      int vec_scope = BeginScope();

600 601 602 603 604
      // load seperately.
      std::string svalue = GetUniqueName("_");
      this->PrintIndent();
      this->PrintType(op->type, stream);
      stream << ' ' << svalue << ";\n";
605 606 607 608 609 610 611
      std::string sindex = SSAGetID(PrintExpr(op->index), op->index.type());
      std::string vid = GetVarID(op->buffer_var.get());
      Type elem_type = op->type.element_of();
      for (int i = 0; i < lanes; ++i) {
        std::ostringstream value_temp;
        if (!HandleTypeMatch(op->buffer_var.get(), elem_type)) {
          value_temp << "((";
612 613 614 615 616 617 618
          if (op->buffer_var.get()->type.is_handle()) {
            auto it = alloc_storage_scope_.find(op->buffer_var.get());
            if (it != alloc_storage_scope_.end()) {
              PrintStorageScope(it->second, value_temp);
              value_temp << ' ';
            }
          }
619
          PrintType(elem_type, value_temp);
620 621 622 623 624 625 626 627 628
          value_temp << "*)" << vid << ')';
        } else {
          value_temp << vid;
        }
        value_temp << '[';
        PrintVecElemLoad(sindex, op->index.type(), i, value_temp);
        value_temp << ']';
        PrintVecElemStore(svalue, op->type, i, value_temp.str());
      }
629
      os << svalue;
630
      EndScope(vec_scope);
631 632 633 634
    }
  }
}

635
void CodeGenC::VisitStmt_(const Store* op) {
636 637 638
  Type t = op->value.type();
  if (t.lanes() == 1) {
    std::string value = this->PrintExpr(op->value);
639
    std::string ref  = this->GetBufferRef(t, op->buffer_var.get(), op->index);
640
    this->PrintIndent();
641
    stream << ref << " = " << value << ";\n";
642
  } else {
643 644
    CHECK(is_one(op->predicate))
        << "Predicated store is not supported";
645
    Expr base;
646
    if (GetRamp1Base(op->index, t.lanes(), &base)) {
647 648 649
      std::string value = this->PrintExpr(op->value);
      this->PrintVecStore(op->buffer_var.get(), t, base, value);
    } else {
650 651 652 653
      // The assignment below introduces side-effect, and the resulting value cannot
      // be reused across multiple expression, thus a new scope is needed
      int vec_scope = BeginScope();

654 655 656 657 658 659 660 661 662
      // store elements seperately
      std::string index = SSAGetID(PrintExpr(op->index), op->index.type());
      std::string value = SSAGetID(PrintExpr(op->value), op->value.type());
      std::string vid = GetVarID(op->buffer_var.get());
      for (int i = 0; i < t.lanes(); ++i) {
        this->PrintIndent();
        Type elem_type = t.element_of();
        if (!HandleTypeMatch(op->buffer_var.get(), elem_type)) {
          stream << "((";
663 664 665 666 667 668 669
          if (op->buffer_var.get()->type.is_handle()) {
            auto it = alloc_storage_scope_.find(op->buffer_var.get());
            if (it != alloc_storage_scope_.end()) {
              PrintStorageScope(it->second, stream);
              stream << ' ';
            }
          }
670 671 672 673 674 675 676 677 678 679 680
          PrintType(elem_type, stream);
          stream << "*)" << vid << ')';
        } else {
          stream << vid;
        }
        stream << '[';
        PrintVecElemLoad(index, op->index.type(), i, stream);
        stream << "] = ";
        PrintVecElemLoad(value, op->value.type(), i, stream);
        stream << ";\n";
      }
681
      EndScope(vec_scope);
682
    }
683
  }
684 685
}

686
void CodeGenC::VisitExpr_(const Let* op, std::ostream& os) {  // NOLINT(*)
687 688 689
  std::string value = PrintExpr(op->value);
  CHECK(!var_idmap_.count(op->var.get()));
  var_idmap_[op->var.get()] = value;
690
  os << PrintExpr(op->body);
691 692
}

693
void CodeGenC::VisitExpr_(const Ramp* op, std::ostream& os) {  // NOLINT(*)
694 695
  // constraint of current logic
  CHECK_EQ(op->base.type(), Int(32));
696 697 698 699 700 701 702
  os << "((int" << op->lanes << ")(";
  for (int i = 0; i < op->lanes; i++) {
    os << "(" << PrintExpr(op->base) << ")" << "+(" << PrintExpr(op->stride) << "*" << i <<")";
    if (i != op->lanes - 1)
      os << ", ";
  }
  os << "))";
703 704
}

705
void CodeGenC::VisitExpr_(const Broadcast* op, std::ostream& os) {   // NOLINT(*)
706
  LOG(FATAL) << "Broadcast: not supported ";
707 708
}

709
void CodeGenC::VisitExpr_(const Select* op, std::ostream& os) {  // NOLINT(*)
710 711 712 713 714 715 716
  os << "(";
  PrintExpr(op->condition, os);
  os << " ? ";
  PrintExpr(op->true_value, os);
  os << " : ";
  PrintExpr(op->false_value, os);
  os << ")";
717 718
}

719
void CodeGenC::VisitStmt_(const LetStmt* op) {
720 721 722 723 724 725
  std::string value = PrintExpr(op->value);
  if (print_ssa_form_) {
    CHECK(!var_idmap_.count(op->var.get()));
    var_idmap_[op->var.get()] = value;
  } else {
    PrintIndent();
726 727 728 729 730 731 732 733 734 735 736 737 738 739
    if (op->var.type() == Handle() &&
        handle_data_type_.count(op->var.get())) {
      PrintType(handle_data_type_.at(op->var.get()), stream);
      stream << "* "
             << AllocVarID(op->var.get())
             << " = (";
      PrintType(handle_data_type_.at(op->var.get()), stream);
      stream << "*)"  << value << ";\n";
    } else {
      PrintType(op->var.type(), this->stream);
      this->stream << ' '
                   << AllocVarID(op->var.get())
                   << " = " << value << ";\n";
    }
740 741 742 743
  }
  PrintStmt(op->body);
}

744
void CodeGenC::VisitStmt_(const Allocate* op) {
745
  CHECK(!is_zero(op->condition));
746 747 748 749 750 751 752 753 754 755 756 757 758
  std::string vid = AllocVarID(op->buffer_var.get());
  if (op->new_expr.defined()) {
    // Prefer global static allocation for the program
    CHECK_EQ(op->free_function, "nop");
    std::string new_data = PrintExpr(op->new_expr);
    this->PrintIndent();
    PrintType(op->type, stream);
    stream << "* "<< vid << '=' << new_data << ";\n";
  } else {
    this->PrintIndent();
    int32_t constant_size = op->constant_allocation_size();
    CHECK_GT(constant_size, 0)
        << "Can only handle constant size stack allocation for now";
759 760 761
    const Variable* buffer = op->buffer_var.as<Variable>();
    std::string scope = alloc_storage_scope_.at(buffer);
    PrintStorageScope(scope, stream);
762
    stream << ' ';
763 764
    PrintType(op->type, stream);
    stream << ' '<< vid << '['
765
           << constant_size << "];\n";
766
  }
767
  RegisterHandleType(op->buffer_var.get(), op->type);
768 769 770
  this->PrintStmt(op->body);
}

771
void CodeGenC::VisitStmt_(const AttrStmt* op) {
772
  if (op->attr_key == ir::attr::thread_extent) {
773 774
    IterVar iv(op->node.node_);
    if (iv->thread_tag.length() != 0) {
775
      if (!var_idmap_.count(iv->var.get())) {
776
        BindThreadIndex(iv);
777
      }
778
    }
779
  } else if (op->attr_key == ir::attr::storage_scope) {
780 781 782
    const Variable* v = op->node.as<Variable>();
    CHECK(v);
    alloc_storage_scope_[v] = op->value.as<StringImm>()->value;
783
  } else if (op->attr_key == ir::attr::volatile_scope) {
784 785 786
    const Variable* v = op->node.as<Variable>();
    CHECK(v);
    volatile_buf_.insert(v);
787 788 789 790
  }
  this->PrintStmt(op->body);
}

791
void CodeGenC::VisitStmt_(const AssertStmt* op) {
792 793
  std::string cond = PrintExpr(op->condition);
  PrintIndent();
794
  if (const auto* str = op->message.as<StringImm>()) {
795
    // GLOG style check
796
    stream << "CHECK(" << cond << ") << \"" << str->value << "\";\n";
797 798 799
  } else {
    stream << "assert(" << cond << ");\n";
  }
800
  this->PrintStmt(op->body);
801 802
}

803
void CodeGenC::VisitStmt_(const For* op) {
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
  std::string extent = PrintExpr(op->extent);
  PrintIndent();
  std::string vid = AllocVarID(op->loop_var.get());
  CHECK(is_zero(op->min));
  stream << "for (";
  PrintType(op->loop_var.type(), stream);
  stream << ' ' << vid << " = 0; "
            << vid << " < " << extent
            << "; ++" << vid << ") {\n";
  int for_scope = BeginScope();
  PrintStmt(op->body);
  this->EndScope(for_scope);
  PrintIndent();
  stream << "}\n";
}

820
void CodeGenC::VisitStmt_(const IfThenElse* op) {
821 822
  std::string cond = PrintExpr(op->condition);
  PrintIndent();
823 824 825 826 827
  if (cond[0] == '(' && cond[cond.length() - 1] == ')') {
    stream << "if " << cond << " {\n";
  } else {
    stream << "if (" << cond << ") {\n";
  }
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
  int then_scope = BeginScope();
  PrintStmt(op->then_case);
  this->EndScope(then_scope);

  if (op->else_case.defined()) {
    PrintIndent();
    stream << "} else {\n";
    int else_scope = BeginScope();
    PrintStmt(op->else_case);
    this->EndScope(else_scope);
  }
  PrintIndent();
  stream << "}\n";
}

843 844 845 846 847 848 849 850
void CodeGenC::VisitStmt_(const Block *op) {
  PrintStmt(op->first);
  if (op->rest.defined()) PrintStmt(op->rest);
}

void CodeGenC::VisitStmt_(const Evaluate *op) {
  if (is_const(op->value)) return;
  const Call* call = op->value.as<Call>();
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865
  if (call) {
    if (call->is_intrinsic(intrinsic::tvm_storage_sync)) {
      this->PrintStorageSync(call); return;
    } else if (call->is_intrinsic(intrinsic::tvm_struct_set)) {
      CHECK_EQ(call->args.size(), 4);
      std::string value = PrintExpr(call->args[3]);
      std::string ref = GetStructRef(
          call->args[3].type(),
          call->args[0],
          call->args[1],
          call->args[2].as<IntImm>()->value);
      this->PrintIndent();
      this->stream << ref << " = " << value << ";\n";
      return;
    }
866
  }
867
  std::string vid = this->PrintExpr(op->value);
868 869 870 871
  if (vid != "") {
    this->PrintIndent();
    this->stream << "(void)" << vid << ";\n";
  }
872 873 874 875 876
}

void CodeGenC::VisitStmt_(const ProducerConsumer *op) {
  PrintStmt(op->body);
}
877

878 879
}  // namespace codegen
}  // namespace tvm