| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | RDFGraph.h | 782 static bool IsRef(const NodeAddr<NodeBase*> BA) { in IsRef() 783 return BA.Addr->getType() == NodeAttrs::Ref && in IsRef() 784 BA.Addr->getKind() == Kind; in IsRef() 789 return BA.Addr->getType() == NodeAttrs::Code && in IsCode() 790 BA.Addr->getKind() == Kind; in IsCode() 794 return BA.Addr->getType() == NodeAttrs::Ref && in IsDef() 795 BA.Addr->getKind() == NodeAttrs::Def; in IsDef() 799 return BA.Addr->getType() == NodeAttrs::Ref && in IsUse() 800 BA.Addr->getKind() == NodeAttrs::Use; in IsUse() 805 BA.Addr->getKind() == NodeAttrs::Phi; in IsPhi() [all …]
|
| H A D | MachineOperand.h | 195 const BlockAddress *BA; // For MO_BlockAddress. member 570 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 866 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset, 869 Op.Contents.OffsetedInfo.Val.BA = BA;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RDFGraph.cpp | 856 BA.Addr->setCode(BB); in newBlock() 857 Owner.Addr->addMember(BA, *this); in newBlock() 858 return BA; in newBlock() 881 buildStmt(BA, I); in build() 953 recordDefsForDF(PhiM, BA); in build() 955 buildPhis(PhiM, AllRefs, BA); in build() 1381 NodeAddr<BlockNode*> BA) { in recordDefsForDF() argument 1421 NodeAddr<BlockNode*> BA) { in buildPhis() argument 1424 auto HasDF = PhiM.find(BA.Id); in buildPhis() 1642 markBlock(BA.Id, DefM); in linkBlockRefs() [all …]
|
| H A D | RDFLiveness.cpp | 169 return BA.Addr->getCode(); in getAllReachingDefs() 365 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 402 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef() 403 BA = NodeAddr<BlockNode*>(); in getNearestAliasedRef() 406 BA = DFG.findBlock(N->getBlock()); in getNearestAliasedRef() 408 if (!BA.Id) in getNearestAliasedRef() 411 Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 471 for (NodeAddr<BlockNode*> BA : Blocks) { in computePhiInfo() 781 for (NodeAddr<BlockNode*> BA : Blocks) { in computeLiveIns() 799 for (NodeAddr<BlockNode*> BA : Blocks) { in computeLiveIns() [all …]
|
| H A D | IndirectBrExpandPass.cpp | 149 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runOnFunction() local 153 if (!BA->isConstantUsed()) in runOnFunction() 161 auto *ITy = cast<IntegerType>(DL.getIntPtrType(BA->getType())); in runOnFunction() 168 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(BBIndexC, BA->getType())); in runOnFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionAliasAnalysis.cpp | 55 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() local 60 if (!isa<SCEVCouldNotCompute>(BA) && in alias() 61 ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 62 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax())) in alias()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 109 BitcodeAnalyzer BA(MB->getBuffer(), in main() local 118 ExitOnErr(BA.analyze( in main() 125 BA.printStats(O, StringRef(InputFilename.getValue())); in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SplitModule.cpp | 135 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions() local 136 if (!BA || !BA->isConstantUsed()) in findPartitions() 138 addAllGlobalValueUsers(GVtoClusterMap, F, BA); in findPartitions()
|
| H A D | ValueMapper.cpp | 180 Value *mapBlockAddress(const BlockAddress &BA); 435 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) in mapValue() local 436 return mapBlockAddress(*BA); in mapValue() 524 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress() argument 525 Function *F = cast<Function>(mapValue(BA.getFunction())); in mapBlockAddress() 532 DelayedBBs.push_back(DelayedBasicBlock(BA)); in mapBlockAddress() 535 BB = cast_or_null<BasicBlock>(mapValue(BA.getBasicBlock())); in mapBlockAddress() 538 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock()); in mapBlockAddress()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kISelDAGToDAG.cpp | 563 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 564 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 565 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper() 566 if (!foldOffsetIntoAddress(BA->getOffset(), AM)) { in matchWrapper() 600 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 601 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 602 AM.Disp += BA->getOffset(); in matchWrapper() 603 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper()
|
| /freebsd-13.1/crypto/heimdal/lib/wind/ |
| H A D | NormalizationTest.txt | 72 00BA;00BA;00BA;006F;006F; # (º; º; º; o; o; ) MASCULINE ORDINAL INDICATOR 403 03F0;03F0;03F0;03BA;03BA; # (ϰ; ϰ; ϰ; κ; κ; ) GREEK KAPPA SYMBOL 1380 24BA;24BA;24BA;0045;0045; # (Ⓔ; Ⓔ; Ⓔ; E; E; ) CIRCLED LATIN CAPITAL LETTER E 1692 30BA;30BA;30B9 3099;30BA;30B9 3099; # (ズ; ズ; ス◌゙; ズ; ス◌゙; ) KATAKANA LETTER ZU 1996 32BA;32BA;32BA;0034 0035;0034 0035; # (㊺; ㊺; ㊺; 45; 45; ) CIRCLED NUMBER FORTY FIVE 2251 33BA;33BA;33BA;0070 0057;0070 0057; # (㎺; ㎺; ㎺; pW; pW; ) SQUARE PW 2340 AC13;AC13;1100 1161 11BA;AC13;1100 1161 11BA; # (갓; 갓; 갓; 갓; 갓; ) HANGUL SYLLABLE GAS 2480 AC9F;AC9F;1100 1166 11BA;AC9F;1100 1166 11BA; # (겟; 겟; 겟; 겟; 겟; ) HANGUL SYLLABLE GES 13510 F911;87BA;87BA;87BA;87BA; # (螺; 螺; 螺; 螺; 螺; ) CJK COMPATIBILITY IDEOGRAPH-F911 13977 FB9E;FB9E;FB9E;06BA;06BA; # (ﮞ; ﮞ; ﮞ; ں; ں; ) ARABIC LETTER NOON GHUNNA ISOLATED FORM [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | StandardInstrumentations.cpp | 983 auto BA = After.Graph.find(BB.first); in printDiff() local 984 if (BA == After.Graph.end()) { in printDiff() 991 for (auto &BA : After.Graph) { in printDiff() local 992 auto BB = Before.Graph.find(BA.first); in printDiff() 995 printBBName(out, BA.first); in printDiff() 996 out << " is added (" << BA.second.size() << " successors)\n"; in printDiff() 1000 if (BB->second == BA.second) in printDiff() 1004 printBBName(out, BA.first); in printDiff() 1015 out << "- after (" << BA.second.size() << "): "; in printDiff() 1016 for (auto &SuccA : BA.second) { in printDiff()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFAsmPrinter.cpp | 94 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 95 O << BA->getName(); in printOperand()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 916 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() local 919 OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer() 921 if (BA != Backend_EmitNothing && !OS) in CreateASTConsumer() 957 BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(), in CreateASTConsumer() 1049 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction() local 1054 GetOutputStream(CI, getCurrentFile(), BA); in ExecuteAction() 1055 if (BA != Backend_EmitNothing && !OS) in ExecuteAction() 1089 BackendConsumer Result(BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(), in ExecuteAction() 1114 CI.getTarget().getDataLayoutString(), TheModule.get(), BA, in ExecuteAction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | BasicBlock.cpp | 81 BlockAddress *BA = cast<BlockAddress>(user_back()); in ~BasicBlock() local 82 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, in ~BasicBlock() 83 BA->getType())); in ~BasicBlock() 84 BA->destroyConstant(); in ~BasicBlock()
|
| /freebsd-13.1/bin/sh/tests/errors/ |
| H A D | backquote-error2.0 | 3 ${SH} -c 'echo `echo .BA"DCODE.`
|
| /freebsd-13.1/stand/libsa/ |
| H A D | globals.c | 20 u_char bcea[6] = BA; /* broadcast ethernet address */
|
| /freebsd-13.1/share/vt/fonts/ |
| H A D | vgarom-thin-8x8.hex | 114 00BA:38444438007C0000 242 25BA:80E0F8FEF8E08000
|
| H A D | vgarom-thin-8x16.hex | 126 00BA:0038444438007C000000000000000000 292 25BA:0080C0E0F0F8FEF8F0E0C08000000000
|
| H A D | vgarom-8x16.hex | 126 00BA:00386C6C38007C000000000000000000 347 03BA:0000000000E66C78786C66E600000000 571 25BA:0080C0E0F0F8FEF8F0E0C08000000000
|
| H A D | vgarom-16x32.hex | 126 00BA:000000000FC00FC03CF03CF03CF03CF00FC00FC0000000003FF03FF000000000000000000000000000000000000000… 347 03BA:0000000000000000000000000000000000000000FC3CFC3C3CF03CF03FC03FC03FC03FC03CF03CF03C3C3C3CFC3CFC… 571 25BA:00000000C000C000F000F000FC00FC00FF00FF00FFC0FFC0FFFCFFFCFFC0FFC0FF00FF00FC00FC00F000F000C000C0…
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiAsmPrinter.cpp | 86 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 87 O << BA->getName(); in printOperand()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrInfo.cpp | 143 static bool isUncondBranchOpcode(int Opc) { return Opc == SP::BA; } in isUncondBranchOpcode() 255 BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB); in insertBranch() 269 BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB); in insertBranch() 285 if (I->getOpcode() != SP::BA in removeBranch()
|