Searched refs:It (Results 276 - 300 of 448) sorted by relevance

<<1112131415161718

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp707 auto It = TableMap.find(TableRec); local
708 if (It == TableMap.end())
714 GenericTable &Table = *It->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp1172 /// instruction which produces AArch64::NZCV. It can be truly compare
4022 /// Return true when a code sequence can improve throughput. It
5652 // the case of "sign-return-address"="non-leaf" this is an assumption: It is
5762 // Erase every candidate that violates the restrictions above. (It could be
5833 // It's in range, so we can outline it.
5989 // It's safe to outline from MF.
6100 // It's not, so don't outline it.
6215 // It is, so we have to fix it up.
6325 MachineBasicBlock::iterator It = MBB.begin(); local
6338 It
6418 insertOutlinedCall( Module &M, MachineBasicBlock &MBB, MachineBasicBlock::iterator &It, MachineFunction &MF, const outliner::Candidate &C) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp205 BasicBlock::iterator It(New);
206 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It))
207 ++It;
217 IC.InsertNewInstBefore(GEP, *It);
445 /// This just does the work of combining a load to a new type. It handles
696 // Propagate AA metadata. It'll still be valid on the narrowed load.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp89 iterator It = std::find_if(begin(), end(), local
93 if (It == end())
367 // valid definitions. It provides SSA-like functionality when traversing the
459 /// CFG. It must be called for every assignment or DeclStmt.
1094 const auto It = BMap.find(Cpvd);
1095 if (It == BMap.end())
1127 auto It = BMap.find(Vd);
1129 if (It == BMap.end())
1132 Info = It->second.get();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1035 auto It =
1041 if (It == MappingSymbols.begin())
1043 return (It - 1)->second;
1449 auto It = partition_point(
1454 if (It != SectionAddresses.begin()) {
1455 --It;
1456 TargetSectionSymbols = &AllSymbols[It->second];
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp413 auto It = DIFileCache.find(FileName.data());
414 if (It != DIFileCache.end()) {
416 if (llvm::Metadata *V = It->second)
1545 // property to use here. It may've been intended to model "is non-external
1574 // It doesn't make sense to give a virtual destructor a vtable index,
1694 // It may be associated with the declaration of the type & should be
1758 // FIXME: Inconsistent units for BaseOffset. It is in bytes when
2951 auto It = TypeCache.find(Ty.getAsOpaquePtr()); local
2952 if (It != TypeCache.end()) {
2954 if (llvm::Metadata *V = It
3527 auto It = TypeCache.find(QTy.getAsOpaquePtr()); local
4756 auto It = TypeCache.find(QTy.getAsOpaquePtr()); local
4779 auto It = TypeCache.find(P.first); local
4792 auto It = DeclCache.find(P.first); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp358 auto It = op_begin() + BeginIndex; local
360 It = std::copy(B.input_begin(), B.input_end(), It);
378 return It;
405 auto It = populateBundleOperandInfos(Bundles, Args.size()); local
406 (void)It;
407 assert(It + 1 == op_end() && "Should add up!");
742 auto It = populateBundleOperandInfos(Bundles, Args.size()); local
743 (void)It;
744 assert(It
813 auto It = populateBundleOperandInfos(Bundles, Args.size()); local
[all...]
H A DFunction.cpp555 auto It = partition_point( local
559 const auto &TI = It != Targets.end() && It->Name == Target ? *It : Targets[0];
H A DDebugInfoMetadata.cpp941 for (const auto &It : expr_ops()) {
942 switch (It.getOp()) {
963 for (const auto &It : expr_ops()) {
964 switch (It.getOp()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.cpp209 auto It = DelimiterStyle.find(Delimiter); local
210 if (It == DelimiterStyle.end())
212 return It->second;
218 auto It = EnclosingFunctionStyle.find(EnclosingFunction); local
219 if (It == EnclosingFunctionStyle.end())
221 return It->second;
1214 // It is necessary to start at the previous token for the only implemented
1533 // the raw string at level 0. It is determined by the following rules:
1574 // if it is put on a newline. It is determined by the following rules:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp18 /// WARNING: This file knows about certain library functions. It recognizes them
90 // modules. It's never a single-use value.
138 // TODO: It should be possible to delete
146 // know how to split edges. It should be possible to make the optimizer
1769 auto It = Retains.find(NewRetain); local
1770 assert(It != Retains.end());
1771 const RRInfo &NewRetainRRI = It->second;
1841 auto It = Releases.find(NewRelease); local
1842 assert(It != Releases.end());
1843 const RRInfo &NewReleaseRRI = It
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp183 auto It = llvm::find_if( local
256 if (It == CalleeSummaryList.end())
259 return cast<GlobalValueSummary>(It->get());
1032 // It is illegal for comdats to contain declarations.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp119 auto It = ThrowableInst.find(DeadInst); local
120 if (It != ThrowableInst.end())
121 ThrowableInst[It->first] = false;
628 // It's not SecondBB or (in case of a loop) the second visit of SecondBB.
/freebsd-11-stable/contrib/gcc/doc/include/
H A Dtexinfo.tex55 % It is possible to adapt texinfo.tex for other languages, to some
208 % @| inserts a changebar to the left of the current line. It should
492 % Define the framework for environments in texinfo.tex. It's used like this:
497 % It's the responsibility of \envdef to insert \begingroup before the
979 % It seems @exampleindent asis isn't necessary, but
2081 % It is available from http://www.ctan.org/tex-archive/fonts/eurosym.
2190 % It is important to do the page break before ending the group,
2244 % It can also be used inside @quotation.
2391 % It generates no output of its own.
2597 % Only one token in the argument. It coul
[all...]
/freebsd-11-stable/contrib/groff/doc/
H A Dtexinfo.tex55 % It is possible to adapt texinfo.tex for other languages, to some
200 % @| inserts a changebar to the left of the current line. It should
484 % Define the framework for environments in texinfo.tex. It's used like this:
489 % It's the responsibility of \envdef to insert \begingroup before the
956 % It seems @exampleindent asis isn't necessary, but
1980 % It is available from http://www.ctan.org/tex-archive/fonts/eurosym.
2089 % It is important to do the page break before ending the group,
2143 % It can also be used inside @quotation.
2290 % It generates no output of its own.
2496 % Only one token in the argument. It coul
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp150 auto It = llvm::sys::path::rbegin(PathEntry); local
153 if (It == End)
155 if (!It->startswith(Prefix))
157 ++It;
1125 // It is not necessary to link against Windows SDK 7.x when targeting ARM.
1245 // Honor %INCLUDE%. It should know essential search paths with vcvarsall.bat.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp145 /// contexts propagated). It checks callsite-specific information. Return a
260 auto It = SROAArgValues.find(V); local
261 if (It == SROAArgValues.end() ||
262 EnabledSROAArgValues.count(It->second) == 0)
264 return It->second;
590 // FIXME: It would be nice to remove all such bonuses. At least it would be
1251 // the cost of inlining it drops dramatically. It may seem odd to update
1666 // inlining those. It will prevent inlining in cases where the optimization
1692 // FIXME: It's not clear that a single instruction is an accurate model for
1698 // FIXME: It'
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp1273 for (auto It = DNEParts.rbegin(); It != DNEParts.rend(); ++It)
1274 result /= *It;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.h263 /// It may return 0 if it is unsafe to commute the operands.
368 /// specified opcode. It returns zero if the specified unfolding is not
377 /// to determine if two loads are loading from the same base address. It
379 /// only differences between the two addresses are the offset. It also returns
389 /// from the common base address. It returns true if it decides it's desirable
515 MachineBasicBlock::iterator &It, MachineFunction &MF,
/freebsd-11-stable/contrib/gcc/config/i386/
H A Dsol2-c1.asm38 ! Processor Supplement. It has been constructed from information obtained
H A Dsol2-gc1.asm38 ! Processor Supplement. It has been constructed from information obtained
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Ddarwin-world.asm70 (the stack frame size) as parameters. It returns VRsave in R0 if
/freebsd-11-stable/contrib/top/
H A DConfigure176 Please supply the name of the appropriate command. It need not be a
278 echo "It looks like you have a passwd file that can be accessed at random."
281 echo "It looks like you have conventional passwd file access. Top can take"
371 It looks like this system is running Solaris 2.6 or greater. If this
373 sys. It does not need to be installed set-uid to root.
397 echo "It looks like only group $t_group can read the memory devices."
400 echo "It looks like only root can read the memory devices."
404 echo "It looks like anybody can read the memory devices."
407 echo "It looks like there are no memory device special files."
/freebsd-11-stable/crypto/openssh/contrib/suse/
H A Dopenssh.spec52 executing commands in a remote machine. It is intended to replace
66 executing commands in a remote machine. It is intended to replace
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparccpuid.S43 ! not cause illegal_instruction trap. It therefore can be used
262 ! It would be possible to detect specifically US-T1 by instrumenting

Completed in 312 milliseconds

<<1112131415161718