/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | RDFDeadCode.cpp | 129 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) in collect() 130 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) in collect() 158 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) { in collect() 159 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in collect() 189 auto BA = DFG.addr<NodeBase*>(I); in erase() local 190 uint16_t Type = BA.Addr->getType(); in erase() 197 uint16_t Kind = BA.Addr->getKind(); in erase() 199 append_range(DRNs, NodeAddr<CodeNode*>(BA).Addr->members(DFG)); in erase() 232 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in erase() local 233 BA.Addr->removeMember(IA, DFG); in erase()
|
H A D | RDFCopy.cpp | 106 NodeAddr<BlockNode*> BA = DFG.findBlock(B); in scanBlock() local 107 DFG.markBlock(BA.Id, DefM); in scanBlock() 109 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in scanBlock() 125 DFG.releaseBlock(BA.Id, DefM); in scanBlock()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | InterfaceFile.cpp | 355 void InterfaceFile::setFromBinaryAttrs(const RecordsSlice::BinaryAttrs &BA, in setFromBinaryAttrs() argument 357 if (getFileType() != BA.File) in setFromBinaryAttrs() 358 setFileType(BA.File); in setFromBinaryAttrs() 360 setInstallName(BA.InstallName); in setFromBinaryAttrs() 361 if (BA.AppExtensionSafe && !isApplicationExtensionSafe()) in setFromBinaryAttrs() 363 if (BA.TwoLevelNamespace && !isTwoLevelNamespace()) in setFromBinaryAttrs() 365 if (BA.OSLibNotForSharedCache && !isOSLibNotForSharedCache()) in setFromBinaryAttrs() 368 setCurrentVersion(BA.CurrentVersion); in setFromBinaryAttrs() 370 setCompatibilityVersion(BA.CompatVersion); in setFromBinaryAttrs() 372 setSwiftABIVersion(BA.SwiftABI); in setFromBinaryAttrs() [all …]
|
H A D | RecordsSlice.cpp | 290 BA = std::make_unique<BinaryAttrs>(); in getBinaryAttrs() 291 return *BA; in getBinaryAttrs() 310 auto &BA = S->getBinaryAttrs(); in createInterfaceFile() local 311 if (BA.InstallName != InstallName) in createInterfaceFile() 315 !BA.TwoLevelNamespace); in createInterfaceFile() 325 auto &BA = S->getBinaryAttrs(); in createInterfaceFile() local 326 if (BA.InstallName != InstallName) in createInterfaceFile() 330 File->setFromBinaryAttrs(BA, Targ); in createInterfaceFile()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 147 auto &BA = Slice.getBinaryAttrs(); in readMachOHeader() local 153 BA.File = FileType::MachO_DynamicLibrary; in readMachOHeader() 156 BA.File = FileType::MachO_DynamicLibrary_Stub; in readMachOHeader() 159 BA.File = FileType::MachO_Bundle; in readMachOHeader() 164 BA.TwoLevelNamespace = true; in readMachOHeader() 166 BA.AppExtensionSafe = true; in readMachOHeader() 172 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader() 173 BA.CurrentVersion = DLLC.dylib.current_version; in readMachOHeader() 174 BA.CompatVersion = DLLC.dylib.compatibility_version; in readMachOHeader() 179 BA.RexportedLibraries.emplace_back( in readMachOHeader() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | RDFGraph.h | 817 template <uint16_t Kind> static bool IsRef(const Node BA) { in IsRef() 818 return BA.Addr->getType() == NodeAttrs::Ref && BA.Addr->getKind() == Kind; in IsRef() 821 template <uint16_t Kind> static bool IsCode(const Node BA) { in IsCode() 822 return BA.Addr->getType() == NodeAttrs::Code && BA.Addr->getKind() == Kind; in IsCode() 825 static bool IsDef(const Node BA) { in IsDef() 826 return BA.Addr->getType() == NodeAttrs::Ref && in IsDef() 827 BA.Addr->getKind() == NodeAttrs::Def; in IsDef() 830 static bool IsUse(const Node BA) { in IsUse() 831 return BA.Addr->getType() == NodeAttrs::Ref && in IsUse() 832 BA.Addr->getKind() == NodeAttrs::Use; in IsUse() [all …]
|
H A D | MachineOperand.h | 200 const BlockAddress *BA; // For MO_BlockAddress. member 589 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 786 void ChangeToBA(const BlockAddress *BA, int64_t Offset, 912 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset, 915 Op.Contents.OffsetedInfo.Val.BA = BA;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RDFGraph.cpp | 845 Block BA = newNode(NodeAttrs::Code | NodeAttrs::Block); in newBlock() local 846 BA.Addr->setCode(BB); in newBlock() 847 Owner.Addr->addMember(BA, *this); in newBlock() 848 return BA; in newBlock() 901 Block BA = newBlock(TheFunc, &B); in build() local 902 BlockNodes.insert(std::make_pair(&B, BA)); in build() 906 buildStmt(BA, I); in build() 940 for (Block BA : Blocks) { in build() local 941 const MachineBasicBlock &B = *BA.Addr->getCode(); in build() 954 Phi PA = newPhi(BA); in build() [all …]
|
H A D | RDFLiveness.cpp | 164 NodeAddr<BlockNode *> BA = PA.Addr->getOwner(DFG); in getAllReachingDefs() local 165 return BA.Addr->getCode(); in getAllReachingDefs() 359 NodeAddr<BlockNode *> BA = IA.Addr->getOwner(DFG); in getNearestAliasedRef() local 360 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 397 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef() 398 BA = NodeAddr<BlockNode *>(); in getNearestAliasedRef() 401 BA = DFG.findBlock(N->getBlock()); in getNearestAliasedRef() 403 if (!BA.Id) in getNearestAliasedRef() 406 Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 466 for (NodeAddr<BlockNode *> BA : Blocks) { in computePhiInfo() [all …]
|
H A D | IndirectBrExpandPass.cpp | 153 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runImpl() local 157 if (!BA->isConstantUsed()) in runImpl() 165 auto *ITy = cast<IntegerType>(DL.getIntPtrType(BA->getType())); in runImpl() 172 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(BBIndexC, BA->getType())); in runImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolutionAliasAnalysis.cpp | 78 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() local 83 if (!isa<SCEVCouldNotCompute>(BA) && in alias() 84 ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 85 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax())) in alias()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/ |
H A D | llvm-bcanalyzer.cpp | 115 BitcodeAnalyzer BA(MB->getBuffer(), in main() local 126 ExitOnErr(BA.analyze( in main() 133 BA.printStats(O, StringRef(InputFilename.getValue())); in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SplitModule.cpp | 152 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions() local 153 if (!BA || !BA->isConstantUsed()) in findPartitions() 155 addAllGlobalValueUsers(GVtoClusterMap, F, BA); in findPartitions()
|
H A D | ValueMapper.cpp | 181 Value *mapBlockAddress(const BlockAddress &BA); 441 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) in mapValue() local 442 return mapBlockAddress(*BA); in mapValue() 591 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress() argument 592 Function *F = cast<Function>(mapValue(BA.getFunction())); in mapBlockAddress() 599 DelayedBBs.push_back(DelayedBasicBlock(BA)); in mapBlockAddress() 602 BB = cast_or_null<BasicBlock>(mapValue(BA.getBasicBlock())); in mapBlockAddress() 605 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock()); in mapBlockAddress()
|
/freebsd/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 1670 3070;3070;306F 3099;3070;306F 3099; # (ば; ば; は◌゙; ば; は◌゙; ) HIRAGANA LETTER BA 1692 30BA;30BA;30B9 3099;30BA;30B9 3099; # (ズ; ズ; ス◌゙; ズ; ス◌゙; ) KATAKANA LETTER ZU 1700 30D0;30D0;30CF 3099;30D0;30CF 3099; # (バ; バ; ハ◌゙; バ; ハ◌゙; ) KATAKANA LETTER BA 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 2368 AC2F;AC2F;1100 1162 11BA;AC2F;1100 1162 11BA; # (갯; 갯; 갯; 갯; 갯; ) HANGUL SYLLABLE GAES [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kISelDAGToDAG.cpp | 613 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 614 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 615 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper() 616 if (!foldOffsetIntoAddress(BA->getOffset(), AM)) { in matchWrapper() 650 } else if (auto *BA = dyn_cast<BlockAddressSDNode>(N0)) { in matchWrapper() local 651 AM.BlockAddr = BA->getBlockAddress(); in matchWrapper() 652 AM.Disp += BA->getOffset(); in matchWrapper() 653 AM.SymbolFlags = BA->getTargetFlags(); in matchWrapper()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | RecordsSlice.h | 132 bool hasBinaryAttrs() const { return BA.get(); } in hasBinaryAttrs() 194 std::unique_ptr<BinaryAttrs> BA{nullptr};
|
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
H A D | BPFAsmPrinter.cpp | 93 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 94 O << BA->getName(); in printOperand()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenAction.cpp | 1000 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() local 1003 OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer() 1005 if (BA != Backend_EmitNothing && !OS) in CreateASTConsumer() 1019 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() 1225 BA, CI.getFileManager().getVirtualFileSystemPtr(), std::move(OS)); in ExecuteAction()
|
/freebsd/bin/sh/tests/errors/ |
H A D | backquote-error2.0 | 2 ${SH} -c 'echo `echo .BA"DCODE.`
|
/freebsd/share/vt/fonts/ |
H A D | vgarom-thin-8x8.hex | 113 00BA:38444438007C0000 241 25BA:80E0F8FEF8E08000
|
H A D | vgarom-thin-8x16.hex | 125 00BA:0038444438007C000000000000000000 291 25BA:0080C0E0F0F8FEF8F0E0C08000000000
|
/freebsd/stand/libsa/ |
H A D | globals.c | 17 u_char bcea[6] = BA; /* broadcast ethernet address */
|
/freebsd/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/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcInstrInfo.cpp | 161 static bool isUncondBranchOpcode(int Opc) { return Opc == SP::BA; } in isUncondBranchOpcode() 217 case SP::BA: in getBranchDestBlock() 339 BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB); in insertBranch() 361 BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB); in insertBranch() 405 case SP::BA: in isBranchOffsetInRange()
|