Home
last modified time | relevance | path

Searched refs:BA (Results 1 – 25 of 181) sorted by relevance

12345678

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DRDFDeadCode.cpp128 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 DRDFCopy.cpp70 NodeAddr<BlockNode*> BA = DFG.findBlock(B); in scanBlock() local
72 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in scanBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFGraph.h782 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()
788 static bool IsCode(const NodeAddr<NodeBase*> BA) { in IsCode()
789 return BA.Addr->getType() == NodeAttrs::Code && in IsCode()
790 BA.Addr->getKind() == Kind; in IsCode()
793 static bool IsDef(const NodeAddr<NodeBase*> BA) { in IsDef()
794 return BA.Addr->getType() == NodeAttrs::Ref && in IsDef()
795 BA.Addr->getKind() == NodeAttrs::Def; in IsDef()
798 static bool IsUse(const NodeAddr<NodeBase*> BA) { in IsUse()
[all …]
H A DMachineOperand.h195 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;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRDFGraph.cpp855 NodeAddr<BlockNode*> BA = newNode(NodeAttrs::Code | NodeAttrs::Block); in newBlock() local
856 BA.Addr->setCode(BB); in newBlock()
857 Owner.Addr->addMember(BA, *this); in newBlock()
858 return BA; in newBlock()
876 NodeAddr<BlockNode*> BA = newBlock(Func, &B); in build() local
877 BlockNodes.insert(std::make_pair(&B, BA)); in build()
881 buildStmt(BA, I); in build()
890 for (NodeAddr<BlockNode*> BA : Blocks) in build()
891 for (NodeAddr<InstrNode*> IA : BA.Addr->members(*this)) in build()
923 for (NodeAddr<BlockNode*> BA : Blocks) { in build()
[all …]
H A DRDFLiveness.cpp168 NodeAddr<BlockNode*> BA = PA.Addr->getOwner(DFG); in getAllReachingDefs() local
169 return BA.Addr->getCode(); in getAllReachingDefs()
364 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in getNearestAliasedRef() local
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()
[all …]
H A DIndirectBrExpandPass.cpp149 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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp96 BitcodeAnalyzer BA(MB->getBuffer(), in main() local
105 ExitOnErr(BA.analyze( in main()
112 BA.printStats(O, StringRef(InputFilename.getValue())); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp55 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() local
60 if (ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias()
61 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax())) in alias()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp135 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions() local
136 if (!BA || !BA->isConstantUsed()) in findPartitions()
138 addAllGlobalValueUsers(GVtoClusterMap, F, BA); in findPartitions()
H A DValueMapper.cpp180 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp563 } 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()
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/wind/
H A DNormalizationTest.txt72 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Passes/
H A DStandardInstrumentations.cpp988 auto BA = After.Graph.find(BB.first); in printDiff() local
989 if (BA == After.Graph.end()) { in printDiff()
996 for (auto &BA : After.Graph) { in printDiff() local
997 auto BB = Before.Graph.find(BA.first); in printDiff()
1000 printBBName(out, BA.first); in printDiff()
1001 out << " is added (" << BA.second.size() << " successors)\n"; in printDiff()
1005 if (BB->second == BA.second) in printDiff()
1009 printBBName(out, BA.first); in printDiff()
1020 out << "- after (" << BA.second.size() << "): "; in printDiff()
1021 for (auto &SuccA : BA.second) { in printDiff()
/netbsd-src/sys/dev/tc/
H A Dtcdevs51 device PMAG-BA cfb Color Frame Buffer
61 device PMAGB-BA sfb Smart Frame Buffer
67 device PMAGC-BA pvg 2D Graphics (PV-MID) (ZLX-M2)
72 device PMAGD-BA sfbp Smart Frame Buffer Plus, 32bpp
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenAction.cpp914 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() local
917 OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer()
919 if (BA != Backend_EmitNothing && !OS) in CreateASTConsumer()
955 BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(), in CreateASTConsumer()
1047 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction() local
1052 GetOutputStream(CI, getCurrentFile(), BA); in ExecuteAction()
1053 if (BA != Backend_EmitNothing && !OS) in ExecuteAction()
1087 BackendConsumer Result(BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(), in ExecuteAction()
1112 CI.getTarget().getDataLayoutString(), TheModule.get(), BA, in ExecuteAction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h1102 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) { in visitReferences() local
1105 if (Visited.count(BA->getFunction())) in visitReferences()
1110 if (llvm::all_of(BA->users(), [&](User *U) { in visitReferences()
1112 return I->getFunction() == BA->getFunction(); in visitReferences()
1118 Visited.insert(BA->getFunction()); in visitReferences()
1119 Worklist.push_back(BA->getFunction()); in visitReferences()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFAsmPrinter.cpp94 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local
95 O << BA->getName(); in printOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DBasicBlock.cpp81 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiAsmPrinter.cpp86 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local
87 O << BA->getName(); in printOperand()
/netbsd-src/sys/lib/libsa/
H A Dglobals.c18 u_char bcea[ETHER_ADDR_LEN] = BA; /* broadcast ethernet address */
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp143 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()
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/certs/
H A DembeddedSCTs1.sct10 BA:5B:50:CD:02:21:00:D1:B2:07:13:B9:DE:0F:0F:2F:
/netbsd-src/external/gpl2/groff/dist/font/devlj4/generate/
H A Dspecial.map42 218 25BA u25BA
148 531 03BA *k
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp791 } else if (const BlockAddressSDNode *BA = in print_details() local
793 int64_t offset = BA->getOffset(); in print_details()
795 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false); in print_details()
797 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); in print_details()
803 if (unsigned int TF = BA->getTargetFlags()) in print_details()

12345678