/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | PostDominators.cpp | 59 const BasicBlock *BB2 = I2->getParent(); in dominates() local 61 if (BB1 != BB2) in dominates() 62 return Base::dominates(BB1, BB2); in dominates()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Dominators.cpp | 347 BasicBlock *BB2 = I2->getParent(); in findNearestCommonDominator() local 348 if (BB1 == BB2) in findNearestCommonDominator() 350 if (!isReachableFromEntry(BB2)) in findNearestCommonDominator() 354 BasicBlock *DomBB = findNearestCommonDominator(BB1, BB2); in findNearestCommonDominator() 357 if (BB2 == DomBB) in findNearestCommonDominator()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | SampleProfileLoaderBaseImpl.h | 609 for (const auto *BB2 : Descendants) { 610 bool IsDomParent = DomTree->dominates(BB2, BB1); 611 bool IsInSameLoop = LI->getLoopFor(BB1) == LI->getLoopFor(BB2); 612 if (BB1 != BB2 && IsDomParent && IsInSameLoop) { 613 EquivalenceClass[BB2] = EC; 615 if (VisitedBlocks.count(BB2)) { 627 Weight = std::max(Weight, BlockWeights[BB2]);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsMCInstLower.h | 43 MCOperand createSub(MachineBasicBlock *BB1, MachineBasicBlock *BB2,
|
H A D | MipsMCInstLower.cpp | 204 MachineBasicBlock *BB2, in createSub() 207 const MCSymbolRefExpr *Sym2 = MCSymbolRefExpr::create(BB2->getSymbol(), *Ctx); in createSub() 205 createSub(MachineBasicBlock * BB1,MachineBasicBlock * BB2,MipsMCExpr::MipsExprKind Kind) const createSub() argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ |
H A D | CFGMST.h | 66 // Union BB1 and BB2 into the same group and return true. in unionGroups() 67 // Returns false if BB1 and BB2 are already in the same group. in unionGroups() 68 bool unionGroups(const BasicBlock *BB1, const BasicBlock *BB2) { in unionGroups() 70 BBInfo *BB2G = findAndCompressGroup(&getBBInfo(BB2)); in unionGroups() 63 unionGroups(const BasicBlock * BB1,const BasicBlock * BB2) unionGroups() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | GVNSink.cpp | 265 const BasicBlock *BB2) { in verifyModelledPHI() argument 266 return BlockOrder.lookup(BB1) < BlockOrder.lookup(BB2); in verifyModelledPHI() 823 auto ComesBefore = [this](const BasicBlock *BB1, const BasicBlock *BB2) { in sinkBB() argument 824 return RPOTOrder.lookup(BB1) < RPOTOrder.lookup(BB2); in sinkBB()
|
H A D | ConstantHoisting.cpp | 343 BasicBlock *BB, *BB1, *BB2; in findConstantInsertionPoint() local 345 BB2 = BBs.pop_back_val(); in findConstantInsertionPoint() 346 BB = DT->findNearestCommonDominator(BB1, BB2); in findConstantInsertionPoint()
|
H A D | LoopInterchange.cpp | 1399 static void swapBBContents(BasicBlock *BB1, BasicBlock *BB2) { in swapBBContents() argument 1408 moveBBContents(BB2, BB1->getTerminator()); in swapBBContents() 1412 I->insertBefore(BB2->getTerminator()); in swapBBContents()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ModuloSchedule.h | 199 MachineBasicBlock *BB2, MachineBasicBlock *KernelBB, 204 MachineBasicBlock *BB2, MachineBasicBlock *KernelBB,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | GenericLoopInfoImpl.h | 650 bool compareVectors(std::vector<T> &BB1, std::vector<T> &BB2) { in compareVectors() argument 652 llvm::sort(BB2); in compareVectors() 653 return BB1 == BB2; in compareVectors()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | asf | 98 >0 guid BFC3CD50-618F-11CF-8BB2-00AA00B4E220 ASF_Audio_Spread
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 1424 static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2, in isSafeToHoistInvoke() argument 1429 Value *BB2V = PN.getIncomingValueForBlock(BB2); in isSafeToHoistInvoke() 1790 auto *BB2 = I2->getParent(); in hoistSuccIdenticalTerminatorToSwitchOrIf() local 1801 if (isa<InvokeInst>(I1) && (!BI || !isSafeToHoistInvoke(BB1, BB2, I1, I2))) in hoistSuccIdenticalTerminatorToSwitchOrIf() 1862 Value *BB2V = PN.getIncomingValueForBlock(BB2); in hoistSuccIdenticalTerminatorToSwitchOrIf() 1882 if (PN.getIncomingBlock(i) == BB1 || PN.getIncomingBlock(i) == BB2) in hoistSuccIdenticalTerminatorToSwitchOrIf() 4005 static StoreInst *findUniqueStoreInBlocks(BasicBlock *BB1, BasicBlock *BB2) { in findUniqueStoreInBlocks() argument 4007 for (auto *BB : {BB1, BB2}) { in findUniqueStoreInBlocks() 7391 BasicBlock *BB2 = BI->getSuccessor(1); in mergeNestedCondBranch() local 7406 if (!IsSimpleSuccessor(BB1, BB1BI) || !IsSimpleSuccessor(BB2, BB2BI)) in mergeNestedCondBranch() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ThreadSafetyCommon.cpp | 963 til::BasicBlock *BB2 = *It ? lookupBlock(*It) : nullptr; in exitCFGBlockBody() local 965 auto *Tm = new (Arena) til::Branch(C, BB1, BB2); in exitCFGBlockBody()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ModuloSchedule.cpp | 370 MachineBasicBlock *NewBB, MachineBasicBlock *BB1, MachineBasicBlock *BB2, in generateExistingPhis() argument 559 NewPhi.addReg(PhiOp2).addMBB(BB2); in generateExistingPhis() 608 MachineBasicBlock *NewBB, MachineBasicBlock *BB1, MachineBasicBlock *BB2, in generatePhis() argument 652 PhiOp2 = getLoopPhiReg(*InstOp2, BB2); in generatePhis() 698 NewPhi.addReg(PhiOp2).addMBB(BB2); in generatePhis()
|
/freebsd/sbin/pfctl/ |
H A D | pf.os | 563 # S32:64:1:56:M*,N,N,S,N,N,?12:.:AMIGA:3.9 BB2 with Miami stack 571 16384:64:1:48:M1560,N,N,S: AMIGAOS:3.9::AMIGAOS 3.9 BB2 MiamiDX
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCMIPeephole.cpp | 1467 MachineBasicBlock *BB2, MachineRegisterInfo *MRI) { in getSrcVReg() argument 1472 if (BB1 && Inst->getOpcode() == PPC::PHI && Inst->getParent() == BB2) { in getSrcVReg()
|
/freebsd/share/ctypedef/ |
H A D | ja_JP.eucJP.src | 2830 <CJK_UNIFIED_IDEOGRAPH-5BB2>;/ 5391 <CJK_UNIFIED_IDEOGRAPH-6BB2>;/ 7716 <CJK_UNIFIED_IDEOGRAPH-7BB2>;/ 12316 <CJK_UNIFIED_IDEOGRAPH-9BB2>;/ 15877 <CJK_UNIFIED_IDEOGRAPH-5BB2>;/ 18438 <CJK_UNIFIED_IDEOGRAPH-6BB2>;/ 20763 <CJK_UNIFIED_IDEOGRAPH-7BB2>;/ 25363 <CJK_UNIFIED_IDEOGRAPH-9BB2>;/ 28982 <CJK_UNIFIED_IDEOGRAPH-5BB2>;/ 31543 <CJK_UNIFIED_IDEOGRAPH-6BB2>;/ [all …]
|
H A D | zh_CN.eucCN.src | 3191 <CJK_UNIFIED_IDEOGRAPH-8BB2>;/ 6576 <CJK_UNIFIED_IDEOGRAPH-8BB2>;/ 10183 <CJK_UNIFIED_IDEOGRAPH-8BB2>;/
|
/freebsd/tools/tools/locale/etc/final-maps/ |
H A D | widths.txt | 4817 <CJK_UNIFIED_IDEOGRAPH-3BB2> 2 8913 <CJK_UNIFIED_IDEOGRAPH-4BB2> 2 12945 <CJK_UNIFIED_IDEOGRAPH-5BB2> 2 17041 <CJK_UNIFIED_IDEOGRAPH-6BB2> 2 21137 <CJK_UNIFIED_IDEOGRAPH-7BB2> 2 25233 <CJK_UNIFIED_IDEOGRAPH-8BB2> 2 29329 <CJK_UNIFIED_IDEOGRAPH-9BB2> 2 47271 <TANGUT_IDEOGRAPH-17BB2> 2 51359 <KHITAN_SMALL_SCRIPT_CHARACTER-18BB2> 2 56845 <CJK_UNIFIED_IDEOGRAPH-20BB2> 2 [all …]
|
H A D | map.SJIS | 5855 <CJK_UNIFIED_IDEOGRAPH-6BB2> \x9f\x72 10429 <CJK_UNIFIED_IDEOGRAPH-25BB2> \xf7\x71 11364 <CJK_UNIFIED_IDEOGRAPH-9BB2> \xfc\x6c
|
H A D | map.GBK | 2367 <CJK_UNIFIED_IDEOGRAPH-5BB2> \x8c\x70 5072 <CJK_UNIFIED_IDEOGRAPH-6BB2> \x9a\x9e 9543 <CJK_UNIFIED_IDEOGRAPH-7BB2> \xb9\x91 10336 <CJK_UNIFIED_IDEOGRAPH-8BB2> \xbd\xb2 20912 <CJK_UNIFIED_IDEOGRAPH-9BB2> \xf5\x76
|
H A D | map.eucJP | 1552 <CJK_UNIFIED_IDEOGRAPH-5BB2> \x8f\xba\xd7 3786 <CJK_UNIFIED_IDEOGRAPH-7BB2> \x8f\xd2\xc1 6080 <CJK_UNIFIED_IDEOGRAPH-9BB2> \x8f\xea\xe7 12060 <CJK_UNIFIED_IDEOGRAPH-6BB2> \xdd\xd3
|
/freebsd/share/colldef/ |
H A D | ja_JP.eucJP.src | 21180 <CJK_UNIFIED_IDEOGRAPH-6BB2> <XF24C>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-6B… 24292 <CJK_UNIFIED_IDEOGRAPH-5BB2> "<XFB74><X9600>";<X05>;"<X05><XC0>";<CJK_UNIF… 26528 <CJK_UNIFIED_IDEOGRAPH-7BB2> "<XFC8A><X2A00>";<X05>;"<X05><XC0>";<CJK_UNIF… 28822 <CJK_UNIFIED_IDEOGRAPH-9BB2> "<XFD96><X1E00>";<X05>;"<X05><XC0>";<CJK_UNIF…
|
/freebsd/share/colldef_unicode/ |
H A D | zh_CN.UTF-8.src | 39960 <CJK_UNIFIED_IDEOGRAPH-5BB2> <X8130>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-5BB2> 41960 <CJK_UNIFIED_IDEOGRAPH-3BB2> <X8DD6>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-3BB2> 44849 <CJK_UNIFIED_IDEOGRAPH-9BB2> <X9FFA>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-9BB2> 47119 <CJK_UNIFIED_IDEOGRAPH-4BB2> <XAE99>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-4BB2> 48048 <CJK_UNIFIED_IDEOGRAPH-6BB2> <XB48E>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-6BB2> 48261 <CJK_UNIFIED_IDEOGRAPH-8BB2> <XB5DB>;<X05>;<X05>;<CJK_UNIFIED_IDEOGRAPH-8BB2> 61030 <CJK_UNIFIED_IDEOGRAPH-7BB2> "<XF9D9><XE600>";<X05>;"<X05><XC0>";<CJK_UNIFIED_IDEOGRAPH-7BB2>
|