Searched refs:FR (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedPointee.cpp34 LocField(const FieldRegion *FR, const bool IsDereferenced = true) argument
35 : FieldNode(FR), IsDereferenced(IsDereferenced) {}
64 NeedsCastLocField(const FieldRegion *FR, const QualType &T) argument
65 : FieldNode(FR), CastBackType(T) {}
94 CyclicLocField(const FieldRegion *FR) : FieldNode(FR) {} argument
124 /// Dereferences \p FR and returns with the pointee's region, and whether it
128 const FieldRegion *FR);
139 const FieldRegion *FR, FieldChainInfo LocalChain) {
141 SVal V = State->getSVal(FR);
138 isDereferencableUninit( const FieldRegion *FR, FieldChainInfo LocalChain) argument
222 dereference(ProgramStateRef State, const FieldRegion *FR) argument
[all...]
H A DUninitializedObject.h87 const FieldRegion *FR; member in class:clang::ento::FieldNode
94 FieldNode(const FieldRegion *FR) : FR(FR) {} argument
111 if (FR == nullptr)
114 return FR == OtherFR;
117 const FieldRegion *getRegion() const { return FR; }
119 assert(FR);
120 return FR->getDecl();
138 /// Print the node. Should contain the name of the field stored in FR
[all...]
H A DUninitializedObjectChecker.cpp58 RegularField(const FieldRegion *FR) : FieldNode(FR) {} argument
244 const FieldRegion *FR = Chain.getUninitRegion(); local
246 assert((PointeeR || !isDereferencableType(FR->getDecl()->getType())) &&
251 FR->getDecl()->getLocation()))
254 if (Opts.IgnoreGuardedFields && !hasUnguardedAccess(FR->getDecl(), State))
257 if (State->contains<AnalyzedRegions>(FR))
267 State = State->add<AnalyzedRegions>(FR);
273 return UninitFields.insert({FR, std::move(NoteMsgBuf)}).second;
302 const auto *FR local
[all...]
/freebsd-13-stable/share/i18n/csmapper/ISO646/
H A DMakefile14 ISO646-FI%UCS.646 ISO646-FR%UCS.646 ISO646-FR1%UCS.646 \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLocalStackSlotAllocation.cpp350 FrameRef &FR = FrameReferenceInsns[ref]; local
351 MachineInstr &MI = *FR.getMachineInstr();
352 int64_t LocalOffset = FR.getLocalOffset();
353 int FrameIdx = FR.getFrameIndex();
H A DStackMaps.cpp441 for (auto const &FR : FnInfos) {
442 LLVM_DEBUG(dbgs() << WSMP << "function addr: " << FR.first
443 << " frame size: " << FR.second.StackSize
444 << " callsite count: " << FR.second.RecordCount << '\n');
445 OS.emitSymbolValue(FR.first, 8);
446 OS.emitIntValue(FR.second.StackSize, 8);
447 OS.emitIntValue(FR.second.RecordCount, 8);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DRDFCopy.cpp146 auto FR = EM.find(DR); local
147 if (FR == EM.end())
149 RegisterRef SR = FR->second;
H A DHexagonEarlyIfConv.cpp204 unsigned TSR, unsigned FR, unsigned FSR);
779 unsigned PredR, unsigned TR, unsigned TSR, unsigned FR, unsigned FSR) {
806 .addReg(FR, 0, FSR);
818 unsigned TR = 0, TSR = 0, FR = 0, FSR = 0, SR = 0, SSR = 0; local
826 FR = RO.getReg(), FSR = RO.getSubReg();
834 else if (FR == 0)
835 FR = SR, FSR = SSR;
837 assert(TR || FR);
840 if (TR && FR) {
844 FP.PredR, TR, TSR, FR, FS
777 buildMux(MachineBasicBlock *B, MachineBasicBlock::iterator At, const TargetRegisterClass *DRC, unsigned PredR, unsigned TR, unsigned TSR, unsigned FR, unsigned FSR) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp808 static inline bool isUnionField(const FieldRegion *FR) { argument
809 return FR->getDecl()->getParent()->isUnion();
821 if (const FieldRegion *FR = dyn_cast<FieldRegion>(R))
822 if (!isUnionField(FR))
823 Fields.push_back(FR->getDecl());
878 } else if (const FieldRegion *FR = dyn_cast<FieldRegion>(Top)) {
879 if (FR->getDecl()->isBitField())
880 Length = FR->getDecl()->getBitWidthValue(SVB.getContext());
1481 if (const FieldRegion* FR = dyn_cast<FieldRegion>(R))
1482 return CastRetrievedVal(getBindingForField(B, FR), F
2427 const FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); local
[all...]
H A DMemRegion.cpp712 const auto *const FR = dyn_cast<FieldRegion>(this); local
716 if (FR) {
717 return FR->getDecl()->getSourceRange();
1541 const auto *FR = cast<FieldRegion>(R); local
1542 R = FR->getSuperRegion();
1545 const RecordDecl *RD = FR->getDecl()->getParent();
1564 if (FR->getDecl() == *FI)
H A DBugReporterVisitors.cpp515 const FieldRegion *FR = MmrMgr.getFieldRegion(I, cast<SubRegion>(R)); local
516 const SVal V = State->getSVal(FR);
520 VecF.push_back(FR);
527 findRegionOfInterestInRecord(RRD, State, FR, VecF, depth + 1))
H A DBugReporter.cpp1048 const auto *FR = cast<CXXForRangeStmt>(Term); local
1049 if (isContainedByStmt(PM, FR->getInc(), S))
1051 if (isContainedByStmt(PM, FR->getLoopVarStmt(), S))
1053 LoopBody = FR->getBody();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp476 std::vector<syntax::Token> syntax::tokenize(const FileRange &FR,
492 auto SrcBuffer = SM.getBufferData(FR.file());
493 Lexer L(SM.getLocForStartOfFile(FR.file()), LO, SrcBuffer.data(),
494 SrcBuffer.data() + FR.beginOffset(),
495 // We can't make BufEnd point to FR.endOffset, as Lexer requires a
500 while (!L.LexFromRawLexer(T) && L.getCurrentBufferOffset() < FR.endOffset())
504 if (SM.getFileOffset(T.getLocation()) < FR.endOffset())
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DTokens.h392 /// that, the first token might be incomplete if FR.startOffset is not at the
394 /// FR.endOffset but might end after it.
396 tokenize(const FileRange &FR, const SourceManager &SM, const LangOptions &LO);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp259 const FieldRegion *FR = MrMgr.getFieldRegion(I, R); local
263 if (Find(FR))
266 const SVal &V = StoreMgr.getBinding(store, loc::MemRegionVal(FR));
H A DMallocChecker.cpp2685 FreeReturnValueTy FR = state->get<FreeReturnValue>(); local
2686 for (FreeReturnValueTy::iterator I = FR.begin(), E = FR.end(); I != E; ++I) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp928 Value *FR = Builder.CreateIntrinsic(FMAD, local
936 FR = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, FR, FQ);
942 Value *CV = Builder.CreateFCmpOGE(FR, FB);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp743 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); local
745 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DLegacyPassManager.cpp258 OptimizationRemarkAnalysis FR("size-info", "FunctionIRSizeChange",
260 FR << DiagnosticInfoOptimizationBase::Argument("Pass", PassName)
271 F->getContext().diagnose(FR);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1421 const FieldRegion *getFieldRegionWithSuper(const FieldRegion *FR, argument
1423 return getFieldRegion(FR->getDecl(), superRegion);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp2116 OverloadExpr::FindResult FR = OverloadExpr::find(const_cast<Expr*>(&E)); local
2119 if (FR.HasFormOfMemberPointer)
2122 Overloads = FR.Expression;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h320 FunctionRecord(FunctionRecord &&FR) = default; member in struct:llvm::coverage::FunctionRecord
/freebsd-13-stable/contrib/ntp/lib/isc/win32/
H A Dlibisc.mak478 CPP_PROJ=/nologo /MDd /W3 /Gm /GX /ZI /Od /I "./" /I "../../../" /I "include" /I "../include" /I "../../../lib/isc/noatomic/include" /I "win32" /I "../../isccfg/include" /I "../../../../libxml2-2.7.3/include" /D "BIND9" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "__STDC__" /D "_MBCS" /D "_USRDLL" /D "LIBISC_EXPORTS" /FR"$(INTDIR)\\" /Fp"$(INTDIR)\libisc.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6036 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), local
6038 FR = DAG.getZExtOrTrunc(FR, DL, getPointerMemTy(DAG.getDataLayout()));
6040 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
6050 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsGPRSize() > 0 local
6055 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3414 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); local
3416 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
3448 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), local
3484 return DAG.getStore(thirdStore, dl, FR, nextPtr,

Completed in 482 milliseconds

12