Searched refs:MHS (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp1081 ProfileTernOpInit(FoldingSetNodeID &ID, unsigned Opcode, Init *LHS, Init *MHS,
1085 ID.AddPointer(MHS);
1090 TernOpInit *TernOpInit::get(TernaryOp Opc, Init *LHS, Init *MHS, Init *RHS,
1095 ProfileTernOpInit(ID, Opc, LHS, MHS, RHS, Type);
1101 TernOpInit *I = new(Allocator) TernOpInit(Opc, LHS, MHS, RHS, Type);
1144 // Applies RHS to all elements of MHS, using LHS as a temp variable.
1145 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
1147 if (DagInit *MHSd = dyn_cast<DagInit>(MHS))
1150 if (ListInit *MHSl = dyn_cast<ListInit>(MHS)) {
1171 DefInit *MHSd = dyn_cast<DefInit>(MHS);
[all...]
H A DTGParser.cpp1327 Init *MHS = ParseValue(CurRec); local
1328 if (!MHS)
1337 TypedInit *MHSt = dyn_cast<TypedInit>(MHS);
1406 return (TernOpInit::get(TernOpInit::FOREACH, LHS, MHS, RHS, OutType))
1448 Init *MHS = ParseValue(CurRec, ItemType); local
1449 if (!MHS)
1472 TypedInit *MHSt = dyn_cast<TypedInit>(MHS);
1473 if (!MHSt && !isa<UnsetInit>(MHS)) {
1505 if (TypedInit *MHSt = dyn_cast<TypedInit>(MHS))
1507 if (BitsInit *MHSbits = dyn_cast<BitsInit>(MHS))
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h864 Init *LHS, *MHS, *RHS; member in class:llvm::TernOpInit
868 OpInit(IK_TernOpInit, Type, opc), LHS(lhs), MHS(mhs), RHS(rhs) {}
904 Init *getMHS() const { return MHS; }
912 return LHS->isComplete() && MHS->isComplete() && RHS->isComplete();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp724 const Value *RHS, *LHS, *MHS; local
731 MHS = nullptr;
736 MHS = Cond;
742 CaseBlock CB(Pred, FallthroughUnreachable, LHS, RHS, MHS, I->MBB, Fallthrough,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp3741 SDValue MHS = N0.getOperand(1); local
3746 else if (MHS.getOpcode() == ISD::FNEG)
3747 MHS = MHS.getOperand(0);
3749 MHS = DAG.getNode(ISD::FNEG, SL, VT, MHS);
3756 SDValue Res = DAG.getNode(Opc, SL, VT, LHS, MHS, RHS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp10300 const Value *RHS, *LHS, *MHS; local
10307 MHS = nullptr;
10312 MHS = Cond;
10321 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB,

Completed in 189 milliseconds