| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 299 ArgEffects ScratchArgs(AF.getEmptyMap()); in getSummaryForObjCOrCFObject() 595 ArgEffects ScratchArgs(AF.getEmptyMap()); in updateSummaryForNonZeroCallbackArg() 659 Template->addArg(AF, parm_idx, in updateSummaryForArgumentTypes() 792 ArgEffects ScratchArgs(AF.getEmptyMap()); in getUnarySummary() 802 ScratchArgs = AF.add(ScratchArgs, 0, Effect); in getUnarySummary() 811 AF.getEmptyMap(), in getOSSummaryRetainRule() 820 AF.getEmptyMap(), in getOSSummaryReleaseRule() 829 AF.getEmptyMap(), in getOSSummaryFreeRule() 838 AF.getEmptyMap()); in getOSSummaryCreateRule() 1185 ArgEffects ScratchArgs = AF.getEmptyMap(); in InitializeClassMethodSummaries() [all …]
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 333 unsigned Offset = Layout.getFragmentOffset(&AF); in computeFragmentSize() 338 if (AF.getParent()->useCodeAlign() && AF.hasEmitNops() && in computeFragmentSize() 344 if (Size > 0 && AF.hasEmitNops()) { in computeFragmentSize() 346 Size += AF.getAlignment().value(); in computeFragmentSize() 348 if (Size > AF.getMaxBytesToEmit()) in computeFragmentSize() 541 if (Count * AF.getValueSize() != FragmentSize) in writeFragment() 543 Twine(AF.getValueSize()) + in writeFragment() 551 if (AF.hasEmitNops()) { in writeFragment() 560 switch (AF.getValueSize()) { in writeFragment() 562 case 1: OS << char(AF.getValue()); break; in writeFragment() [all …]
|
| H A D | MCFragment.cpp | 329 raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) { in operator <<() argument 330 OS << "<MCFixup" << " Offset:" << AF.getOffset() in operator <<() 331 << " Value:" << *AF.getValue() in operator <<() 332 << " Kind:" << AF.getKind() << ">"; in operator <<() 375 const auto *AF = cast<MCAlignFragment>(this); in dump() local 376 if (AF->hasEmitNops()) in dump() 379 OS << " Alignment:" << AF->getAlignment().value() in dump() 380 << " Value:" << AF->getValue() << " ValueSize:" << AF->getValueSize() in dump() 381 << " MaxBytesToEmit:" << AF->getMaxBytesToEmit() << ">"; in dump()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/NVPTX/ |
| H A D | f16-instructions.ll | 374 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 390 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 406 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 422 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 438 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 454 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 471 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 487 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 503 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; 519 ; CHECK-NOF16-DAG: cvt.f32.f16 [[AF:%f[0-9]+]], [[A]]; [all …]
|
| /llvm-project-15.0.7/polly/lib/Analysis/ |
| H A D | ScopDetection.cpp | 772 const SCEV *AF; in isValidIntrinsicInst() local 780 if (!AF->isZero()) { in isValidIntrinsicInst() 789 if (!AF->isZero()) { in isValidIntrinsicInst() 894 for (auto Op : AF->operands()) { in getDelinearizationTerms() 969 const SCEV *AF = Pair.second; in hasValidArraySizes() local 971 if (!isAffine(AF, Scope, Context)) { in hasValidArraySizes() 997 auto *AF = Pair.second; in computeAccessFunctions() local 998 AF = SCEVRemoveMax::rewrite(AF, SE); in computeAccessFunctions() 1004 if (!AF) { in computeAccessFunctions() 1097 AF = SE.getMinusSCEV(AF, BP); in isValidAccess() [all …]
|
| H A D | ScopBuilder.cpp | 1638 auto *AF = SE.getConstant(IntegerType::getInt64Ty(CI->getContext()), 0); in buildAccessCallInst() local 1678 ArgBasePtr->getType(), false, {AF}, {nullptr}, CI); in buildAccessCallInst() 3501 auto *AF = SE.getConstant(IntegerType::getInt64Ty(SE.getContext()), 0); in buildScop() local 3507 BP, BP->getType(), false, {AF}, {nullptr}, GlobalRead); in buildScop()
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVAsmBackend.cpp | 584 const MCAlignFragment &AF, unsigned &Size) { in shouldInsertExtraNopBytesForCodeAlign() argument 586 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertExtraNopBytesForCodeAlign() 593 if (AF.getAlignment() <= MinNopLen) { in shouldInsertExtraNopBytesForCodeAlign() 596 Size = AF.getAlignment().value() - MinNopLen; in shouldInsertExtraNopBytesForCodeAlign() 608 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument 610 const MCSubtargetInfo *STI = AF.getSubtargetInfo(); in shouldInsertFixupForCodeAlign() 617 if (!shouldInsertExtraNopBytesForCodeAlign(AF, Count) || (Count == 0)) in shouldInsertFixupForCodeAlign() 629 Asm.getWriter().recordRelocation(Asm, Layout, &AF, Fixup, NopBytes, in shouldInsertFixupForCodeAlign()
|
| H A D | RISCVAsmBackend.h | 43 bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, 49 MCAlignFragment &AF) override;
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.constr/temp.constr.decl/ |
| H A D | class-template-decl.cpp | 72 struct AF; 83 struct TA<N>::AF { struct in diag::TA
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | amdpal-usersgpr-init.ll | 12 …AF.wavefront_size@\B7.internal_pipeline_hash\92\CF\E83\B3\C2\D1)\7FG\CF[\8A\DF\EE[\7FD,\AA.registe…
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCAsmBackend.h | 107 virtual bool shouldInsertExtraNopBytesForCodeAlign(const MCAlignFragment &AF, in shouldInsertExtraNopBytesForCodeAlign() argument 116 MCAlignFragment &AF) { in shouldInsertFixupForCodeAlign() argument
|
| /llvm-project-15.0.7/clang/test/Modules/ |
| H A D | ModuleModuleDebugInfo.cpp | 12 AF af; // This type is not anchored in the module.
|
| /llvm-project-15.0.7/clang/test/Modules/Inputs/ |
| H A D | DebugNestedB.h | 4 void run(AF &af) { in run()
|
| H A D | DebugNestedA.h | 8 typedef A<F> AF; typedef
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/ |
| H A D | RetainSummaryManager.h | 484 ArgEffects::Factory AF; 533 ArgEffects(AF.getEmptyMap()), 539 ArgEffects(AF.getEmptyMap()), 545 RetEffect::MakeNoRet(), ArgEffects(AF.getEmptyMap()), 628 TrackOSObjects(trackOSObjects), AF(BPAlloc),
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | warn-int-in-bool-context.c | 11 #define AF 1 << 7 macro
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | aix-bytestring.ll | 4 …96\97\98\99\9A\9B\9C\9D\9E\9F\A0\A1\A2\A3\A4\A5\A6\A7\A8\A9\AA\AB\AC\AD\AE\AF\B0\B1\B2\B3\B4\B5\B6…
|
| H A D | pr33547.ll | 6 …00\00\00\05\00\00\00\04\00\00\00\0A\00\00\00\0A\00\00\00\0B\00\00\00\0A\08\AF/\B8\B6\87\04 \A1\07\…
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 507 if (ObjCAtFinallyStmt *AF = AT->getFinallyStmt()) { in BuildScopeInformation() local 512 AF->getAtFinallyLoc())); in BuildScopeInformation() 513 BuildScopeInformation(AF, NewParentScope); in BuildScopeInformation()
|
| /llvm-project-15.0.7/polly/include/polly/ |
| H A D | ScopDetection.h | 398 bool isValidAccess(Instruction *Inst, const SCEV *AF, const SCEVUnknown *BP,
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocChecker.cpp | 2419 AllocationFamily AF = in HandleUseAfterFree() local 2424 AF == AF_InnerBuffer in HandleUseAfterFree() 2433 if (AF == AF_InnerBuffer) in HandleUseAfterFree()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InstrSystem.td | 755 // AF, OF, and SF are cleared. In case of failure, the failure reason is 756 // indicated in RAX with ZF set to 1 and CF, PF, AF, OF, and SF are cleared."
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | VirtualFileSystemTest.cpp | 2914 auto AF = FS.openFileForRead("//root/a/f"); in TEST_F() local 2915 ASSERT_FALSE(AF.getError()) << Message; in TEST_F() 2916 auto AFName = (*AF)->getName(); in TEST_F()
|
| /llvm-project-15.0.7/llvm/test/Demangle/ |
| H A D | ms-string-literals.test | 255 ??_C@_01MDFBBJEF@?$AF?$AA@
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | MipsScheduleP5600.td | 372 def : InstRW<[P5600WriteFPUS], (instregex "^FS(AF|EQ|LT|LE|NE|OR)_(W|D)$")>;
|