| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Passes/ |
| H A D | StandardInstrumentations.h | 142 static void printDiff(raw_ostream &out, const CFG &Before, 211 const IRUnitT &Before, const IRUnitT &After, 220 virtual bool same(const IRUnitT &Before, const IRUnitT &After) = 0; 271 const std::string &Before, const std::string &After, 274 bool same(const std::string &Before, const std::string &After) override; 326 report(const OrderedChangedData &Before, const OrderedChangedData &After, 346 ChangedIRComparer(raw_ostream &OS, const ChangedIRData &Before, in ChangedIRComparer() argument 348 : Before(Before), After(After), Out(OS), UseColour(ColourMode) {} in ChangedIRComparer() 367 bool InModule, const ChangedFuncData &Before, 370 const ChangedIRData &Before; variable [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/sh/ |
| H A D | loop.s | 15 add #1, r1 ! Before loop 36 add #1, r1 ! Before loop 58 add #1, r1 ! Before loop 80 add #1, r1 ! Before loop 107 add #1, r1 ! Before loop 135 add #1, r1 ! Before loop 170 add #1, r1 ! Before loop 191 add #1, r1 ! Before loop 213 add #1, r1 ! Before loop 236 add #1, r1 ! Before loop [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMBlockPlacement.cpp | 39 void moveBasicBlock(MachineBasicBlock *BB, MachineBasicBlock *Before); 179 MachineBasicBlock *Before) { in moveBasicBlock() argument 181 << Before->getName() << "\n"); in moveBasicBlock() 186 MachineBasicBlock *BeforePrev = Before->getPrevNode(); in moveBasicBlock() 190 BB->moveBefore(Before); in moveBasicBlock() 219 if (BeforePrev->isSuccessor(Before)) in moveBasicBlock() 220 FixFallthrough(BeforePrev, Before); in moveBasicBlock()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| H A D | StandardInstrumentations.cpp | 128 std::string doSystemDiff(StringRef Before, StringRef After, in doSystemDiff() argument 131 StringRef SR[2]{Before, After}; in doSystemDiff() 439 IRUnitT &Before = BeforeStack.back(); in handleIRAfterPass() local 445 if (same(Before, After)) { in handleIRAfterPass() 449 handleAfter(PassID, Name, Before, After, IR); in handleIRAfterPass() 547 const std::string &Before, in handleAfter() argument 552 << Before; in handleAfter() 570 const OrderedChangedData &Before, const OrderedChangedData &After, in report() argument 572 const auto &BFD = Before.getData(); in report() 574 std::vector<std::string>::const_iterator BI = Before.getOrder().begin(); in report() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | SIWholeQuadMode.cpp | 198 MachineBasicBlock::iterator Before); 203 void toExact(MachineBasicBlock &MBB, MachineBasicBlock::iterator Before, 205 void toWQM(MachineBasicBlock &MBB, MachineBasicBlock::iterator Before, 207 void toStrictMode(MachineBasicBlock &MBB, MachineBasicBlock::iterator Before, 210 MachineBasicBlock::iterator Before, Register SavedOrig, 717 MachineBasicBlock::iterator Before) { in saveSCC() argument 721 BuildMI(MBB, Before, DebugLoc(), TII->get(AMDGPU::COPY), SaveReg) in saveSCC() 724 BuildMI(MBB, Before, DebugLoc(), TII->get(AMDGPU::COPY), AMDGPU::SCC) in saveSCC() 1142 MachineBasicBlock::iterator Before, in toExact() argument 1147 MI = BuildMI(MBB, Before, DebugLoc(), TII->get(AndSaveExecOpc), SaveWQM) in toExact() [all …]
|
| /netbsd-src/external/mpl/mozilla-certdata/dist/ |
| H A D | certdata.txt | 80 # Not Valid Before: Tue Sep 01 12:00:00 1998 176 # Not Valid Before: Tue Sep 01 12:00:00 1998 214 # Not Valid Before: Fri Dec 24 17:50:51 1999 333 # Not Valid Before: Fri Dec 24 17:50:51 1999 377 # Not Valid Before: Fri May 12 18:46:00 2000 473 # Not Valid Before: Fri May 12 18:46:00 2000 511 # Not Valid Before: Mon Nov 27 20:23:42 2006 637 # Not Valid Before: Mon Nov 27 20:23:42 2006 681 # Not Valid Before: Tue Jun 11 10:46:39 2002 766 # Not Valid Before [all...] |
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 99 AccumBitVector Before; member 159 return minBeforeBytes() + TM->Bits->Before.Bytes.size(); in allocatedBeforeBytes() 171 TM->Bits->Before.setBit(Pos - 8 * minBeforeBytes(), RetVal); in setBeforeBit() 186 TM->Bits->Before.setLE(Pos - 8 * minBeforeBytes(), RetVal, Size); in setBeforeBytes() 188 TM->Bits->Before.setBE(Pos - 8 * minBeforeBytes(), RetVal, Size); in setBeforeBytes()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | RegBankSelect.cpp | 766 bool Before = !MO.isDef(); in RepairingPlacement() local 770 addInsertPoint(MI, Before); in RepairingPlacement() 780 if (!Before) { in RepairingPlacement() 814 if (Before) { in RepairingPlacement() 848 bool Before) { in addInsertPoint() argument 849 addInsertPoint(*new InstrInsertPoint(MI, Before)); in addInsertPoint() 870 bool Before) in InstrInsertPoint() argument 871 : InsertPoint(), Instr(Instr), Before(Before) { in InstrInsertPoint() 874 assert((!Before || !Instr.isPHI()) && in InstrInsertPoint() 876 assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) && in InstrInsertPoint() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | BlockFrequency.cpp | 41 uint64_t Before = Freq.Frequency; in operator +=() local 45 if (Frequency < Before) in operator +=()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | RegBankSelect.h | 210 bool Before; variable 215 if (Before) in getPointImpl() 227 InstrInsertPoint(MachineInstr &Instr, bool Before = true); 373 void addInsertPoint(MachineInstr &MI, bool Before);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | PlaceSafepoints.cpp | 641 BasicBlock::iterator Before(PollCall), After(PollCall); in INITIALIZE_PASS_DEPENDENCY() local 643 if (Before == OrigBB->begin()) in INITIALIZE_PASS_DEPENDENCY() 646 Before--; in INITIALIZE_PASS_DEPENDENCY() 665 BasicBlock::iterator Start = IsBegin ? OrigBB->begin() : std::next(Before); in INITIALIZE_PASS_DEPENDENCY()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Globals.cpp | 354 const Twine &Name, GlobalVariable *Before, in GlobalVariable() argument 375 if (Before) in GlobalVariable() 376 Before->getParent()->getGlobalList().insert(Before->getIterator(), this); in GlobalVariable()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| H A D | LanaiMemAluCombiner.cpp | 80 const MbbIterator &AluInstr, bool Before); 239 bool Before) { in insertMergedInstruction() argument 274 if (Before || !isZeroOperand(MemOffset)) in insertMergedInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | BasicBlock.h | 418 bool Before = false); 420 bool Before = false) { 421 return splitBasicBlock(I->getIterator(), BBName, Before);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | RegisterScavenging.cpp | 448 MachineBasicBlock::iterator Before, in spill() argument 452 const MachineFunction &MF = *Before->getMF(); in spill() 494 if (!TRI->saveScavengerRegister(*MBB, Before, UseMI, &RC, Reg)) { in spill() 503 TII->storeRegToStackSlot(*MBB, Before, Reg, true, Scavenged[SI].FrameIndex, in spill() 505 MachineBasicBlock::iterator II = std::prev(Before); in spill()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| H A D | llvm.ml | 361 | Before of 'b Constructor 775 | Before bb -> 786 | Before bb -> fold_left_global_range f (f init bb) (global_succ bb) e 842 | Before fn -> 853 | Before fn -> fold_left_function_range f (f init fn) (function_succ fn) e 909 | Before p -> 920 | Before p -> fold_left_param_range f (f init p) (param_succ p) e 977 | Before bb -> 988 | Before bb -> fold_left_block_range f (f init bb) (block_succ bb) e 1033 | Before i -> [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/csky/ |
| H A D | csky_cores.def | 21 /* Before using #include to read this file, define a macro: 44 /* Before using #include to read this file, define a macro: 187 /* Before using #include to read this file, define a macro:
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/Mock/ |
| H A D | trusted.crt | 3 Not Before: Jan 14 22:29:05 2016 GMT
|
| H A D | server.crt | 3 Not Before: Jan 14 22:29:46 2016 GMT
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/csky/ |
| H A D | csky_cores.def | 21 /* Before using #include to read this file, define a macro: 46 /* Before using #include to read this file, define a macro: 195 /* Before using #include to read this file, define a macro:
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFCORE.h | 71 Instruction *Before);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCopyToCombine.cpp | 106 void emitCombineRR(MachineBasicBlock::iterator &Before, unsigned DestReg, 109 void emitCombineRI(MachineBasicBlock::iterator &Before, unsigned DestReg, 112 void emitCombineIR(MachineBasicBlock::iterator &Before, unsigned DestReg, 115 void emitCombineII(MachineBasicBlock::iterator &Before, unsigned DestReg, 118 void emitConst64(MachineBasicBlock::iterator &Before, unsigned DestReg,
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/ |
| H A D | EVP_PKEY-SM2.pod | 45 Before computing an B<SM2> signature, an B<EVP_PKEY_CTX> needs to be created, 50 Before calling the EVP_DigestSignInit() or EVP_DigestVerifyInit() functions,
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-ycp/ |
| H A D | INSTALL | 3 Before "make install", you need to make the locale directory writable:
|
| /netbsd-src/external/bsd/openldap/dist/libraries/liblunicode/utbm/ |
| H A D | README | 65 Before using UTBM 67 Before UTBM is used, some functions need to be created. The "utbmstub.c" file
|