HomeSort by relevance Sort by last modified time
    Searched refs:RHSVal (Results 1 - 25 of 34) sorted by null

1 2

  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
less_comp.pass.cpp 34 void do_test(uintptr_t LHSVal, uintptr_t RHSVal) {
36 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
37 assert((LHS < RHS) == (LHSVal < RHSVal));
38 assert((RHS < LHS) == (RHSVal < LHSVal));
39 assert((LHS > RHS) == (LHSVal > RHSVal));
40 assert((RHS > LHS) == (RHSVal > LHSVal));
41 assert((LHS <= RHS) == (LHSVal <= RHSVal));
42 assert((RHS <= LHS) == (RHSVal <= LHSVal));
43 assert((LHS >= RHS) == (LHSVal >= RHSVal));
44 assert((RHS >= LHS) == (RHSVal >= LHSVal))
    [all...]
equal_comp.pass.cpp 32 void do_test(uintptr_t LHSVal, uintptr_t RHSVal) {
34 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
35 const bool ExpectIsEqual = (LHSVal == RHSVal);
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/
hash.pass.cpp 34 void do_test(uintptr_t LHSVal, uintptr_t RHSVal) {
36 const size_t ExpectRHS = std::hash<void*>{}(reinterpret_cast<void*>(RHSVal));
38 const C RHS = C::from_address(reinterpret_cast<void*>(RHSVal));
44 assert((h(LHS) == h(RHS)) == (LHSVal == RHSVal));
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 180 Value RHSVal(Data->Type, RHS);
183 if (RHSVal.isMinusOne())
224 Value RHSVal(Data->RHSType, RHS);
227 if (RHSVal.isNegative() ||
228 RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth())
239 if (RHSVal.isNegative())
240 Diag(Loc, DL_Error, "shift exponent %0 is negative") << RHSVal;
243 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType;
250 << LHSVal << RHSVal << Data->LHSType;
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move_convert.single.pass.cpp 45 void checkDeleter(LHS& lhs, RHS& rhs, int LHSVal, int RHSVal) {
47 assert(rhs.get_deleter().state() == RHSVal);
51 void checkCtor(LHS& lhs, RHS& rhs, A* RHSVal) {
52 assert(lhs.get() == RHSVal);
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 33 Value *RHSVal = FirstInst->getOperand(1);
36 Type *RHSType = RHSVal->getType();
55 if (I->getOperand(1) != RHSVal) RHSVal = nullptr;
62 if (!LHSVal && !RHSVal)
78 if (!RHSVal) {
83 RHSVal = NewRHS;
103 LHSVal, RHSVal);
110 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombinePHI.cpp 29 Value *RHSVal = FirstInst->getOperand(1);
32 Type *RHSType = RHSVal->getType();
67 if (I->getOperand(1) != RHSVal) RHSVal = 0;
74 if (!LHSVal && !RHSVal)
90 if (RHSVal == 0) {
95 RHSVal = NewRHS;
115 LHSVal, RHSVal);
122 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineSimplifyDemanded.cpp 527 const APInt &RHSVal = RHS->getValue();
528 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
534 KnownOne = ((LHSKnownZero & RHSVal) |
535 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
539 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
    [all...]
InstCombineAddSub.cpp 117 const APInt &RHSVal = CI->getValue();
121 if (XorRHS->getValue() == -RHSVal) {
122 if (RHSVal.isPowerOf2())
123 ExtendAmt = TySizeBits - RHSVal.logBase2() - 1;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 289 Value *RHSVal = FirstInst->getOperand(1);
292 Type *RHSType = RHSVal->getType();
311 if (I->getOperand(1) != RHSVal) RHSVal = nullptr;
318 if (!LHSVal && !RHSVal)
334 if (!RHSVal) {
339 RHSVal = NewRHS;
359 LHSVal, RHSVal);
366 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 328 SVal RHSVal = State->getSVal(Rhs, C.getLocationContext());
329 if (State->isNull(RHSVal).isConstrainedTrue())
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 594 SVal RHSVal = N->getState()->getSVal(RHS, Pred->getLocationContext());
596 if (RHSVal.isUndef()) {
597 X = RHSVal;
599 DefinedOrUnknownSVal DefinedRHS = RHSVal.castAs<DefinedOrUnknownSVal>();
606 X = getSValBuilder().evalCast(RHSVal, B->getType(), RHS->getType());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 495 for (const auto &RHSVal : RHSVals)
496 if (RHSVal.first == InterestingVal || isa<UndefValue>(RHSVal.first)) {
499 if (!LHSKnownBBs.count(RHSVal.second))
500 Result.emplace_back(InterestingVal, RHSVal.second);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 377 SourceLocation DotDotDotLoc, Expr *RHSVal,
414 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent()) {
415 RHSVal = VerifyIntegerConstantExpression(RHSVal).get();
425 auto RHS = RHSVal ? ActOnFinishFullExpr(RHSVal, RHSVal->getExprLoc(), false,
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 698 for (const auto &RHSVal : RHSVals)
699 if (RHSVal.first == InterestingVal || isa<UndefValue>(RHSVal.first)) {
702 if (!LHSKnownBBs.count(RHSVal.second))
703 Result.emplace_back(InterestingVal, RHSVal.second);
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 220 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
223 if (LHSVal < 0 || RHSVal < 0)
228 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
229 case MCBinaryExpr::Mul: Res = LHSVal * RHSVal; break;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 240 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
243 if (LHSVal < 0 || RHSVal < 0)
248 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
249 case MCBinaryExpr::Mul: Res = LHSVal * RHSVal; break;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 444 Value *RHSVal;
493 m_And(m_Value(RHSVal), m_APInt(RHSC)))) {
497 if (!setValueOnce(RHSVal))
516 m_Or(m_Value(RHSVal), m_APInt(RHSC)))) {
520 if (!setValueOnce(RHSVal))
547 if (match(I->getOperand(0), m_Add(m_Value(RHSVal), m_APInt(RHSC)))) {
549 CandidateVal = RHSVal;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 485 Value *RHSVal;
533 m_And(m_Value(RHSVal), m_APInt(RHSC)))) {
537 if (!setValueOnce(RHSVal))
556 m_Or(m_Value(RHSVal), m_APInt(RHSC)))) {
560 if (!setValueOnce(RHSVal))
587 if (match(I->getOperand(0), m_Add(m_Value(RHSVal), m_APInt(RHSC)))) {
589 CandidateVal = RHSVal;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
Record.cpp 198 int64_t RHSVal = RHSi->getValue();
200 if (canFitInBitfield(MHSVal, Size) && canFitInBitfield(RHSVal, Size)) {
207 IntInit::get((RHSVal & (1LL << i)) ? 1 : 0),
    [all...]

Completed in 870 milliseconds

1 2