| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| 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()
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | Dominators.cpp | 361 BasicBlock *BB2 = I2->getParent(); in findNearestCommonDominator() local 362 if (BB1 == BB2) in findNearestCommonDominator() 364 if (!isReachableFromEntry(BB2)) in findNearestCommonDominator() 368 BasicBlock *DomBB = findNearestCommonDominator(BB1, BB2); in findNearestCommonDominator() 371 if (BB2 == DomBB) in findNearestCommonDominator()
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/ |
| D | loc_ta.t | 72 ok($objTa->lt("\x{BB0}$t", "\x{BB2}$v")); 73 ok($objTa->lt("\x{BB2}$v$t", "\x{BB2}")); 74 ok($objTa->lt("\x{BB2}$t", "\x{BB5}$v"));
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
| D | SampleProfileLoaderBaseImpl.h | 438 for (const auto *BB2 : Descendants) { 439 bool IsDomParent = DomTree->dominates(BB2, BB1); 440 bool IsInSameLoop = LI->getLoopFor(BB1) == LI->getLoopFor(BB2); 441 if (BB1 != BB2 && IsDomParent && IsInSameLoop) { 442 EquivalenceClass[BB2] = EC; 444 if (VisitedBlocks.count(BB2)) { 456 Weight = std::max(Weight, BlockWeights[BB2]);
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/ |
| D | NamedSequences.txt | 226 TAMIL CONSONANT L; 0BB2 0BCD 383 TAMIL SYLLABLE LAA; 0BB2 0BBE 384 TAMIL SYLLABLE LI; 0BB2 0BBF 385 TAMIL SYLLABLE LII; 0BB2 0BC0 386 TAMIL SYLLABLE LU; 0BB2 0BC1 387 TAMIL SYLLABLE LUU; 0BB2 0BC2 388 TAMIL SYLLABLE LE; 0BB2 0BC6 389 TAMIL SYLLABLE LEE; 0BB2 0BC7 390 TAMIL SYLLABLE LAI; 0BB2 0BC8 391 TAMIL SYLLABLE LO; 0BB2 0BCA [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Mips/ |
| D | MipsMCInstLower.h | 43 MCOperand createSub(MachineBasicBlock *BB1, MachineBasicBlock *BB2,
|
| D | MipsMCInstLower.cpp | 205 MachineBasicBlock *BB2, in createSub() argument 208 const MCSymbolRefExpr *Sym2 = MCSymbolRefExpr::create(BB2->getSymbol(), *Ctx); in createSub()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| D | CFGMST.h | 63 bool unionGroups(const BasicBlock *BB1, const BasicBlock *BB2) { in unionGroups() argument 65 BBInfo *BB2G = findAndCompressGroup(&getBBInfo(BB2)); in unionGroups()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | ModuloSchedule.h | 198 MachineBasicBlock *BB2, MachineBasicBlock *KernelBB, 203 MachineBasicBlock *BB2, MachineBasicBlock *KernelBB,
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/ |
| D | LoopInfoImpl.h | 642 bool compareVectors(std::vector<T> &BB1, std::vector<T> &BB2) { in compareVectors() argument 644 llvm::sort(BB2); in compareVectors() 645 return BB1 == BB2; in compareVectors()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| D | ConstantHoisting.cpp | 341 BasicBlock *BB, *BB1, *BB2; in findConstantInsertionPoint() local 343 BB2 = BBs.pop_back_val(); in findConstantInsertionPoint() 344 BB = DT->findNearestCommonDominator(BB1, BB2); in findConstantInsertionPoint()
|
| D | LoopInterchange.cpp | 1406 static void swapBBContents(BasicBlock *BB1, BasicBlock *BB2) { in swapBBContents() argument 1415 moveBBContents(BB2, BB1->getTerminator()); in swapBBContents() 1419 I->insertBefore(BB2->getTerminator()); in swapBBContents()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | ModuloSchedule.cpp | 366 MachineBasicBlock *NewBB, MachineBasicBlock *BB1, MachineBasicBlock *BB2, in generateExistingPhis() argument 555 NewPhi.addReg(PhiOp2).addMBB(BB2); in generateExistingPhis() 604 MachineBasicBlock *NewBB, MachineBasicBlock *BB1, MachineBasicBlock *BB2, in generatePhis() argument 648 PhiOp2 = getLoopPhiReg(*InstOp2, BB2); in generatePhis() 694 NewPhi.addReg(PhiOp2).addMBB(BB2); in generatePhis()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | SimplifyCFG.cpp | 1419 static bool isSafeToHoistInvoke(BasicBlock *BB1, BasicBlock *BB2, in isSafeToHoistInvoke() argument 1424 Value *BB2V = PN.getIncomingValueForBlock(BB2); in isSafeToHoistInvoke() 1508 BasicBlock *BB2 = BI->getSuccessor(1); // The false destination in HoistThenElseCodeToIf() local 1513 if (BB1->hasAddressTaken() || BB2->hasAddressTaken()) in HoistThenElseCodeToIf() 1517 BasicBlock::iterator BB2_Itr = BB2->begin(); in HoistThenElseCodeToIf() 1612 BIParent->splice(BI->getIterator(), BB2, I2->getIterator()); in HoistThenElseCodeToIf() 1672 if (isa<InvokeInst>(I1) && !isSafeToHoistInvoke(BB1, BB2, I1, I2)) in HoistThenElseCodeToIf() 1682 Value *BB2V = PN.getIncomingValueForBlock(BB2); in HoistThenElseCodeToIf() 1720 Value *BB2V = PN.getIncomingValueForBlock(BB2); in HoistThenElseCodeToIf() 1740 if (PN.getIncomingBlock(i) == BB1 || PN.getIncomingBlock(i) == BB2) in HoistThenElseCodeToIf() [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Analysis/ |
| D | ThreadSafetyCommon.cpp | 955 til::BasicBlock *BB2 = *It ? lookupBlock(*It) : nullptr; in exitCFGBlockBody() local 957 auto *Tm = new (Arena) til::Branch(C, BB1, BB2); in exitCFGBlockBody()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| D | PPCMIPeephole.cpp | 1207 MachineBasicBlock *BB2, MachineRegisterInfo *MRI) { in getSrcVReg() argument 1212 if (BB1 && Inst->getOpcode() == PPC::PHI && Inst->getParent() == BB2) { in getSrcVReg()
|
| /openbsd/src/etc/ |
| D | pf.os | 555 # S32:64:1:56:M*,N,N,S,N,N,?12:.:AMIGA:3.9 BB2 with Miami stack 563 16384:64:1:48:M1560,N,N,S: AMIGAOS:3.9::AMIGAOS 3.9 BB2 MiamiDX
|
| /openbsd/src/gnu/llvm/llvm/docs/ |
| D | HowToUpdateDebugInfo.rst | 70 in ``BB1`` is moved before ``I2`` in ``BB2``, the source location of ``I1``
|
| D | MemorySSA.rst | 105 In the same manner, ``a = MemoryPhi({BB1,b},{BB2,c})`` means that
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/CJK/ |
| D | Pinyin.pm | 92 5B9D 6009 9971 4FDD 9E28 5BB2 73E4 5821 5822 5AAC 657 592B 752B 5490 88B1 915C 5085 6928 8984 79A3 9BB2 982 9CD2 791B 89B8 9D73 7038 9427 6AFC 6BB2 9DBC 97C0 1003 8BB2 5956 6868 508B 848B 5968 596C 8523 69F3 734E 2405 8D7B 7B45 5C1F 5C20 641F 7992 8DE3 9291 7BB2 96AA
|
| D | Zhuyin.pm | 72 5B9D 6009 9971 4FDD 9E28 5BB2 73E4 5821 5822 5AAC 475 592B 752B 5490 915C 5085 6928 88B1 8984 79A3 9BB2 1563 6BB2 9DBC 97C0 9C39 56CF 8643 946F 97C9 1596 8BB2 5956 6868 508B 5968 848B 596C 69F3 734E 8199 1891 9291 7BB2 5DAE 736B 96AA 736E 934C 71F9 85D3 9855
|
| D | Stroke.pm | 165 89C2 8BB2 8BB3 8BB4 8BB5 8BB6 8BB7 8BB8 8BB9 8BBA 620 5BB1 5BB2 5BB3 5BB4 5BB5 5BB6 5BB7 5BB8 1682 7BB0 7BB1 7BB2 7BB3 7BB4 7BB5 7BB6 7BB7 7BB9 7BBA 2049 9BAF 9BB0 9BB1 9BB2 9BB3 9BB4 9BBA 9BCE 9CBC 9CBD 2313 6BB2 7043 7044 7045 7046 7047 7048 7049 704A 704B
|
| D | JISX0208.pm | 452 6B98 6B95 6B9E 6BA4 6BAA 6BAB 6BAF 6BB2 6BB1 6BB3
|
| D | GB2312.pm | 152 50F5 59DC 5C06 6D46 6C5F 7586 848B 6868 5956 8BB2
|
| D | Korean.pm | 699 5261 66B9 6BB2 7E96 87FE 8D0D 9583 965D 5B45 61B8
|