| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | IntervalMapTest.cpp | 710 ASSERT_TRUE(BA.valid()); in TEST() 714 BA.advanceTo(6); in TEST() 717 BA.advanceTo(7); in TEST() 787 ASSERT_TRUE(BA.valid()); in TEST() 790 ++BA; in TEST() 791 ASSERT_TRUE(BA.valid()); in TEST() 794 ++BA; in TEST() 798 ++BA; in TEST() 802 ++BA; in TEST() 806 BA.skipA(); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | RDFDeadCode.cpp | 128 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) in collect() 129 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) in collect() 157 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) { in collect() 158 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in collect() 188 auto BA = DFG.addr<NodeBase*>(I); in erase() local 189 uint16_t Type = BA.Addr->getType(); in erase() 196 uint16_t Kind = BA.Addr->getKind(); in erase() 198 append_range(DRNs, NodeAddr<CodeNode*>(BA).Addr->members(DFG)); in erase() 231 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in erase() local 232 BA.Addr->removeMember(IA, DFG); in erase()
|
| H A D | RDFCopy.cpp | 70 NodeAddr<BlockNode*> BA = DFG.findBlock(B); in scanBlock() local 72 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in scanBlock()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | RDFGraph.h | 781 static bool IsRef(const NodeAddr<NodeBase*> BA) { in IsRef() 782 return BA.Addr->getType() == NodeAttrs::Ref && in IsRef() 783 BA.Addr->getKind() == Kind; in IsRef() 788 return BA.Addr->getType() == NodeAttrs::Code && in IsCode() 789 BA.Addr->getKind() == Kind; in IsCode() 793 return BA.Addr->getType() == NodeAttrs::Ref && in IsDef() 794 BA.Addr->getKind() == NodeAttrs::Def; in IsDef() 798 return BA.Addr->getType() == NodeAttrs::Ref && in IsUse() 799 BA.Addr->getKind() == NodeAttrs::Use; in IsUse() 804 BA.Addr->getKind() == NodeAttrs::Phi; in IsPhi() [all …]
|
| H A D | MachineOperand.h | 194 const BlockAddress *BA; // For MO_BlockAddress. member 579 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 875 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset, 878 Op.Contents.OffsetedInfo.Val.BA = BA;
|
| /llvm-project-15.0.7/llvm/test/Demangle/ |
| H A D | ms-templates-memptrs.test | 5 ??$CallMethod@UC@NegativeNVOffset@@$I??_912@$BA@AEPPPPPPPM@A@@@YAXAAUC@NegativeNVOffset@@@Z 11 ??$CallMethod@UM@@$H??_91@$BA@AEA@@@YAXAAUM@@@Z 17 ??$CallMethod@UO@@$H??_91@$BA@AE3@@YAXAAUO@@@Z 23 ??$CallMethod@US@@$1??_91@$BA@AE@@YAXAAUS@@@Z 32 ??$CallMethod@UU@@$J??_91@$BA@AEA@A@A@@@YAXAAUU@@@Z 41 ??$CallMethod@UV@@$I??_91@$BA@AEA@A@@@YAXAAUV@@@Z 62 ??$ReadField@UM@@$0BA@@@YAHAAUM@@@Z
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 854 BA.Addr->setCode(BB); in newBlock() 855 Owner.Addr->addMember(BA, *this); in newBlock() 856 return BA; in newBlock() 879 buildStmt(BA, I); in build() 951 recordDefsForDF(PhiM, BA); in build() 953 buildPhis(PhiM, AllRefs, BA); in build() 1367 NodeAddr<BlockNode*> BA) { in recordDefsForDF() argument 1407 NodeAddr<BlockNode*> BA) { in buildPhis() argument 1410 auto HasDF = PhiM.find(BA.Id); in buildPhis() 1628 markBlock(BA.Id, DefM); in linkBlockRefs() [all …]
|
| H A D | RDFLiveness.cpp | 168 return BA.Addr->getCode(); in getAllReachingDefs() 363 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 400 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef() 401 BA = NodeAddr<BlockNode*>(); in getNearestAliasedRef() 404 BA = DFG.findBlock(N->getBlock()); in getNearestAliasedRef() 406 if (!BA.Id) in getNearestAliasedRef() 409 Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 469 for (NodeAddr<BlockNode*> BA : Blocks) { in computePhiInfo() 779 for (NodeAddr<BlockNode*> BA : Blocks) { in computeLiveIns() 797 for (NodeAddr<BlockNode*> BA : Blocks) { in computeLiveIns() [all …]
|
| H A D | IndirectBrExpandPass.cpp | 145 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runOnFunction() local 149 if (!BA->isConstantUsed()) in runOnFunction() 157 auto *ITy = cast<IntegerType>(DL.getIntPtrType(BA->getType())); in runOnFunction() 164 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(BBIndexC, BA->getType())); in runOnFunction()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionAliasAnalysis.cpp | 64 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() local 69 if (!isa<SCEVCouldNotCompute>(BA) && in alias() 70 ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 71 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax())) in alias()
|
| /llvm-project-15.0.7/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 115 BitcodeAnalyzer BA(MB->getBuffer(), in main() local 125 ExitOnErr(BA.analyze( in main() 132 BA.printStats(O, StringRef(InputFilename.getValue())); in main()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | SplitModule.cpp | 139 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions() local 140 if (!BA || !BA->isConstantUsed()) in findPartitions() 142 addAllGlobalValueUsers(GVtoClusterMap, F, BA); in findPartitions()
|
| H A D | ValueMapper.cpp | 181 Value *mapBlockAddress(const BlockAddress &BA); 440 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) in mapValue() local 441 return mapBlockAddress(*BA); in mapValue() 535 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress() argument 536 Function *F = cast<Function>(mapValue(BA.getFunction())); in mapBlockAddress() 543 DelayedBBs.push_back(DelayedBasicBlock(BA)); in mapBlockAddress() 546 BB = cast_or_null<BasicBlock>(mapValue(BA.getBasicBlock())); in mapBlockAddress() 549 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock()); in mapBlockAddress()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/Inputs/ |
| H A D | every-enum.cpp | 72 BA = true, enumerator 103 f(BA); in main()
|
| /llvm-project-15.0.7/llvm/lib/Target/M68k/ |
| H A D | M68kISelDAGToDAG.cpp | 591 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 592 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 593 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper() 594 if (!foldOffsetIntoAddress(BA->getOffset(), AM)) { in matchWrapper() 628 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 629 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 630 AM.Disp += BA->getOffset(); in matchWrapper() 631 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper()
|
| /llvm-project-15.0.7/llvm/unittests/Remarks/ |
| H A D | RemarksLinkingTest.cpp | 35 BitcodeAnalyzer BA(OS.str()); in serializeAndCheck() local 36 EXPECT_FALSE(BA.analyze(O)); // Expect no errors. in serializeAndCheck()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | vararg-tallcall.ll | 11 $"??_9B@@$BA@AA" = comdat any 14 define linkonce_odr void @"??_9B@@$BA@AA"(%struct.B* %this, ...) #1 comdat align 2 {
|
| /llvm-project-15.0.7/llvm/lib/Target/BPF/ |
| H A D | BPFAsmPrinter.cpp | 94 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 95 O << BA->getName(); in printOperand()
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | 2010-03-09-AnonAggregate.cpp | 8 …union { struct { union { int BA; } Val; int Offset; } OffsetedInfo;… member
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 1014 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() local 1017 OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer() 1019 if (BA != Backend_EmitNothing && !OS) in CreateASTConsumer() 1057 BA, CI.getDiagnostics(), &CI.getVirtualFileSystem(), in CreateASTConsumer() 1149 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction() local 1154 GetOutputStream(CI, getCurrentFileOrBufferName(), BA); in ExecuteAction() 1155 if (BA != Backend_EmitNothing && !OS) in ExecuteAction() 1190 BackendConsumer Result(BA, CI.getDiagnostics(), &CI.getVirtualFileSystem(), in ExecuteAction() 1216 CI.getTarget().getDataLayoutString(), TheModule.get(), BA, in ExecuteAction()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | BasicBlock.cpp | 84 BlockAddress *BA = cast<BlockAddress>(user_back()); in ~BasicBlock() local 85 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, in ~BasicBlock() 86 BA->getType())); in ~BasicBlock() 87 BA->destroyConstant(); in ~BasicBlock()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/COFF/ |
| H A D | vftables.ll | 209 $"\01??_7C@@6BA@@@" = comdat largest 213 $"\01??_R4C@@6BA@@@" = comdat any 227 $"\01??_7D@@6BA@@@" = comdat largest 231 $"\01??_R4D@@6BA@@@" = comdat any 257 …ectLocator* @"\01??_R4C@@6BA@@@" to i8*), i8* bitcast (void (%struct.C*)* @"\01?g@C@@UEAAXXZ" to i… 259 …BA@@@" = linkonce_odr constant %rtti.CompleteObjectLocator { i32 1, i32 0, i32 0, i32 trunc (i64 s… 266 …ectLocator* @"\01??_R4D@@6BA@@@" to i8*), i8* bitcast (void (%struct.D*)* @"\01?g@D@@UEAAXXZ" to i… 277 @"\01??_7C@@6BA@@@" = unnamed_addr alias i8*, getelementptr inbounds ([2 x i8*], [2 x i8*]* @2, i32… 279 @"\01??_7D@@6BA@@@" = unnamed_addr alias i8*, getelementptr inbounds ([2 x i8*], [2 x i8*]* @4, i32… 345 …store i32 (...)** bitcast (i8** @"\01??_7C@@6BA@@@" to i32 (...)**), i32 (...)*** %4, align 8, !db… [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/Lanai/ |
| H A D | LanaiAsmPrinter.cpp | 86 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 87 O << BA->getName(); in printOperand()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LowerTypeTests/ |
| H A D | simple.ll | 21 ; CHECK: [[BA:@[^ ]*]] = private constant [68 x i8] c"\03\01\00\00\00\00\00\00\00\00\00\00\00\00\00… 42 ; CHECK: @bits{{[0-9]*}} = private alias i8, getelementptr inbounds ([68 x i8], [68 x i8]* [[BA]], … 43 ; CHECK: @bits.{{[0-9]*}} = private alias i8, getelementptr inbounds ([68 x i8], [68 x i8]* [[BA]],…
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopDeletion/ |
| H A D | blockaddress.ll | 9 ; CHECK: @[[BA:[a-zA-Z0-9_$"\\.-]+]] = private constant ptr inttoptr (i32 1 to ptr)
|