Searched refs:EC (Results 226 - 250 of 485) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DSerialSnippetGenerator.cpp168 for (const auto EC : kExecutionClasses) {
169 for (const auto ExecutionModeBit : getExecutionModeBits(EM & EC.Mask))
171 EC.Description, Results);
/openbsd-current/gnu/llvm/llvm/tools/bugpoint/
H A DToolRunner.cpp116 std::error_code EC = sys::fs::createTemporaryFile( local
118 if (EC) {
119 errs() << "Error making unique filename: " << EC.message() << "\n";
439 std::error_code EC = local
441 if (EC) {
442 errs() << "Error making unique filename: " << EC.message() << "\n";
665 std::error_code EC = local
667 if (EC) {
668 errs() << "Error making unique filename: " << EC.message() << "\n";
769 std::error_code EC local
[all...]
H A DMiscompilation.cpp952 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
954 if (EC) {
956 << "Error making unique filename: " << EC.message() << "\n";
971 EC = sys::fs::createTemporaryFile("bugpoint.safe", "bc", SafeModuleFD,
973 if (EC) {
975 << "Error making unique filename: " << EC.message() << "\n";
1046 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
1048 if (EC) {
1049 errs() << getToolName() << "Error making unique filename: " << EC.message()
1063 EC
[all...]
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DType.cpp179 ElementCount EC = VTy->getElementCount(); local
182 return {ETS.getFixedValue() * EC.getKnownMinValue(), EC.isScalable()};
670 VectorType *VectorType::get(Type *ElementType, ElementCount EC) { argument
671 if (EC.isScalable())
672 return ScalableVectorType::get(ElementType, EC.getKnownMinValue());
674 return FixedVectorType::get(ElementType, EC.getKnownMinValue());
692 auto EC = ElementCount::getFixed(NumElts); local
696 .pImpl->VectorTypes[std::make_pair(ElementType, EC)];
714 auto EC local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/LTO/
H A DLTOModule.cpp115 if (std::error_code EC = BufferOrErr.getError()) {
116 Context.emitError(EC.message());
117 return EC;
137 if (std::error_code EC = BufferOrErr.getError()) {
138 Context.emitError(EC.message());
139 return EC;
177 std::error_code EC = errorToErrorCode(std::move(E)); local
178 Context.emitError(EC.message());
179 return EC;
199 if (std::error_code EC
[all...]
/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DFileSystem.cpp188 std::error_code EC; local
189 vfs::recursive_directory_iterator Iter(*m_fs, path, EC);
191 for (; Iter != End && !EC; Iter.increment(EC)) {
222 auto EC = MakeAbsolute(path); local
223 if (EC)
224 return EC;
/openbsd-current/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCVSXSwapRemoval.cpp112 EquivalenceClasses<int> *EC; member in struct:__anon3046::PPCVSXSwapRemoval
210 // FIXME: See the allocation of EC in initialize().
211 delete EC;
232 // FIXME: Currently we allocate EC each time because we don't have
235 EC = new EquivalenceClasses<int>;
544 EC->insert(SwapEntry.VSEId);
624 (void)EC->unionSets(SwapVector[DefIdx].VSEId,
645 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId);
781 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId);
797 int Repr = EC
[all...]
/openbsd-current/gnu/llvm/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp367 static void mapping(IO &IO, EnumConstant &EC) { argument
368 IO.mapRequired("Name", EC.Name);
369 IO.mapOptional("Availability", EC.Availability.Mode,
371 IO.mapOptional("AvailabilityMsg", EC.Availability.Msg, StringRef(""));
372 IO.mapOptional("SwiftPrivate", EC.SwiftPrivate);
373 IO.mapOptional("SwiftName", EC.SwiftName, StringRef(""));
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/Android/
H A DAdbClient.cpp404 std::error_code EC; local
405 llvm::raw_fd_ostream dst(output_filename, EC, llvm::sys::fs::OF_None);
406 if (EC)
431 std::error_code EC; local
432 llvm::raw_fd_ostream dst(local_file_path, EC, llvm::sys::fs::OF_None);
433 if (EC)
/openbsd-current/gnu/llvm/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp254 std::error_code EC; local
255 auto Out = std::make_unique<ToolOutputFile>(Path, EC, Flags);
256 if (EC) {
257 WithColor::error() << EC.message() << '\n';
378 if (std::error_code EC = BufferPtr.getError()) {
380 << InputFilename << ": " << EC.message() << '\n';
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DGraphWriter.cpp123 std::error_code EC = local
125 if (EC) {
126 errs() << "Error: " << EC.message() << "\n";
H A DTimeProfiler.cpp335 std::error_code EC; local
336 raw_fd_ostream OS(Path, EC, sys::fs::OF_TextWithCRLF);
337 if (EC)
338 return createStringError(EC, "Could not open " + Path);
/openbsd-current/gnu/llvm/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.cpp124 std::error_code EC; local
125 llvm::raw_fd_ostream JsonOut(JsonPath, EC, llvm::sys::fs::OF_Text);
126 if (EC)
/openbsd-current/gnu/llvm/lld/ELF/
H A DDriverUtils.cpp240 std::error_code EC; local
241 for (llvm::sys::fs::directory_iterator LI(dir, EC), LE;
242 LI != LE; LI = LI.increment(EC)) {
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DCFGPrinter.cpp69 std::error_code EC; local
70 raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
77 if (!EC)
H A DCallPrinter.cpp230 std::error_code EC; local
231 raw_fd_ostream File(Filename, EC, sys::fs::OF_Text);
236 if (!EC)
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp126 std::error_code EC; local
128 EC, sys::fs::OF_Append);
129 if (!EC)
/openbsd-current/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/Locale/
H A Dcu.pl30 00EC ; [.2090.0020.0002][.0000.0021.0000][.0000.00A4.0002][.0000.0021.0000] # LATIN SMALL LETTER I WITH GRAVE
168 04EC ; [.250A.0020.0008][.0000.0021.0000][.0000.00A8.0002][.0000.0021.0000] # CYRILLIC CAPITAL LETTER E WITH DIAERESIS
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DBareMetal.cpp244 std::error_code EC; local
247 for (llvm::vfs::directory_iterator LI = D.getVFS().dir_begin(Dir.str(), EC),
249 !EC && LI != LE; LI = LI.increment(EC)) {
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DStatus.h62 Status(std::error_code EC);
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp116 if (auto EC = Ref.getSymbolName(Name))
117 return EC;
118 if (auto EC = Ref.getExportRVA(Offset))
119 return EC;
/openbsd-current/gnu/llvm/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp413 std::error_code EC; local
414 ToolOutputFile Out(OutputFilename, EC, sys::fs::OF_None);
415 if (EC) {
416 errs() << EC.message() << '\n';
/openbsd-current/gnu/llvm/llvm/tools/llvm-link/
H A Dllvm-link.cpp492 std::error_code EC; local
493 ToolOutputFile Out(OutputFilename, EC,
496 if (EC) {
497 WithColor::error() << EC.message() << '\n';
/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-converter.cpp392 std::error_code EC;
393 raw_fd_ostream OS(ConvertOutput, EC,
397 if (EC)
399 Twine("Cannot open file '") + ConvertOutput + "' for writing.", EC);
/openbsd-current/gnu/llvm/clang/lib/Driver/
H A DJob.cpp172 std::error_code EC = fs::current_path(OutInc);
173 if (EC)
338 if (std::error_code EC = writeFileWithEncoding(
341 *ErrMsg = EC.message();

Completed in 570 milliseconds

1234567891011>>