Searched refs:EC (Results 201 - 225 of 485) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/lib/XRay/
H A DTrace.cpp384 if (auto EC = sys::fs::file_size(Filename, FileSize)) {
386 Twine("Cannot read log from '") + Filename + "'", EC);
395 std::error_code EC; local
398 EC);
400 if (EC) {
402 Twine("Cannot read log from '") + Filename + "'", EC);
H A DInstrumentationMap.cpp225 std::error_code EC; local
227 Fd, sys::fs::mapped_file_region::mapmode::readonly, FileSize, 0, EC);
229 if (EC)
231 Twine("Failed memory-mapping file '") + Filename + "'.", EC);
/openbsd-current/gnu/usr.bin/perl/lib/unicore/
H A DCombiningClass.pl109 6EB 6EC 230
151 8EA 8EC 230
280 20EC 20EF 220
/openbsd-current/gnu/llvm/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp108 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { argument
109 exitWithError(EC.message(), std::string(Whence));
117 static void warnOrExitGivenError(FailureMode FailMode, std::error_code EC, argument
120 exitWithErrorCode(EC, Whence);
122 warn(EC.message(), std::string(Whence));
373 std::error_code EC; local
374 raw_fd_ostream Output(OutputFilename.data(), EC,
377 if (EC)
378 exitWithErrorCode(EC, OutputFilename);
843 if (std::error_code EC
1016 std::error_code EC = make_error_code(Result); local
1099 std::error_code EC; local
2284 std::error_code EC; local
2947 std::error_code EC; local
[all...]
/openbsd-current/gnu/llvm/llvm/examples/BrainF/
H A DBrainFDriver.cpp128 std::error_code EC; local
129 out = new raw_fd_ostream(OutputFilename, EC, sys::fs::OF_None);
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DTarWriter.cpp173 if (std::error_code EC =
175 return make_error<StringError>("cannot open " + OutputPath, EC);
/openbsd-current/gnu/llvm/llvm/tools/dsymutil/
H A DSymbolMap.cpp119 if (auto EC = ErrOrMemBuffer.getError()) {
120 WithColor::warning() << SymbolMapPath << ": " << EC.message()
/openbsd-current/gnu/llvm/lldb/tools/lldb-vscode/
H A DRunInTerminal.cpp165 if (std::error_code EC = sys::fs::getPotentiallyUniqueTempFileName(
167 return createStringError(EC, "Error making unique file name for "
/openbsd-current/gnu/llvm/llvm/lib/Debuginfod/
H A DDebuginfod.cpp350 std::error_code EC = identify_magic(FilePath, Type); local
351 if (EC)
366 std::error_code EC; local
367 sys::fs::recursive_directory_iterator I(Twine(Path), EC), E; local
378 if (I == E || EC)
383 I.increment(EC);
424 if (EC)
425 return errorCodeToError(EC);
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp356 EquivalenceClasses<Chain*> EC; local
358 EC.insert(I.get());
363 EC.unionSets(I.get(), J.get());
364 LLVM_DEBUG(dbgs() << "Created " << EC.getNumClasses() << " disjoint sets.\n");
371 for (auto I = EC.begin(), E = EC.end(); I != E; ++I) {
372 std::vector<Chain*> Cs(EC.member_begin(I), EC.member_end());
/openbsd-current/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DSnippetFile.cpp122 if (std::error_code EC = BufferPtr.getError()) {
124 EC.message());
/openbsd-current/gnu/llvm/llvm/tools/llvm-undname/
H A Dllvm-undname.cpp102 if (std::error_code EC = FileOrErr.getError()) {
104 << "\': " << EC.message() << '\n';
/openbsd-current/gnu/llvm/llvm/tools/llvm-jitlink/llvm-jitlink-executor/
H A Dllvm-jitlink-executor.cpp75 if (int EC = getaddrinfo(nullptr, PortStr.c_str(), &Hints, &AI)) {
76 errs() << "Error setting up bind address: " << gai_strerror(EC) << "\n";
/openbsd-current/gnu/llvm/llvm/tools/llc/
H A Dllc.cpp293 std::error_code EC; local
297 auto FDOut = std::make_unique<ToolOutputFile>(OutputFilename, EC, OpenFlags);
298 if (EC) {
299 reportError(EC.message());
627 std::error_code EC; local
628 DwoOut = std::make_unique<ToolOutputFile>(SplitDwarfOutputFile, EC,
630 if (EC)
631 reportError(EC.message(), SplitDwarfOutputFile);
/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-graph.cpp403 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC, argument
414 if (EC != StatType::NONE)
417 std::sqrt(S.getDouble(EC) / G.GraphEdgeMax.getDouble(EC)))
528 std::error_code EC;
529 raw_fd_ostream OS(GraphOutput, EC, sys::fs::OpenFlags::OF_TextWithCRLF);
530 if (EC)
532 Twine("Cannot open file '") + GraphOutput + "' for writing.", EC);
/openbsd-current/gnu/llvm/llvm/lib/FuzzMutate/
H A DFuzzerCLI.cpp151 if (std::error_code EC = BufOrErr.getError()) {
152 errs() << "Error reading file: " << Arg << ": " << EC.message() << "\n";
/openbsd-current/gnu/llvm/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h58 /// block of the memory. \p EC [out] returns an object describing any error
71 /// null MemoryBlock with \p EC describing the error.
75 unsigned Flags, std::error_code &EC) = 0;
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DDependencyFile.cpp324 std::error_code EC; local
325 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF);
326 if (EC) {
327 Diags.Report(diag::err_fe_error_opening) << OutputFile << EC.message();
/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DTCPSocket.cpp48 std::error_code EC; local
50 EC = llvm::mapWindowsError(WSAGetLastError());
52 EC = std::error_code(errno, std::generic_category());
54 return EC;
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp212 auto *EC= SE->getSCEV(ElemCount);
224 if (!SE->isLoopInvariant(EC, L)) {
269 auto *ECPlusVWMinus1 = SE->getAddExpr(EC,
280 dbgs() << "ARM TP: - ElemCount = "; EC->dump();
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DValueTypes.h81 /// Returns the EVT that represents a vector EC.Min elements in length,
83 static EVT getVectorVT(LLVMContext &Context, EVT VT, ElementCount EC) { argument
84 MVT M = MVT::getVectorVT(VT.V, EC);
87 return getExtendedVectorVT(Context, VT, EC);
498 ElementCount EC);
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp337 std::error_code EC; local
338 raw_fd_ostream DumpStream(DumpPath, EC);
339 if (EC)
340 return errorCodeToError(EC);
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DGsymCreator.cpp50 std::error_code EC; local
51 raw_fd_ostream OutStrm(Path, EC);
52 if (EC)
53 return llvm::errorCodeToError(EC);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DMIRSampleProfile.cpp177 const MachineBasicBlock *EC = EquivalenceClass[BB];
178 uint64_t BBWeight = BlockWeights[EC];
259 if (std::error_code EC = ReaderOrErr.getError()) {
260 std::string Msg = "Could not open profile: " + EC.message();
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DAMDGPU.cpp45 std::error_code EC;
48 for (llvm::vfs::directory_iterator File = D.getVFS().dir_begin(Cand.Path, EC),
50 File != FileEnd && !EC; File.increment(EC)) {
82 std::error_code EC; local
83 for (llvm::vfs::directory_iterator LI = D.getVFS().dir_begin(Path, EC), LE;
84 !EC && LI != LE; LI = LI.increment(EC)) {
277 std::error_code EC; local
291 File = D.getVFS().dir_begin(D.SysRoot + "/opt", EC),
[all...]

Completed in 351 milliseconds

1234567891011>>