codegen_c.cc 25.2 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 27
}
void CodeGenC::AddFunction(LoweredFunc f) {
  // clear previous generated state.
  this->InitFuncState(f);
28
  // skip the first underscore, so SSA variable starts from _1
29
  GetUniqueName("_");
30
  GetUniqueName("extern");
31 32
  // add to alloc buffer type.
  for (const auto & kv : f->handle_data_type) {
33
    RegisterHandleType(kv.first.get(), kv.second.type());
34
  }
35

36 37 38
  this->stream << "void " << f->name << "(";
  for (size_t i = 0; i < f->args.size(); ++i) {
    Var v = f->args[i];
39 40
    std::string vid = AllocVarID(v.get());
    if (i != 0) stream << ", ";
41
    if (v.type().is_handle()) {
42
      auto it = alloc_storage_scope_.find(v.get());
43
      if (it != alloc_storage_scope_.end())
44
        PrintStorageScope(it->second, stream);
45 46 47 48 49 50
      stream << ' ';

      if (handle_data_type_.count(v.get())) {
        PrintType(handle_data_type_.at(v.get()), stream);
      } else {
        stream << "void";
51
      }
52
      stream << "*";
53

54 55 56
      if (f->is_restricted && restrict_keyword_.length() != 0) {
        stream << ' ' << restrict_keyword_;
      }
57 58 59
    } else {
      PrintType(v.type(), stream);
    }
60 61 62
    stream << ' ' << vid;
  }
  stream << ") {\n";
63
  this->PreFunctionBody(f);
64
  int func_scope = this->BeginScope();
65
  this->PrintStmt(f->body);
66
  this->EndScope(func_scope);
67
  this->PrintIndent();
68 69 70 71
  this->stream << "}\n\n";
}

std::string CodeGenC::Finish() {
72
  return decl_stream.str() + stream.str();
73 74 75 76 77
}

void CodeGenC::PrintExpr(const Expr& n, std::ostream& os) {  // NOLINT(*)
  if (print_ssa_form_) {
    std::ostringstream temp;
78
    VisitExpr(n, temp);
79 80
    os << SSAGetID(temp.str(), n.type());
  } else {
81
    VisitExpr(n, os);
82 83 84
  }
}

85 86 87 88 89 90 91
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);
92
  } else {
93
    stream << src;
94
  }
95
  stream << ";\n";
96 97 98
}

// Print a reference expression to a buffer.
99
std::string CodeGenC::GetBufferRef(
100
    Type t, const Variable* buffer, Expr index) {
101
  std::ostringstream os;
102
  std::string vid = GetVarID(buffer);
103 104 105 106
  std::string scope;
  if (alloc_storage_scope_.count(buffer)) {
    scope = alloc_storage_scope_.at(buffer);
  }
107
  bool is_vol = volatile_buf_.count(buffer) != 0;
108
  if (t.lanes() == 1) {
109
    if (!HandleTypeMatch(buffer, t) || is_vol) {
110
      os << "((";
111 112 113 114 115 116 117
      if (is_vol) {
        os << "volatile ";
      }
      if (scope.length() != 0) {
        PrintStorageScope(scope, os);
      }
      os << ' ';
118 119 120 121 122 123 124 125 126 127 128
      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,
129
    if (HandleTypeMatch(buffer, t) && !is_vol) {
130 131 132 133 134 135
      // 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()) << ']';
136
        return os.str();
137 138 139
      }
    }
    os << "((";
140 141 142 143 144 145 146
    if (is_vol) {
      os << "volatile ";
    }
    if (scope.length() != 0) {
      PrintStorageScope(scope, os);
    }
    os << ' ';
147 148 149 150
    PrintType(t, os);
    os << "*)(";
    if (!HandleTypeMatch(buffer, t.element_of())) {
      os << '(';
151 152 153 154
      if (scope.length() != 0) {
        PrintStorageScope(scope, os);
      }
      os << ' ';
155 156 157 158 159 160 161
      PrintType(t.element_of(), os);
      os << "*)";
    }
    os << vid << " + ";
    PrintExpr(index, os);
    os << "))[0]";
  }
162
  return os.str();
163 164
}

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
// 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;
      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 {
      LOG(FATAL) << "donot know how to handle type" << t;
    }
    os << ")";
    return os.str();
  }
}

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233

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";
  }
}

234 235 236
void CodeGenC::PrintVecElemLoad(const std::string& vec,
                                Type t, int i,
                                std::ostream& os) {  // NOLINT(*)
237
  os << vec << ".s" << std::hex << i << std::dec;
238 239 240 241 242 243 244
}

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

248 249 250
std::string CodeGenC::GetVecLoad(
    Type t, const Variable* buffer, Expr base) {
  return GetBufferRef(t, buffer, base);
251 252 253 254 255
}

void CodeGenC::PrintVecStore(const Variable* buffer,
                             Type t, Expr base,
                             const std::string& value) {
256
  std::string ref = GetBufferRef(t, buffer, base);
257
  this->PrintIndent();
258
  stream << ref << " = " << value << ";\n";
259 260
}

261 262 263 264 265 266 267 268 269
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();
}

270
void CodeGenC::BindThreadIndex(const IterVar& iv) {
271
  LOG(FATAL) << "not implemented";
272 273
}

274
void CodeGenC::PrintStorageSync(const Call* op) { // NOLINT(*)
275 276 277 278 279 280
}

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

281
void CodeGenC::PrintType(Type t, std::ostream& os) {  // NOLINT(*)
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 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
  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;
342
      temp << std::scientific << op->value;
343 344 345 346 347 348 349 350
      if (op->type.bits() == 32) temp << 'f';
      p->MarkConst(temp.str());
      os << temp.str();
      break;
    }
    case 16: {
      os << '(';
      p->PrintType(op->type, os);
351
      os << ')' << std::scientific <<op->value << 'f';
352 353 354 355 356 357
      break;
    }
    default: LOG(FATAL) << "Bad bit-width for float: " << op->type << "\n";
  }
}

358 359 360 361 362 363 364 365 366 367 368 369
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 << "\"";
}
370 371 372 373 374 375

template<typename T>
inline void PrintBinaryExpr(const T* op,
                            const char *opstr,
                            std::ostream& os,  // NOLINT(*)
                            CodeGenC* p) {
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
  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);
  }
393 394
}

395 396 397 398
inline void PrintBinaryIntrinsitc(const Call* op,
                                  const char *opstr,
                                  std::ostream& os,  // NOLINT(*)
                                  CodeGenC* p) {
399 400 401 402 403 404 405 406 407 408
  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);
  }
409
}
410
void CodeGenC::VisitExpr_(const Cast *op, std::ostream& os) {  // NOLINT(*)
411 412 413
  std::stringstream value;
  this->PrintExpr(op->value, value);
  os << CastFromTo(value.str(), op->value.type(), op->type);
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
}
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);
}
467

468
void CodeGenC::VisitExpr_(const Call *op, std::ostream& os) {  // NOLINT(*)
469 470 471 472 473 474 475 476 477 478 479
  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)) {
480
    PrintBinaryIntrinsitc(op, " & ", os, this);
481
  } else if (op->is_intrinsic(Call::bitwise_xor)) {
482
    PrintBinaryIntrinsitc(op, " ^ ", os, this);
483
  } else if (op->is_intrinsic(Call::bitwise_or)) {
484
    PrintBinaryIntrinsitc(op, " | ", os, this);
485 486 487
  } else if (op->is_intrinsic(Call::bitwise_not)) {
    CHECK_EQ(op->args.size(), 1U);
    os << "(~";
488
    this->PrintExpr(op->args[0], os);
489 490
    os << ')';
  } else if (op->is_intrinsic(Call::shift_left)) {
491
    PrintBinaryIntrinsitc(op, " << ", os, this);
492
  } else if (op->is_intrinsic(Call::shift_right)) {
493
    PrintBinaryIntrinsitc(op, " >> ", os, this);
494 495 496 497 498 499 500 501
  } 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 << ")";
502
  } else if (op->is_intrinsic(intrinsic::tvm_address_of)) {
503 504 505
    const Load *l = op->args[0].as<Load>();
    CHECK(op->args.size() == 1 && l);
    os << "((";
506 507
    this->PrintType(l->type.element_of(), os);
    os << " *)" << this->GetVarID(l->buffer_var.get())
508
       << " + ";
509
    this->PrintExpr(l->index, os);
510
    os << ')';
511
  } else if (op->is_intrinsic(intrinsic::tvm_struct_get)) {
512
    CHECK_EQ(op->args.size(), 3U);
513 514 515
    os << GetStructRef(
        op->type, op->args[0], op->args[1],
        op->args[2].as<IntImm>()->value);
516 517 518
  } else if (op->is_intrinsic(intrinsic::tvm_handle_is_null)) {
    CHECK_EQ(op->args.size(), 1U);
    os << "(";
519
    this->PrintExpr(op->args[0], os);
520 521
    os << " == NULL)";
  } else {
522 523 524 525 526 527
    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;
528 529 530 531
    }
  }
}

532
void CodeGenC::PrintVecBinaryOp(
533
    const std::string& op, Type t,
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
    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 << ")";
  }
}

550
void CodeGenC::VisitExpr_(const Load* op, std::ostream& os) {  // NOLINT(*)
551
  int lanes = op->type.lanes();
552
  // delcare type.
553
  if (op->type.lanes() == 1) {
554
    std::string ref = GetBufferRef(op->type, op->buffer_var.get(), op->index);
555
    os << ref;
556
  } else {
557 558
    CHECK(is_one(op->predicate))
        << "predicated load is not supported";
559
    Expr base;
560
    if (GetRamp1Base(op->index, op->type.lanes(), &base)) {
561
      std::string ref = GetVecLoad(op->type, op->buffer_var.get(), base);
562
      os << ref;
563
    } else {
564 565 566 567
      // 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();

568 569 570 571 572
      // load seperately.
      std::string svalue = GetUniqueName("_");
      this->PrintIndent();
      this->PrintType(op->type, stream);
      stream << ' ' << svalue << ";\n";
573 574 575 576 577 578 579
      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 << "((";
580 581 582 583 584 585 586
          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 << ' ';
            }
          }
587
          PrintType(elem_type, value_temp);
588 589 590 591 592 593 594 595 596
          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());
      }
597
      os << svalue;
598
      EndScope(vec_scope);
599 600 601 602
    }
  }
}

603
void CodeGenC::VisitStmt_(const Store* op) {
604 605 606
  Type t = op->value.type();
  if (t.lanes() == 1) {
    std::string value = this->PrintExpr(op->value);
607
    std::string ref  = this->GetBufferRef(t, op->buffer_var.get(), op->index);
608
    this->PrintIndent();
609
    stream << ref << " = " << value << ";\n";
610
  } else {
611 612
    CHECK(is_one(op->predicate))
        << "Predicated store is not supported";
613
    Expr base;
614
    if (GetRamp1Base(op->index, t.lanes(), &base)) {
615 616 617
      std::string value = this->PrintExpr(op->value);
      this->PrintVecStore(op->buffer_var.get(), t, base, value);
    } else {
618 619 620 621
      // 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();

622 623 624 625 626 627 628 629 630
      // 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 << "((";
631 632 633 634 635 636 637
          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 << ' ';
            }
          }
638 639 640 641 642 643 644 645 646 647 648
          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";
      }
649
      EndScope(vec_scope);
650
    }
651
  }
652 653
}

654
void CodeGenC::VisitExpr_(const Let* op, std::ostream& os) {  // NOLINT(*)
655 656 657 658 659 660 661
  CHECK(print_ssa_form_)
      << "LetExpr is only supported by print SSA form";
  std::string value = PrintExpr(op->value);
  CHECK(!var_idmap_.count(op->var.get()));
  var_idmap_[op->var.get()] = value;
}

662
void CodeGenC::VisitExpr_(const Ramp* op, std::ostream& os) {  // NOLINT(*)
663 664
  // constraint of current logic
  CHECK_EQ(op->base.type(), Int(32));
665 666 667 668 669 670 671
  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 << "))";
672 673
}

674
void CodeGenC::VisitExpr_(const Broadcast* op, std::ostream& os) {   // NOLINT(*)
675
  LOG(FATAL) << "Broadcast: not supported ";
676 677
}

678
void CodeGenC::VisitExpr_(const Select* op, std::ostream& os) {  // NOLINT(*)
679 680 681 682 683 684 685
  os << "(";
  PrintExpr(op->condition, os);
  os << " ? ";
  PrintExpr(op->true_value, os);
  os << " : ";
  PrintExpr(op->false_value, os);
  os << ")";
686 687
}

688
void CodeGenC::VisitStmt_(const LetStmt* op) {
689 690 691 692 693 694
  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();
695 696 697 698 699 700 701 702 703 704 705 706 707 708
    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";
    }
709 710 711 712
  }
  PrintStmt(op->body);
}

713
void CodeGenC::VisitStmt_(const Allocate* op) {
714
  CHECK(!is_zero(op->condition));
715 716 717 718 719 720 721 722 723 724 725 726 727
  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";
728 729 730
    const Variable* buffer = op->buffer_var.as<Variable>();
    std::string scope = alloc_storage_scope_.at(buffer);
    PrintStorageScope(scope, stream);
731
    stream << ' ';
732 733
    PrintType(op->type, stream);
    stream << ' '<< vid << '['
734
           << constant_size << "];\n";
735
  }
736
  RegisterHandleType(op->buffer_var.get(), op->type);
737 738 739
  this->PrintStmt(op->body);
}

740
void CodeGenC::VisitStmt_(const AttrStmt* op) {
741
  if (op->attr_key == ir::attr::thread_extent) {
742 743
    IterVar iv(op->node.node_);
    if (iv->thread_tag.length() != 0) {
744
      if (!var_idmap_.count(iv->var.get())) {
745
        BindThreadIndex(iv);
746
      }
747
    }
748
  } else if (op->attr_key == ir::attr::storage_scope) {
749 750 751
    const Variable* v = op->node.as<Variable>();
    CHECK(v);
    alloc_storage_scope_[v] = op->value.as<StringImm>()->value;
752
  } else if (op->attr_key == ir::attr::volatile_scope) {
753 754 755
    const Variable* v = op->node.as<Variable>();
    CHECK(v);
    volatile_buf_.insert(v);
756 757 758 759
  }
  this->PrintStmt(op->body);
}

760
void CodeGenC::VisitStmt_(const AssertStmt* op) {
761 762 763 764 765 766 767 768 769
  std::string cond = PrintExpr(op->condition);
  PrintIndent();
  if (op->message.as<StringImm>()) {
    // GLOG style check
    stream << "CHECK(" << cond << ") << \""
           << op->message.as<StringImm>()->value << "\";\n";
  } else {
    stream << "assert(" << cond << ");\n";
  }
770
  this->PrintStmt(op->body);
771 772
}

773
void CodeGenC::VisitStmt_(const For* op) {
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789
  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";
}

790
void CodeGenC::VisitStmt_(const IfThenElse* op) {
791 792
  std::string cond = PrintExpr(op->condition);
  PrintIndent();
793 794 795 796 797
  if (cond[0] == '(' && cond[cond.length() - 1] == ')') {
    stream << "if " << cond << " {\n";
  } else {
    stream << "if (" << cond << ") {\n";
  }
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
  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";
}

813 814 815 816 817 818 819 820
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>();
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
  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;
    }
836
  }
837 838 839
  std::string vid = this->PrintExpr(op->value);
  this->PrintIndent();
  this->stream << "(void)" << vid << ";\n";
840 841 842 843 844
}

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

846 847
}  // namespace codegen
}  // namespace tvm