Home
last modified time | relevance | path

Searched refs:RetCode (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp62 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash()
73 CRC->RetCode = RetCode; in HandleCrash()
212 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local
213 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter()
214 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter()
218 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter()
292 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local
293 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler()
294 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler()
298 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler()
[all …]
H A DProcess.cpp111 [[noreturn]] void Process::Exit(int RetCode, bool NoCleanup) { in Exit() argument
113 CRC->HandleExit(RetCode); in Exit()
116 ExitNoCleanup(RetCode); in Exit()
118 ::exit(RetCode); in Exit()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileSystemStatCache.cpp39 std::error_code RetCode; in get() local
43 RetCode = Cache->getStat(Path, Status, isFile, F, FS); in get()
49 RetCode = StatusOrErr.getError(); in get()
65 RetCode = OwnedFile.getError(); in get()
78 RetCode = StatusOrErr.getError(); in get()
84 if (RetCode) in get()
85 return RetCode; in get()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h102 [[noreturn]] void HandleExit(int RetCode);
105 static bool isCrash(int RetCode);
109 static bool throwIfCrash(int RetCode);
112 int RetCode = 0; variable
H A DProcess.h216 [[noreturn]] static void Exit(int RetCode, bool NoCleanup = false);
219 [[noreturn]] static void ExitNoCleanup(int RetCode);
/freebsd/contrib/llvm-project/lld/Common/
H A DDriverDispatcher.cpp192 return {crc.RetCode, /*canRunAgain=*/false}; in lldMain()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc451 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProcess.inc525 [[noreturn]] void Process::ExitNoCleanup(int RetCode) {
526 TerminateProcess(GetCurrentProcess(), RetCode);
H A DSignals.inc843 unsigned RetCode = EP->ExceptionRecord->ExceptionCode;
844 if (RetCode == (0xE0000000 | EX_IOERR))
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3761 auto RetCode = in addDeviceDependencesToHostAction() local
3767 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction()
3772 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction()
3830 auto RetCode = SB->addDeviceDependences(HostAction); in addHostDependenceToDeviceActions() local
3834 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions()
3839 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()