HomeSort by relevance Sort by last modified time
    Searched refs:DagRecTy (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/TableGen/
Record.h 37 class DagRecTy;
330 /// DagRecTy - 'dag' - Represent a dag fragment
332 class DagRecTy : public RecTy {
333 static DagRecTy Shared;
334 DagRecTy() : RecTy(DagRecTyKind) {}
340 static DagRecTy *get() { return &Shared; }
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 87 DagRecTy DagRecTy::Shared;
305 Init *DagRecTy::convertValue(TypedInit *TI) {
311 Init *DagRecTy::convertValue(UnOpInit *BO) {
316 return UnOpInit::get(UnOpInit::CAST, L, new DagRecTy);
322 Init *DagRecTy::convertValue(BinOpInit *BO) {
328 return BinOpInit::get(BinOpInit::CONCAT, L, R, new DagRecTy);
1074 if ((MHSd && isa<DagRecTy>(Type)) || (MHSl && isa<ListRecTy>(Type))) {
    [all...]
TGParser.cpp 684 case tgtok::Dag: Lex.Lex(); return DagRecTy::get();
931 case tgtok::XConcat: Code = BinOpInit::CONCAT;Type = DagRecTy::get(); break;
    [all...]

Completed in 79 milliseconds