/external/llvm/lib/TableGen/ |
Record.cpp | 867 TernOpInit *TernOpInit::get(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, 882 mhs), 886 if (!I) I.reset(new TernOpInit(opc, lhs, mhs, rhs, Type)); 890 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type, 922 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type, 935 DagInit *MHSd = dyn_cast<DagInit>(MHS); 959 ListInit *MHSl = dyn_cast<ListInit>(MHS); 992 DefInit *MHSd = dyn_cast<DefInit>(MHS); 993 VarInit *MHSv = dyn_cast<VarInit>(MHS); 994 StringInit *MHSs = dyn_cast<StringInit>(MHS); 1064 Init *mhs = MHS->resolveReferences(R, RV); local 1074 Init *mhs = MHS->resolveReferences(R, RV); local [all...] |
TGParser.cpp | 1002 Init *MHS = ParseValue(CurRec, ItemType); 1003 if (!MHS) 1028 if (TypedInit *MHSt = dyn_cast<TypedInit>(MHS)) 1030 if (BitsInit *MHSbits = dyn_cast<BitsInit>(MHS)) 1032 if (isa<BitInit>(MHS)) [all...] |
/external/llvm/include/llvm/TableGen/ |
Record.h | 783 Init *LHS, *MHS, *RHS; 785 TernOpInit(TernaryOp opc, Init *lhs, Init *mhs, Init *rhs, 787 OpInit(IK_TernOpInit, Type), Opc(opc), LHS(lhs), MHS(mhs), RHS(rhs) {} 797 Init *mhs, Init *rhs, 820 Init *getMHS() const { return MHS; } [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | [all...] |