reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGStmt.cpp
  863   LexicalScope ForScope(*this, S.getSourceRange());
  866   if (S.getInit())
  867     EmitStmt(S.getInit());
  876   const SourceRange &R = S.getSourceRange();
  885   if (S.getInc())
  892   LexicalScope ConditionScope(*this, S.getSourceRange());
  894   if (S.getCond()) {
  897     if (S.getConditionVariable()) {
  898       EmitDecl(*S.getConditionVariable());
  912     llvm::Value *BoolCondVal = EvaluateExprAsBool(S.getCond());
  915         createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
  915         createProfileWeightsForLoop(S.getCond(), getProfileCount(S.getBody())));
  927   incrementProfileCounter(&S);
  933     EmitStmt(S.getBody());
  937   if (S.getInc()) {
  939     EmitStmt(S.getInc());
  946   EmitStopPoint(&S);