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

Declarations

include/llvm/TableGen/SetTheory.h
  124   void addOperator(StringRef Name, std::unique_ptr<Operator>);

References

lib/TableGen/SetTheory.cpp
  258   addOperator("add", std::make_unique<AddOp>());
  259   addOperator("sub", std::make_unique<SubOp>());
  260   addOperator("and", std::make_unique<AndOp>());
  261   addOperator("shl", std::make_unique<ShlOp>());
  262   addOperator("trunc", std::make_unique<TruncOp>());
  263   addOperator("rotl", std::make_unique<RotOp>(false));
  264   addOperator("rotr", std::make_unique<RotOp>(true));
  265   addOperator("decimate", std::make_unique<DecimateOp>());
  266   addOperator("interleave", std::make_unique<InterleaveOp>());
  267   addOperator("sequence", std::make_unique<SequenceOp>());
tools/clang/utils/TableGen/NeonEmitter.cpp
 1754   ST.addOperator("lowhalf", std::make_unique<LowHalf>());
 1755   ST.addOperator("highhalf", std::make_unique<HighHalf>());
 1756   ST.addOperator("rev",
utils/TableGen/CodeGenSchedule.cpp
  175   Sets.addOperator("instrs", std::make_unique<InstrsOp>());
  176   Sets.addOperator("instregex", std::make_unique<InstRegexOp>(Target));