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

References

tools/llvm-mca/CodeRegionGenerator.cpp
   78   if (Comment.empty())
   82   unsigned Position = Comment.find_first_not_of(" \t");
   83   if (Position >= Comment.size())
   87   Comment = Comment.drop_front(Position);
   87   Comment = Comment.drop_front(Position);
   88   if (Comment.consume_front("LLVM-MCA-END")) {
   90     Position = Comment.find_first_not_of(" \t");
   91     if (Position < Comment.size())
   92       Comment = Comment.drop_front(Position);
   92       Comment = Comment.drop_front(Position);
   93     Regions.endRegion(Comment, Loc);
   98   if (!Comment.consume_front("LLVM-MCA-BEGIN"))
  102   Position = Comment.find_first_not_of(" \t");
  103   if (Position < Comment.size())
  104     Comment = Comment.drop_front(Position);
  104     Comment = Comment.drop_front(Position);
  106   Regions.beginRegion(Comment, Loc);