HomeSort by relevance Sort by last modified time
    Searched defs:addOperator (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/TableGen/
SetTheory.cpp 248 addOperator("add", llvm::make_unique<AddOp>());
249 addOperator("sub", llvm::make_unique<SubOp>());
250 addOperator("and", llvm::make_unique<AndOp>());
251 addOperator("shl", llvm::make_unique<ShlOp>());
252 addOperator("trunc", llvm::make_unique<TruncOp>());
253 addOperator("rotl", llvm::make_unique<RotOp>(false));
254 addOperator("rotr", llvm::make_unique<RotOp>(true));
255 addOperator("decimate", llvm::make_unique<DecimateOp>());
256 addOperator("interleave", llvm::make_unique<InterleaveOp>());
257 addOperator("sequence", llvm::make_unique<SequenceOp>())
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SetTheory.cpp 202 addOperator("add", new AddOp);
203 addOperator("sub", new SubOp);
204 addOperator("and", new AndOp);
205 addOperator("shl", new ShlOp);
206 addOperator("trunc", new TruncOp);
207 addOperator("rotl", new RotOp(false));
208 addOperator("rotr", new RotOp(true));
209 addOperator("decimate", new DecimateOp);
210 addOperator("sequence", new SequenceOp);
213 void SetTheory::addOperator(StringRef Name, Operator *Op)
    [all...]

Completed in 62 milliseconds