Home
last modified time | relevance | path

Searched refs:Hints (Results 1 – 25 of 74) sorted by relevance

123

/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DAllocationOrder.cpp35 SmallVector<MCPhysReg, 16> Hints; in create() local
37 TRI->getRegAllocationHints(VirtReg, Order, Hints, MF, &VRM, Matrix); in create()
40 if (!Hints.empty()) { in create()
42 for (unsigned I = 0, E = Hints.size(); I != E; ++I) in create()
43 dbgs() << ' ' << printReg(Hints[I], TRI); in create()
48 for (unsigned I = 0, E = Hints.size(); I != E; ++I) in create()
49 assert(is_contained(Order, Hints[I]) && in create()
52 return AllocationOrder(std::move(Hints), Order, HardHints); in create()
H A DAllocationOrder.h31 const SmallVector<MCPhysReg, 16> Hints; variable
57 return AO.Hints.end()[Pos];
90 AllocationOrder(SmallVector<MCPhysReg, 16> &&Hints, ArrayRef<MCPhysReg> Order, in AllocationOrder() argument
92 : Hints(std::move(Hints)), Order(Order), in AllocationOrder()
96 return Iterator(*this, -(static_cast<int>(Hints.size()))); in begin()
118 return Reg.isPhysical() && is_contained(Hints, Reg.id()); in isHint()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaFixItUtils.cpp108 Hints.push_back(FixItHint::CreateRemoval( in tryToFixConversion()
112 Hints.push_back(FixItHint::CreateInsertion(Begin, "*(")); in tryToFixConversion()
113 Hints.push_back(FixItHint::CreateInsertion(End, ")")); in tryToFixConversion()
115 Hints.push_back(FixItHint::CreateInsertion(Begin, "*")); in tryToFixConversion()
142 Hints.push_back(FixItHint::CreateRemoval( in tryToFixConversion()
146 Hints.push_back(FixItHint::CreateInsertion(Begin, "&(")); in tryToFixConversion()
147 Hints.push_back(FixItHint::CreateInsertion(End, ")")); in tryToFixConversion()
149 Hints.push_back(FixItHint::CreateInsertion(Begin, "&")); in tryToFixConversion()
H A DDeclSpec.cpp1135 FixItHint Hints[NumLocs]; in Finish() local
1143 Hints[I] = FixItHint::CreateRemoval(ExtraLocs[I]); in Finish()
1152 << Hints[0] << Hints[1] << Hints[2] << Hints[3] in Finish()
1153 << Hints[4] << Hints[5] << Hints[6] << Hints[7]; in Finish()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/llvm-jitlink-executor/
H A Dllvm-jitlink-executor.cpp58 addrinfo Hints{}; in openListener()
59 Hints.ai_family = AF_INET; in openListener()
60 Hints.ai_socktype = SOCK_STREAM; in openListener()
61 Hints.ai_flags = AI_PASSIVE; in openListener()
64 if (int EC = getaddrinfo(nullptr, PortStr.c_str(), &Hints, &AI)) { in openListener()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZRegisterInfo.cpp58 SmallVectorImpl<MCPhysReg> &Hints, in addHints() argument
62 CopyHints.insert(Hints.begin(), Hints.end()); in addHints()
63 Hints.clear(); in addHints()
67 Hints.push_back(Reg); in addHints()
71 Hints.push_back(Reg); in addHints()
76 SmallVectorImpl<MCPhysReg> &Hints, const MachineFunction &MF, in getRegAllocationHints() argument
83 VirtReg, Order, Hints, MF, VRM, Matrix); in getRegAllocationHints()
119 if (!MRI->isReserved(PhysReg) && !is_contained(Hints, PhysReg)) in getRegAllocationHints()
129 Hints.push_back(OrderReg); in getRegAllocationHints()
157 addHints(Order, Hints, RC, MRI); in getRegAllocationHints()
[all …]
H A DSystemZRegisterInfo.h137 SmallVectorImpl<MCPhysReg> &Hints,
/netbsd/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DTextDiagnostic.h87 ArrayRef<FixItHint> Hints) override { in emitCodeContext() argument
88 emitSnippetAndCaret(Loc, Level, Ranges, Hints); in emitCodeContext()
104 ArrayRef<FixItHint> Hints);
108 void emitParseableFixits(ArrayRef<FixItHint> Hints, const SourceManager &SM);
H A DDiagnosticRenderer.h89 ArrayRef<FixItHint> Hints) = 0;
111 ArrayRef<CharSourceRange> Ranges, ArrayRef<FixItHint> Hints);
117 ArrayRef<FixItHint> Hints);
/netbsd/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dmap.bench.cpp55 Hints; member
58 enum class Shuffle { None, Keys, Hints }; enumerator
78 auto& hints = R.Hints.emplace_back(); in makeTestingSets()
82 if (shuffle == Shuffle::Hints) in makeTestingSets()
287 auto H = Data.Hints[I].begin(); in run()
318 auto Third = *(Data.Hints[I].begin() + 2); in run()
406 auto H = Data.Hints[I].begin(); in run()
437 auto Third = *(Data.Hints[I].begin() + 2); in run()
526 auto H = Data.Hints[I].begin(); in run()
646 auto H = Data.Hints[I].begin(); in run()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
H A DRemoteJITUtils.cpp270 addrinfo Hints{}; in connectTCPSocketImpl() local
271 Hints.ai_family = AF_INET; in connectTCPSocketImpl()
272 Hints.ai_socktype = SOCK_STREAM; in connectTCPSocketImpl()
273 Hints.ai_flags = AI_NUMERICSERV; in connectTCPSocketImpl()
275 if (int EC = getaddrinfo(Host.c_str(), PortStr.c_str(), &Hints, &AI)) in connectTCPSocketImpl()
/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/
H A DTextDiagnostic.cpp1061 ArrayRef<FixItHint> Hints, in buildFixItInsertionLine() argument
1065 if (Hints.empty() || !DiagOpts->ShowFixits) in buildFixItInsertionLine()
1069 for (ArrayRef<FixItHint>::iterator I = Hints.begin(), E = Hints.end(); in buildFixItInsertionLine()
1131 SmallVectorImpl<CharSourceRange> &Ranges, ArrayRef<FixItHint> Hints) { in emitSnippetAndCaret() argument
1143 if (Loc == LastLoc && Ranges.empty() && Hints.empty() && in emitSnippetAndCaret()
1227 FID, LineNo, sourceColMap, Hints, SM, DiagOpts.get()); in emitSnippetAndCaret()
1273 emitParseableFixits(Hints, SM); in emitSnippetAndCaret()
1312 void TextDiagnostic::emitParseableFixits(ArrayRef<FixItHint> Hints, in emitParseableFixits() argument
1319 for (ArrayRef<FixItHint>::iterator I = Hints.begin(), E = Hints.end(); in emitParseableFixits()
1327 for (ArrayRef<FixItHint>::iterator I = Hints.begin(), E = Hints.end(); in emitParseableFixits()
H A DSerializedDiagnosticPrinter.cpp81 ArrayRef<FixItHint> Hints) override;
197 ArrayRef<FixItHint> Hints,
701 ArrayRef<FixItHint> Hints, in EmitCodeContext() argument
714 for (ArrayRef<FixItHint>::iterator I = Hints.begin(), E = Hints.end(); in EmitCodeContext()
731 ArrayRef<FixItHint> Hints) { in emitCodeContext() argument
732 Writer.EmitCodeContext(Ranges, Hints, Loc.getManager()); in emitCodeContext()
H A DDiagnosticRenderer.cpp427 ArrayRef<FixItHint> Hints) { in emitCaret() argument
430 emitCodeContext(Loc, Level, SpellingRanges, Hints); in emitCaret()
535 ArrayRef<FixItHint> Hints) { in emitMacroExpansions() argument
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Vectorize/
H A DLoopVectorizationLegality.h222 bool canVectorizeFPMath(const LoopVectorizeHints &Hints) const { in canVectorizeFPMath() argument
223 return !ExactFPMathInst || Hints.allowReordering(); in canVectorizeFPMath()
258 GetLAA(GetLAA), ORE(ORE), Requirements(R), Hints(H), DB(DB), AC(AC), in LoopVectorizationLegality()
536 LoopVectorizeHints *Hints; variable
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSemaFixItUtils.h41 std::vector<FixItHint> Hints; member
80 Hints.clear(); in clear()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h260 const LoopVectorizeHints &Hints; variable
284 const LoopVectorizeHints &Hints, in LoopVectorizationPlanner() argument
288 PSE(PSE), Hints(Hints), Requirements(Requirements), ORE(ORE) {} in LoopVectorizationPlanner()
H A DLoopVectorize.cpp1232 Hints(Hints), InterleaveInfo(IAI) {} in LoopVectorizationCostModel()
1875 const LoopVectorizeHints *Hints; member in llvm::LoopVectorizationCostModel
2125 if (Hints.getInterleave() > 1) { in isExplicitVecOuterLoop()
2129 Hints.emitRemarkWithHints(); in isExplicitVecOuterLoop()
3604 Hints.setAlreadyVectorized(); in completeLoopSkeleton()
9643 switch (Hints.getPredicate()) { in getScalarEpilogueLowering()
9780 Hints.setAlreadyVectorized(); in processLoopInVPlanNativePath()
9885 Hints.emitRemarkWithHints(); in processLoop()
9929 Hints.emitRemarkWithHints(); in processLoop()
9943 Hints.emitRemarkWithHints(); in processLoop()
[all …]
H A DLoopVectorizationLegality.cpp260 Hint *Hints[] = {&Width, &Interleave, &Force, in setHint() local
262 for (auto H : Hints) { in setHint()
804 Hints->setPotentiallyUnsafe(); in canVectorizeInstrs()
868 return OptimizationRemarkAnalysis(Hints->vectorizeAnalysisPassName(), in canVectorizeMemory()
1210 if (Hints->getForce() == LoopVectorizeHints::FK_Enabled) in canVectorize()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86RegisterInfo.cpp911 SmallVectorImpl<MCPhysReg> &Hints, in getRegAllocationHints() argument
918 VirtReg, Order, Hints, MF, VRM, Matrix); in getRegAllocationHints()
927 Hints.push_back(PhysReg); in getRegAllocationHints()
932 Hints.push_back(PhysReg); in getRegAllocationHints()
936 CopyHints.insert(Hints.begin(), Hints.end()); in getRegAllocationHints()
937 Hints.clear(); in getRegAllocationHints()
951 for (auto Hint : Hints) { in getRegAllocationHints()
H A DX86RegisterInfo.h149 SmallVectorImpl<MCPhysReg> &Hints,
/netbsd/external/ibm-public/postfix/dist/mantools/
H A Dmake_soho_readme11 <title>Postfix Small/Home Office Hints and Tips</title>
19 <h1><img src="postfix-logo.jpg" width="203" height="98" ALT="">Postfix Small/Home Office Hints and …
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp320 SmallVectorImpl<MCPhysReg> &Hints, const MachineFunction &MF, in getRegAllocationHints() argument
334 TargetRegisterInfo::getRegAllocationHints(VirtReg, Order, Hints, MF, VRM); in getRegAllocationHints()
336 Hints.push_back(ARM::LR); in getRegAllocationHints()
339 return TargetRegisterInfo::getRegAllocationHints(VirtReg, Order, Hints, MF, VRM); in getRegAllocationHints()
358 Hints.push_back(PairedPhys); in getRegAllocationHints()
368 Hints.push_back(Reg); in getRegAllocationHints()
/netbsd/external/gpl3/binutils/dist/gprofng/
H A DREADME48 need to search for other packages as described in the "Hints" section below.
60 --prefix sets the destination, as described in the "Hints" section below.
95 Hints and tips for building binutils
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DSourceMgr.cpp371 ArrayRef<SMFixIt> Hints) in SMDiagnostic() argument
374 FixIts(Hints.begin(), Hints.end()) { in SMDiagnostic()

123