Searched refs:Result (Results 176 - 200 of 1126) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineAdvisor.h99 void recordUnsuccessfulInlining(const InlineResult &Result) { argument
101 recordUnsuccessfulInliningImpl(Result);
118 virtual void recordUnsuccessfulInliningImpl(const InlineResult &Result) {} argument
153 void recordUnsuccessfulInliningImpl(const InlineResult &Result) override;
284 /// InlineAdvisorAnalysis::Result::tryCreate will return the dynamically loaded
304 struct Result { struct in class:llvm::PluginInlineAdvisorAnalysis
308 Result run(Module &M, ModuleAnalysisManager &MAM) { return {Factory}; }
309 Result getResult() { return {Factory}; }
321 struct Result { struct in class:llvm::InlineAdvisorAnalysis
322 Result(Modul function in struct:llvm::InlineAdvisorAnalysis::Result
[all...]
H A DMemoryDependenceAnalysis.h208 MemDepResult Result; member in class:llvm::NonLocalDepEntry
211 NonLocalDepEntry(BasicBlock *BB, MemDepResult Result) argument
212 : BB(BB), Result(Result) {}
220 void setResult(const MemDepResult &R) { Result = R; }
222 const MemDepResult &getResult() const { return Result; }
236 NonLocalDepResult(BasicBlock *BB, MemDepResult Result, Value *Address) argument
237 : Entry(BB, Result), Address(Address) {}
415 SmallVectorImpl<NonLocalDepResult> &Result);
495 SmallVectorImpl<NonLocalDepResult> &Result,
[all...]
H A DModuleSummaryAnalysis.h51 using Result = ModuleSummaryIndex;
53 Result run(Module &M, ModuleAnalysisManager &AM);
H A DDependenceAnalysis.h521 /// vector for Result will have 2 entries. SrcLevels = 4 and MaxLevels = 7.
621 /// marks the Result as inconsistent.
624 FullDependence &Result) const;
635 /// marks the Result as inconsistent.
639 FullDependence &Result,
651 /// Marks the Result as inconsistent.
654 FullDependence &Result) const;
662 FullDependence &Result) const;
677 FullDependence &Result,
695 FullDependence &Result,
980 typedef DependenceInfo Result; typedef in class:llvm::DependenceAnalysis
[all...]
H A DLoopNestAnalysis.h123 LoopVectorTy Result; local
127 Result.push_back(L);
131 return Result;
207 using Result = LoopNest;
208 Result run(Loop &L, LoopAnalysisManager &AM, LoopStandardAnalysisResults &AR);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassManager.h443 typename PassT::Result
458 typename PassT::Result
636 using Result = PassInstrumentation;
639 Result run(IRUnitT &, AnalysisManagerT &, ExtraArgTs &&...) {
710 detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result,
745 auto &Result = static_cast<ResultT &>(*RI->second->second); local
753 IsResultInvalidated.insert({ID, Result.invalidate(IR, PA, *this)});
803 typename PassT::Result &getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs) {
810 detail::AnalysisResultModel<IRUnitT, PassT, typename PassT::Result,
813 return static_cast<ResultModelT &>(ResultConcept).Result;
964 class Result { class in class:llvm::InnerAnalysisManagerProxy
966 explicit Result(AnalysisManagerT &InnerAM) : InnerAM(&InnerAM) {} function in class:llvm::InnerAnalysisManagerProxy::Result
968 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)) { function in class:llvm::InnerAnalysisManagerProxy::Result
1090 class Result { class in class:llvm::OuterAnalysisManagerProxy
1092 explicit Result(const AnalysisManagerT &OuterAM) : OuterAM(&OuterAM) {} function in class:llvm::OuterAnalysisManagerProxy::Result
[all...]
H A DStatepoint.h207 std::vector<const GCRelocateInst *> Result; local
214 Result.push_back(Relocate);
218 return Result;
226 Result.push_back(Relocate);
228 return Result;
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp865 void Preprocessor::Lex(Token &Result) { argument
869 while (!CurLexerCallback(*this, Result))
872 if (Result.is(tok::unknown) && TheModuleLoader.HadFatalFailure)
875 if (Result.is(tok::code_completion) && Result.getIdentifierInfo()) {
877 setCodeCompletionIdentifierInfo(Result.getIdentifierInfo());
878 setCodeCompletionTokenRange(Result.getLocation(), Result.getEndLoc());
881 Result.setIdentifierInfo(nullptr);
890 !Result
1135 LexAfterModuleImport(Token &Result) argument
1341 FinishLexStringLiteral(Token &Result, std::string &String, const char *DiagnosticTag, bool AllowMacroExpansion) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp105 ParsedStringTable Result(StringRef(Buf.data(), StrTabSize));
107 return Expected<ParsedStringTable>(std::move(Result));
159 std::unique_ptr<YAMLRemarkParser> Result = local
164 Result->SeparateBuf = std::move(SeparateBuf);
165 return std::move(Result);
203 std::unique_ptr<Remark> Result = std::make_unique<Remark>();
204 Remark &TheRemark = *Result;
268 return std::move(Result);
295 StringRef Result; local
301 Result
435 StringRef Result; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp377 SmallVector<StringRef, 3> Result; local
379 Result.push_back(FS);
386 Result.push_back("+hvxv60");
389 Result.push_back("+hvxv62");
392 Result.push_back("+hvxv65");
395 Result.push_back("+hvxv66");
398 Result.push_back("+hvxv67");
401 Result.push_back("+hvxv68");
404 Result.push_back("+hvxv69");
407 Result
447 std::pair<std::string, std::string> Result; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp472 int64_t Result = 0;
475 Result |= static_cast<int64_t>(Bit->getValue()) << i;
478 return IntInit::get(getRecordKeeper(), Result);
505 std::string Result = "{ ";
507 if (i) Result += ", ";
509 Result += Bit->getAsString();
511 Result += "*";
513 return Result + " }";
756 std::string Result = "[";
759 Result
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeTableCollection.cpp49 StringRef Result = NameStorage.save(computeTypeName(*this, Index)); local
50 Names[I] = Result;
/freebsd-current/contrib/llvm-project/lld/include/lld/Common/
H A DDriver.h33 struct Result { struct in namespace:lld
44 Result lldMain(llvm::ArrayRef<const char *> args, llvm::raw_ostream &stdoutOS,
/freebsd-current/contrib/llvm-project/llvm/include/llvm-c/
H A DLLJIT.h116 LLVMErrorRef LLVMOrcCreateLLJIT(LLVMOrcLLJITRef *Result,
218 LLVMOrcExecutorAddress *Result,
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-assign.exp10 Result of ${VAR.${param}::=assigned-value} is ""
20 Result of ${CMD_CMD_VAR::=new-value} is ""
25 Result of ${CMD_GLOBAL_VAR::=new-value} is ""
30 Result of ${CMD_ENV_VAR::=new-value} is ""
37 Result of ${CMD_NEW_VAR::=new-value} is "" (eval, undefined)
H A Dvarname-dot-suffixes.exp11 Result of ${.SUFFIXES::=assign} is "" (eval-keep-dollar-and-undefined, regular)
15 Result of ${preserve:L} is "preserve" (eval-keep-dollar-and-undefined, defined)
18 Result of ${preserve:_=.SUFFIXES} is "preserve" (eval-keep-dollar-and-undefined, defined)
24 Result of ${1 2:L} is "1 2" (eval-defined, defined)
36 Result of ${1 2:@.SUFFIXES@${.SUFFIXES}@} is ".c .o .1 .err .tar.gz .c .o .1 .err .tar.gz" (eval-defined, defined)
H A Dvardebug.mk32 # expect: Result of ${VAR:M[2]} is "2"
36 # expect: Result of ${VAR:N[2]} is "1 3"
43 # expect: Result of ${VAR:Q} is "1\ 2\ 3"
51 # expect: Result of ${:Mvalu[e]} is "value" (eval-defined, defined)
60 # expect: Result of ${:unknown} is error (eval-defined, defined)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.cpp112 int64_t Result = evaluateAsInt64(Value.getConstant()); local
120 if (!IsHalf && Result >= 0x8000)
122 if ((IsHalf16DS && (Result & 0x3)) || (IsHalf16DQ && (Result & 0xf)))
125 Res = MCValue::get(Result);
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplateDeduction.h96 TemplateArgumentList *Result = DeducedSugared; local
98 return Result;
101 TemplateArgumentList *Result = DeducedCanonical; local
103 return Result;
260 unsigned Result : 8; member in struct:clang::DeductionFailureInfo
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DMemory.inc136 MemoryBlock Result;
137 Result.Address = Addr;
138 Result.AllocatedSize = PageSize * NumPages;
139 Result.Flags = PFlags;
143 EC = Memory::protectMappedMemory(Result, PFlags);
148 return Result;
187 int Result = ::mprotect((void *)Start, End - Start, Protect | PROT_READ);
188 if (Result != 0)
196 int Result = ::mprotect((void *)Start, End - Start, Protect);
198 if (Result !
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp263 Chunk Result; local
264 Result.Kind = CK_Optional;
265 Result.Optional = Optional;
266 return Result;
321 std::string Result; local
322 llvm::raw_string_ostream OS(Result);
344 return Result;
441 CodeCompletionString *Result = new (Mem) CodeCompletionString( local
445 return Result;
630 StringRef Filter, CodeCompletionResult Result) {
629 isResultFilteredOut( StringRef Filter, CodeCompletionResult Result) argument
729 std::string Result; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp159 SmallVectorImpl<uint8_t> &Result) {
160 UnwindOpcodeStreamer OpStreamer(Result);
167 Result.resize(RoundUpSize);
177 Result.resize(4);
183 Result.resize(RoundUpSize);
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp264 auto Result = FS->status(Path); variable
265 if (Result && Result->exists())
267 return Result;
272 auto Result = FS->openFileForRead(Path); variable
273 if (Result && *Result)
275 return Result;
294 std::error_code isLocal(const Twine &Path, bool &Result) override {
295 return FS->isLocal(Path, Result);
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DBareMetal.cpp38 const ArgList &Args, DetectedMultilibs &Result) {
59 Result.Multilibs =
61 return Result.Multilibs.select(Flags, Result.SelectedMultilibs);
93 Result.Multilibs =
95 return Result.Multilibs.select(Flags, Result.SelectedMultilibs);
176 DetectedMultilibs &Result) {
186 Result.Multilibs = ErrorOrMultilibSet.get();
187 if (Result
36 findRISCVMultilibs(const Driver &D, const llvm::Triple &TargetTriple, const ArgList &Args, DetectedMultilibs &Result) argument
174 findMultilibsFromYAML(const ToolChain &TC, const Driver &D, StringRef MultilibPath, const ArgList &Args, DetectedMultilibs &Result) argument
222 DetectedMultilibs Result; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h123 size_t Result = 0; local
124 #define MIBEntryDef(NameTag, Name, Type) Result += sizeof(Type);
127 return Result;
246 size_t Result = 0; local
247 Result ^= HashCombine(Function, Result);
248 Result ^= HashCombine(LineOffset, Result);
249 Result ^= HashCombine(Column, Result);
351 size_t Result = sizeof(GlobalValue::GUID); local
[all...]

Completed in 288 milliseconds

1234567891011>>