Searched refs:It (Results 151 - 175 of 448) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.cpp275 const auto It = std::max_element(
278 unsigned IID = std::distance(Nodes.begin(), It);
436 auto It = find_if(Vec, [To, Dep](DependencyEdge &DE) {
440 if (It != Vec.end()) {
441 It->Dep.Cost += Dep.Cost;
442 It->Frequency++;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h406 reverse_iterator(llvm::DWARFDie::iterator It) argument
407 : Die(It.Die), AtEnd(!It.Die.getPreviousSibling()) {
H A DDWARFUnit.h472 /// It is illegal to call this method with a DIE that hasn't be
499 auto It =
503 if (It != DieArray.end() && It->getOffset() == Offset)
504 return DWARFDie(this, &*It);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.h98 auto It = vars.find(Name); local
99 if (It != vars.end())
100 return It->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp72 auto It = partition_point(DS, [=](const ProfileSummaryEntry &Entry) { local
77 if (It == DS.end())
79 return *It;
H A DDomTreeUpdater.cpp459 for (auto It = begin, ItEnd = end; It != ItEnd; ++It) {
460 auto U = *It;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCSEInfo.cpp264 LLVM_DEBUG(for (auto &It
266 dbgs() << "CSEInfo::CSE Hit for Opc " << It.first << " : " << It.second
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp348 for (auto &It : reverse(ConvertedInsts)) {
349 Instruction *I = It.first;
353 std::tie(V, Mask, Worthy) = It.second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonGenMux.cpp112 MuxInfo(MachineBasicBlock::iterator It, unsigned DR, unsigned PR, argument
115 : At(It), DefR(DR), PredR(PR), SrcT(TOp), SrcF(FOp), Def1(&D1),
261 auto It = CM.insert(std::make_pair(DR, CondsetInfo())); local
262 F = It.first;
367 // It won't detect (as a kill) a case like this
H A DHexagonConstExtenders.cpp194 Loc(MachineBasicBlock *B, MachineBasicBlock::iterator It) argument
195 : Block(B), At(It) {
196 if (B->end() == It) {
199 assert(It->getParent() == B);
200 Pos = std::distance(B->begin(), It);
1039 // extender. It may be possible for MI to be tweaked to work for a register
1095 // The instruction uses the extender directly. It will be replaced with
1376 for (auto It = CandSet.begin(), Et = CandSet.end(); It != Et; ) {
1377 auto &&V = Tree.nodesWith(*It);
1512 MachineBasicBlock::iterator It; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16ISelLowering.cpp519 MachineFunction::iterator It = ++BB->getIterator(); local
531 F->insert(It, copy0MBB);
532 F->insert(It, sinkMBB);
582 MachineFunction::iterator It = ++BB->getIterator(); local
594 F->insert(It, copy0MBB);
595 F->insert(It, sinkMBB);
648 MachineFunction::iterator It = ++BB->getIterator(); local
660 F->insert(It, copy0MBB);
661 F->insert(It, sinkMBB);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp592 auto It = CXXParent->captures_begin() + Field->getFieldIndex(); local
594 if (It->capturesVariable())
596 It->getCapturedVar()->getName())
599 if (It->capturesThis())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp177 for (BitMaskClassIterator It(RC->getSubClassMask(), *this); It.isValid();
178 ++It) {
179 const TargetRegisterClass *SubRC = getRegClass(It.getID());
292 // It is very common that one register class is a sub-register of the other.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp492 BasicBlock::iterator llvm::skipDebugIntrinsics(BasicBlock::iterator It) { argument
493 while (isa<DbgInfoIntrinsic>(It))
494 ++It;
495 return It;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOMemOPSizeOpt.cpp344 BasicBlock::iterator It(*MI);
345 ++It;
346 assert(It != DefaultBB->end());
347 BasicBlock *MergeBB = SplitBlock(DefaultBB, &(*It), DT);
/freebsd-11-stable/contrib/bmake/mk/
H A Dtarget-flags.mk31 # It is important that target-flags.mk is included after other
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dirix-crti.asm12 The SGI linker instead accepts several -init options. It will set DT_INIT
/freebsd-11-stable/contrib/byacc/package/
H A Dbyacc.spec19 routine written in the C programming language. It has a public domain
H A Dmingw-byacc.spec19 routine written in the C programming language. It has a public domain
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_arm.S13 @ It preserves all registers except r0, r12(ip), r14(lr) and r15(pc)
74 @ It preserves all registers except r0, r12(ip), r14(lr) and r15(pc)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumCXXABI.cpp14 // It also supports the closely-related ARM C++ ABI, documented at:
67 Iterator(BindingArray::const_iterator It) : iterator_adaptor_base(It) {} argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp193 for (InputIter It = Begin; It != End; ++It) {
194 if (It != Begin)
197 StringRef Name = getModuleNameFromComponent(*It);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp72 const auto It = VecPatterns.find(P); local
73 if (It == VecPatterns.end()) {
78 return It->second;
255 for (const auto &It : VecPatterns) {
256 OS << "\"" << It.first << "\",\n";
269 for (const auto &It : VecIncludeStrings) {
270 OS << "\"" << It << "\",\n"; local
/freebsd-11-stable/contrib/sendmail/contrib/
H A Dexpn.pl458 # This routine is used only within &giveup. It checks to
572 # lists and vrfy against users. It doesn't appear to be
1252 It will first look up the addresses you provide on the command line.
1254 connect to the other systems and expand again. It will keep
1289 It is not necessary to make it verbose to see what it is
1325 It is not possible to verify addresses that are served
1333 It is assumed that you are running domain names and that
1338 will not be able to verify many addresses. It will also pause
1351 that did about the same thing. It has since suffered bit rot
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dpat_trie_.hpp39 // purpose. It is provided "as is" without express or implied
342 template<typename It>
344 copy_from_range(It, It);

Completed in 604 milliseconds

1234567891011>>