| /llvm-project-15.0.7/lld/Common/ |
| H A D | ErrorHandler.cpp | 27 static StringRef getSeparator(const Twine &msg) { in getSeparator() 56 void lld::error(const Twine &msg) { errorHandler().error(msg); } in error() 61 void lld::log(const Twine &msg) { errorHandler().log(msg); } in log() 62 void lld::message(const Twine &msg, llvm::raw_ostream &s) { in message() 65 void lld::warn(const Twine &msg) { errorHandler().warn(msg); } in warn() 170 std::string ErrorHandler::getLocation(const Twine &msg) { in getLocation() 224 void ErrorHandler::log(const Twine &msg) { in log() 239 void ErrorHandler::warn(const Twine &msg) { in warn() 253 void ErrorHandler::error(const Twine &msg) { in error() 289 void ErrorHandler::error(const Twine &msg, ErrorTag tag, in error() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | ErrorHandling.h | 143 #define llvm_unreachable(msg) \ argument 146 #define llvm_unreachable(msg) ::llvm::llvm_unreachable_internal() argument 148 #define llvm_unreachable(msg) LLVM_BUILTIN_UNREACHABLE argument 150 #define llvm_unreachable(msg) \ argument
|
| /llvm-project-15.0.7/compiler-rt/lib/ubsan_minimal/ |
| H A D | ubsan_minimal_handlers.cpp | 10 static void message(const char *msg) { ubsan_message(msg); } in message() 12 static void message(const char *msg) { in message() 56 static void abort_with_message(const char *msg) { in abort_with_message() 81 #define HANDLER_RECOVER(name, msg) \ argument 87 #define HANDLER_NORECOVER(name, msg) \ argument 93 #define HANDLER(name, msg) \ argument
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | WriterUtils.cpp | 78 void debugWrite(uint64_t offset, const Twine &msg) { in debugWrite() 83 void writeUleb128(raw_ostream &os, uint64_t number, const Twine &msg) { in writeUleb128() 88 void writeSleb128(raw_ostream &os, int64_t number, const Twine &msg) { in writeSleb128() 94 const Twine &msg) { in writeBytes() 99 void writeStr(raw_ostream &os, StringRef string, const Twine &msg) { in writeStr() 106 void writeU8(raw_ostream &os, uint8_t byte, const Twine &msg) { in writeU8() 111 void writeU32(raw_ostream &os, uint32_t number, const Twine &msg) { in writeU32() 116 void writeU64(raw_ostream &os, uint64_t number, const Twine &msg) { in writeU64() 121 void writeValueType(raw_ostream &os, ValType type, const Twine &msg) { in writeValueType() 138 void writeI32Const(raw_ostream &os, int32_t number, const Twine &msg) { in writeI32Const() [all …]
|
| /llvm-project-15.0.7/bolt/runtime/ |
| H A D | hugify.cpp | 54 char msg[] = "Could not allocate memory for text move\n"; in hugify_for_old_kernel() local 69 char msg[] = "failed to mmap memory for large page move terminating\n"; in hugify_for_old_kernel() local 75 char msg[] = "failed to allocate large page\n"; in hugify_for_old_kernel() local 112 char msg[] = "failed to allocate large page\n"; in __bolt_hugify_self_impl() local
|
| /llvm-project-15.0.7/libunwind/src/ |
| H A D | config.h | 148 #define _LIBUNWIND_ABORT(msg) \ argument 153 #define _LIBUNWIND_ABORT(msg) \ argument 162 #define _LIBUNWIND_LOG0(msg) argument 163 #define _LIBUNWIND_LOG(msg, ...) argument 165 #define _LIBUNWIND_LOG0(msg) \ argument 167 #define _LIBUNWIND_LOG(msg, ...) \ argument 184 #define _LIBUNWIND_DEBUG_LOG(msg, ...) argument 185 #define _LIBUNWIND_TRACE_API(msg, ...) argument 188 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...) argument 200 #define _LIBUNWIND_DEBUG_LOG(msg, ...) _LIBUNWIND_LOG(msg, __VA_ARGS__) argument [all …]
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/ |
| H A D | case.py | 473 def fail(self, msg=None): argument 477 def assertFalse(self, expr, msg=None): argument 483 def assertTrue(self, expr, msg=None): argument 489 def _formatMessage(self, msg, standardMsg): argument 596 msg=None, argument 640 msg=None, argument 1009 def assertLess(self, a, b, msg=None): argument 1015 def assertLessEqual(self, a, b, msg=None): argument 1022 def assertGreater(self, a, b, msg=None): argument 1036 def assertIsNone(self, obj, msg=None): argument [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | stack-protector.c | 19 void test1(const char *msg) { in test1() 27 void test2(const char *msg) { in test2()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/format/format.error/ |
| H A D | format.error.pass.cpp | 32 const char* msg = "format_error message c-string"; in main() local 41 std::string msg("format_error message std::string"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/domain.error/ |
| H A D | domain_error.pass.cpp | 26 const char* msg = "domain_error message"; in main() local 35 std::string msg("another domain_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/invalid.argument/ |
| H A D | invalid_argument.pass.cpp | 26 const char* msg = "invalid_argument message"; in main() local 35 std::string msg("another invalid_argument message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/overflow.error/ |
| H A D | overflow_error.pass.cpp | 26 const char* msg = "overflow_error message"; in main() local 35 std::string msg("another overflow_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/length.error/ |
| H A D | length_error.pass.cpp | 26 const char* msg = "length_error message"; in main() local 35 std::string msg("another length_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/range.error/ |
| H A D | range_error.pass.cpp | 26 const char* msg = "range_error message"; in main() local 35 std::string msg("another range_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/out.of.range/ |
| H A D | out_of_range.pass.cpp | 26 const char* msg = "out_of_range message"; in main() local 35 std::string msg("another out_of_range message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/runtime.error/ |
| H A D | runtime_error.pass.cpp | 26 const char* msg = "runtime_error message"; in main() local 35 std::string msg("another runtime_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/underflow.error/ |
| H A D | underflow_error.pass.cpp | 26 const char* msg = "underflow_error message"; in main() local 35 std::string msg("another underflow_error message"); in main() local
|
| /llvm-project-15.0.7/libcxx/test/std/diagnostics/std.exceptions/logic.error/ |
| H A D | logic_error.pass.cpp | 26 const char* msg = "logic_error message"; in main() local 35 std::string msg("another logic_error message"); in main() local
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/ |
| H A D | rsamath.c | 55 mp_result rsa_rsaep(mp_int msg, mp_int exp, mp_int mod, mp_int cipher) { in rsa_rsaep() 60 mp_result rsa_rsadp(mp_int cipher, mp_int exp, mp_int mod, mp_int msg) { in rsa_rsadp() 65 mp_result rsa_rsasp(mp_int msg, mp_int exp, mp_int mod, mp_int signature) { in rsa_rsasp() 70 mp_result rsa_rsavp(mp_int signature, mp_int exp, mp_int mod, mp_int msg) { in rsa_rsavp() 139 static mp_result s_rsa_transform(mp_int msg, mp_int exp, mp_int mod, in s_rsa_transform()
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | io-error.cpp | 20 void IoErrorHandler::SignalError(int iostatOrErrno, const char *msg, ...) { in SignalError() 61 int ioStatOrErrno, const char *msg, std::size_t length) { in Forward() 85 const char *msg{ioMsg_.get()}; in GetIoMsg() local
|
| H A D | stat.cpp | 72 if (const char *msg{StatErrorString(stat)}) { in ToErrmsg() local 91 } else if (const char *msg{StatErrorString(stat)}) { in ReturnError() local
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/ |
| H A D | longjmp_chk.c | 24 void external_longjmp(char *msg) { in external_longjmp() 41 char msg[16]; /* Note: this triggers addition of a redzone. */ in callback() local
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/ |
| H A D | utils.py | 23 def __init__(self, msg, hstatus): argument 27 def aborter(res, msg, ignore=[]): argument
|
| /llvm-project-15.0.7/libc/test/src/math/exhaustive/ |
| H A D | exhaustive_test.cpp | 54 std::stringstream msg; in test_full_range() local 62 std::stringstream msg; in test_full_range() local
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | bugpoint_gisel_reducer.py | 22 def log(msg): argument 30 def log_err(msg): argument
|