Searched refs:RHSB (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | DenseMap.h | 802 *RHSB = &RHS.getInlineBuckets()[i]; in swap() local 805 bool hasRHSValue = (!KeyInfoT::isEqual(RHSB->getFirst(), EmptyKey) && in swap() 806 !KeyInfoT::isEqual(RHSB->getFirst(), TombstoneKey)); in swap() 809 std::swap(*LHSB, *RHSB); in swap() 813 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 815 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 818 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap() 819 RHSB->getSecond().~ValueT(); in swap()
|
/external/llvm/include/llvm/ADT/ |
D | DenseMap.h | 802 *RHSB = &RHS.getInlineBuckets()[i]; in swap() local 805 bool hasRHSValue = (!KeyInfoT::isEqual(RHSB->getFirst(), EmptyKey) && in swap() 806 !KeyInfoT::isEqual(RHSB->getFirst(), TombstoneKey)); in swap() 809 std::swap(*LHSB, *RHSB); in swap() 813 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 815 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 818 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap() 819 RHSB->getSecond().~ValueT(); in swap()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | DenseMap.h | 917 *RHSB = &RHS.getInlineBuckets()[i]; in swap() local 920 bool hasRHSValue = (!KeyInfoT::isEqual(RHSB->getFirst(), EmptyKey) && in swap() 921 !KeyInfoT::isEqual(RHSB->getFirst(), TombstoneKey)); in swap() 924 std::swap(*LHSB, *RHSB); in swap() 928 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 930 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 933 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap() 934 RHSB->getSecond().~ValueT(); in swap()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | DenseMap.h | 946 *RHSB = &RHS.getInlineBuckets()[i]; in swap() local 949 bool hasRHSValue = (!KeyInfoT::isEqual(RHSB->getFirst(), EmptyKey) && in swap() 950 !KeyInfoT::isEqual(RHSB->getFirst(), TombstoneKey)); in swap() 953 std::swap(*LHSB, *RHSB); in swap() 957 std::swap(LHSB->getFirst(), RHSB->getFirst()); in swap() 959 ::new (&RHSB->getSecond()) ValueT(std::move(LHSB->getSecond())); in swap() 962 ::new (&LHSB->getSecond()) ValueT(std::move(RHSB->getSecond())); in swap() 963 RHSB->getSecond().~ValueT(); in swap()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 341 Value *CondL, *CondR, *LHSA, *RHSA, *LHSB, *RHSB; in isEqualImpl() local 343 matchSelectWithOptionalNotCond(RHSI, CondR, RHSA, RHSB, RSPF)) { in isEqualImpl() 348 return ((LHSA == RHSA && LHSB == RHSB) || in isEqualImpl() 349 (LHSA == RHSB && LHSB == RHSA)); in isEqualImpl() 353 return LHSA == RHSA && LHSB == RHSB; in isEqualImpl() 357 if (CondL == CondR && LHSA == RHSA && LHSB == RHSB) in isEqualImpl() 379 if (LHSA == RHSB && LHSB == RHSA) { in isEqualImpl()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 348 Value *CondL, *CondR, *LHSA, *RHSA, *LHSB, *RHSB; in isEqualImpl() local 350 matchSelectWithOptionalNotCond(RHSI, CondR, RHSA, RHSB, RSPF)) { in isEqualImpl() 355 return ((LHSA == RHSA && LHSB == RHSB) || in isEqualImpl() 356 (LHSA == RHSB && LHSB == RHSA)); in isEqualImpl() 359 if (CondL == CondR && LHSA == RHSA && LHSB == RHSB) in isEqualImpl() 381 if (LHSA == RHSB && LHSB == RHSA) { in isEqualImpl()
|
/external/llvm-project/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 469 Value *RHSB = OpB->getOperand(1); in lookThroughComplexAddresses() local 471 Instruction *OpRHSB = dyn_cast<Instruction>(RHSB); in lookThroughComplexAddresses() 483 if (OpRHSA->getOperand(0) == RHSB && IdxDiff.getSExtValue() == -CstVal) in lookThroughComplexAddresses()
|