Searched refs:ThisVal (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DFixedPoint.cpp64 llvm::APSInt ThisVal = getValue(); local
77 ThisVal = ThisVal.extOrTrunc(CommonWidth);
81 ThisVal = ThisVal.shl(CommonScale - getScale());
85 if (ThisVal.sgt(OtherVal))
87 else if (ThisVal.slt(OtherVal))
90 if (ThisVal.ugt(OtherVal))
92 else if (ThisVal.ult(OtherVal))
95 if (ThisVal
157 llvm::APSInt ThisVal = ConvertedThis.getValue(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp143 SVal ThisVal = Call->getCXXThisVal(); local
146 Call->getDecl()->getParent(), ThisVal, State);
166 SVal ThisVal = Call->getCXXThisVal(); local
172 ThisVal, State);
H A DCXXSelfAssignmentChecker.cpp49 auto ThisVal = local
54 ProgramStateRef SelfAssignState = State->bindLoc(Param, ThisVal, LCtx);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp684 SVal ThisVal = getCXXThisVal(); local
685 Values.push_back(ThisVal);
704 const MemRegion *ThisRegion = ThisVal.getAsRegion();
719 SVal ThisVal = getSVal(Base);
720 assert(ThisVal.isUnknownOrUndef() || ThisVal.getAs<Loc>());
721 return ThisVal;
794 SVal ThisVal = getCXXThisVal(); local
795 if (!ThisVal.isUnknown()) {
811 ThisVal
881 SVal ThisVal = loc::MemRegionVal(CapturedLambdaRegion); local
914 SVal ThisVal = getCXXThisVal(); local
1402 SVal ThisVal = State->getSVal(ThisPtr); local
1418 SVal ThisVal = State->getSVal(ThisPtr); local
[all...]
H A DExprEngineCXX.cpp42 SVal ThisVal; local
48 ThisVal = Ctor->getCXXThisVal();
55 ThisVal = cast<CXXInstanceCall>(Call).getCXXThisVal();
83 evalBind(Dst, CallExpr, Pred, ThisVal, V, true);
90 State = State->BindExpr(CallExpr, LCtx, ThisVal);
144 SVal ThisVal = State->getSVal(ThisPtr); local
150 FieldVal = State->getLValue(Init->getIndirectMember(), ThisVal);
153 FieldVal = State->getLValue(Init->getMember(), ThisVal);
469 SVal ThisVal = State->getSVal(ThisPtr); local
472 Target = ThisVal;
[all...]
H A DExprEngine.cpp1032 SVal ThisVal = Pred->getState()->getSVal(ThisPtr); local
1037 SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb2InstrInfo.cpp294 unsigned ThisVal = NumBytes;
310 if ((DestReg == ARM::SP) && (ThisVal < ((1 << 7) - 1) * 4)) {
311 assert((ThisVal & 3) == 0 && "Stack update is not multiple of 4?");
315 .addImm(ThisVal / 4)
321 int ImmIsT2SO = ARM_AM::getT2SOImmVal(ThisVal);
331 } else if (ThisVal < 4096) {
340 unsigned RotAmt = countLeadingZeros(ThisVal);
341 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
342 NumBytes &= ~ThisVal;
[all...]
H A DARMISelLowering.h754 SDValue ThisVal) const;
H A DARMBaseInstrInfo.cpp2375 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
2376 assert(ThisVal && "Didn't extract field correctly");
2379 NumBytes &= ~ThisVal;
2381 assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
2387 .addImm(ThisVal)
H A DARMISelLowering.cpp1965 SDValue ThisVal) const {
1981 InVals.push_back(ThisVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp398 int64_t ThisVal = NumBytes; local
406 if (ThisVal < MinVal)
407 ThisVal = MinVal;
408 else if (ThisVal > MaxVal)
409 ThisVal = MaxVal;
412 .addReg(Reg).addImm(ThisVal);
415 NumBytes -= ThisVal;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.h320 SDValue ThisVal) const;
H A DSIISelLowering.cpp2382 SDValue ThisVal) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp320 uint64_t ThisVal = std::min(Offset, Chunk);
321 if (ThisVal == SlotSize) {
334 Offset -= ThisVal;
339 BuildStackAdjustment(MBB, MBBI, DL, isSub ? -ThisVal : ThisVal, InEpilogue)
342 Offset -= ThisVal;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp3150 uint64_t ThisVal = std::min<uint64_t>(Offset, MaxEncodableValue); local
3152 if (ThisVal > MaxEncoding) {
3153 ThisVal = ThisVal >> ShiftSize;
3156 assert((ThisVal >> ShiftSize) <= MaxEncoding &&
3160 .addImm(Sign * (int)ThisVal);
3168 int Imm = (int)(ThisVal << LocalShiftSize);
3194 Offset -= ThisVal << LocalShiftSize;
H A DAArch64ISelLowering.h650 SDValue ThisVal) const;
H A DAArch64ISelLowering.cpp3677 SDValue ThisVal) const {
3697 InVals.push_back(ThisVal);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp6876 LValue *This = nullptr, ThisVal;
6885 if (!EvaluateObjectArgument(Info, ME->getBase(), ThisVal))
6890 This = &ThisVal;
6895 HandleMemberPointerAccess(Info, BE, ThisVal, false);
6901 This = &ThisVal;
6908 return EvaluateObjectArgument(Info, PDE->getBase(), ThisVal);
6940 if (!EvaluateObjectArgument(Info, Args[0], ThisVal))
6942 This = &ThisVal;
14608 LValue ThisVal;
14617 EvaluateObjectArgument(Info, This, ThisVal)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp823 Value *ThisVal = isValueEqualityComparison(TI);
824 assert(ThisVal && "This isn't a value comparison!!");
825 if (ThisVal != PredVal)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11501 APInt ThisVal = OpVal.trunc(DstBitSize); local
11502 Ops.push_back(DAG.getConstant(ThisVal, DL, DstEltVT));

Completed in 714 milliseconds