Add break for default cases

Visual Studio has an option to search all files in a solution, so I
did a search in there for "default:" looking for any missing break
statements.

I've left out default statements that return something, and that throw
something, even if via ThrowInvalidType. UNREACHABLE leads towards throw

R_THROW macro leads towards a return
This commit is contained in:
Kyle Kienapfel 2022-11-11 04:12:37 -08:00
parent 5eb30c7827
commit 6fa3faec65
24 changed files with 38 additions and 6 deletions

View file

@ -26,6 +26,7 @@ void PerformanceManager::CreateImpl(const size_t version) {
impl = std::make_unique< impl = std::make_unique<
PerformanceManagerImpl<PerformanceVersion::Version1, PerformanceFrameHeaderVersion1, PerformanceManagerImpl<PerformanceVersion::Version1, PerformanceFrameHeaderVersion1,
PerformanceEntryVersion1, PerformanceDetailVersion1>>(); PerformanceEntryVersion1, PerformanceDetailVersion1>>();
break;
} }
} }

View file

@ -156,6 +156,7 @@ AE_FORCEINLINE void compiler_fence(memory_order order) AE_NO_TSAN {
break; break;
default: default:
assert(false); assert(false);
break;
} }
} }

View file

@ -243,6 +243,7 @@ void InitializeSlabHeaps(Core::System& system, KMemoryLayout& memory_layout) {
// If we somehow get an invalid type, abort. // If we somehow get an invalid type, abort.
default: default:
ASSERT_MSG(false, "Unknown slab type: {}", slab_types[i]); ASSERT_MSG(false, "Unknown slab type: {}", slab_types[i]);
break;
} }
// If we've hit the end of a gap, free it. // If we've hit the end of a gap, free it.

View file

@ -2301,6 +2301,7 @@ Result KPageTable::SetProcessMemoryPermission(VAddr addr, size_t size,
break; break;
default: default:
ASSERT(false); ASSERT(false);
break;
} }
} }
@ -2803,6 +2804,7 @@ Result KPageTable::Operate(VAddr addr, size_t num_pages, const KPageGroup& page_
break; break;
default: default:
ASSERT(false); ASSERT(false);
break;
} }
addr += size; addr += size;
@ -2838,6 +2840,7 @@ Result KPageTable::Operate(VAddr addr, size_t num_pages, KMemoryPermission perm,
break; break;
default: default:
ASSERT(false); ASSERT(false);
break;
} }
R_SUCCEED(); R_SUCCEED();
} }

View file

@ -395,6 +395,7 @@ Result KProcess::LoadFromMetadata(const FileSys::ProgramMetadata& metadata, std:
default: default:
ASSERT(false); ASSERT(false);
break;
} }
// Create TLS region // Create TLS region

View file

@ -144,6 +144,7 @@ void Error::Initialize() {
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented LibAppletError mode={:02X}!", mode); UNIMPLEMENTED_MSG("Unimplemented LibAppletError mode={:02X}!", mode);
break;
} }
} }

View file

@ -129,6 +129,7 @@ void Auth::Execute() {
} }
default: default:
unimplemented_log(); unimplemented_log();
break;
} }
} }
@ -192,6 +193,7 @@ void PhotoViewer::Execute() {
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented PhotoViewer applet mode={:02X}!", mode); UNIMPLEMENTED_MSG("Unimplemented PhotoViewer applet mode={:02X}!", mode);
break;
} }
} }

View file

@ -300,11 +300,10 @@ Kernel::KEvent* nvhost_ctrl_gpu::QueryEvent(u32 event_id) {
return error_notifier_event; return error_notifier_event;
case 2: case 2:
return unknown_event; return unknown_event;
default: { default:
LOG_CRITICAL(Service_NVDRV, "Unknown Ctrl GPU Event {}", event_id); LOG_CRITICAL(Service_NVDRV, "Unknown Ctrl GPU Event {}", event_id);
return nullptr;
} }
}
return nullptr;
} }
} // namespace Service::Nvidia::Devices } // namespace Service::Nvidia::Devices

View file

@ -364,11 +364,10 @@ Kernel::KEvent* nvhost_gpu::QueryEvent(u32 event_id) {
return sm_exception_breakpoint_pause_report_event; return sm_exception_breakpoint_pause_report_event;
case 3: case 3:
return error_notifier_event; return error_notifier_event;
default: { default:
LOG_CRITICAL(Service_NVDRV, "Unknown Ctrl GPU Event {}", event_id); LOG_CRITICAL(Service_NVDRV, "Unknown Ctrl GPU Event {}", event_id);
return nullptr;
} }
}
return nullptr;
} }
} // namespace Service::Nvidia::Devices } // namespace Service::Nvidia::Devices

View file

@ -228,6 +228,7 @@ Result ServiceFrameworkBase::HandleSyncRequest(Kernel::KServerSession& session,
} }
UNIMPLEMENTED_MSG("command_type={}", ctx.GetCommandType()); UNIMPLEMENTED_MSG("command_type={}", ctx.GetCommandType());
break;
} }
// If emulation was shutdown, we are closing service threads, do not write the response back to // If emulation was shutdown, we are closing service threads, do not write the response back to

View file

@ -280,6 +280,7 @@ static constexpr int TransitionTime(int year, Rule rule, int offset) {
} }
default: default:
ASSERT(false); ASSERT(false);
break;
} }
return value + rule.transition_time + offset; return value + rule.transition_time + offset;
} }

View file

@ -311,6 +311,7 @@ void MaxwellDMA::ReleaseSemaphore() {
} }
default: default:
ASSERT_MSG(false, "Unknown semaphore type: {}", static_cast<u32>(type.Value())); ASSERT_MSG(false, "Unknown semaphore type: {}", static_cast<u32>(type.Value()));
break;
} }
} }

View file

@ -50,6 +50,7 @@ void Puller::ProcessBindMethod(const MethodCall& method_call) {
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented engine {:04X}", engine_id); UNIMPLEMENTED_MSG("Unimplemented engine {:04X}", engine_id);
break;
} }
} }
@ -65,6 +66,7 @@ void Puller::ProcessFenceActionMethod() {
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented operation {}", regs.fence_action.op.Value()); UNIMPLEMENTED_MSG("Unimplemented operation {}", regs.fence_action.op.Value());
break;
} }
} }
@ -228,6 +230,7 @@ void Puller::CallEngineMethod(const MethodCall& method_call) {
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented engine"); UNIMPLEMENTED_MSG("Unimplemented engine");
break;
} }
} }
@ -254,6 +257,7 @@ void Puller::CallEngineMultiMethod(u32 method, u32 subchannel, const u32* base_s
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented engine"); UNIMPLEMENTED_MSG("Unimplemented engine");
break;
} }
} }

View file

@ -201,6 +201,7 @@ bool MacroInterpreterImpl::Step(bool is_delay_slot) {
} }
default: default:
UNIMPLEMENTED_MSG("Unimplemented macro operation {}", opcode.operation.Value()); UNIMPLEMENTED_MSG("Unimplemented macro operation {}", opcode.operation.Value());
break;
} }
// An instruction with the Exit flag will not actually // An instruction with the Exit flag will not actually
@ -297,6 +298,7 @@ void MacroInterpreterImpl::ProcessResult(Macro::ResultOperation operation, u32 r
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented result operation {}", operation); UNIMPLEMENTED_MSG("Unimplemented result operation {}", operation);
break;
} }
} }

View file

@ -652,6 +652,7 @@ void MacroJITx64Impl::Compile_ProcessResult(Macro::ResultOperation operation, u3
break; break;
default: default:
UNIMPLEMENTED_MSG("Unimplemented macro operation {}", operation); UNIMPLEMENTED_MSG("Unimplemented macro operation {}", operation);
break;
} }
} }

View file

@ -891,6 +891,7 @@ void Image::CopyBufferToImage(const VideoCommon::BufferImageCopy& copy, size_t b
break; break;
default: default:
ASSERT(false); ASSERT(false);
break;
} }
} }
@ -927,6 +928,7 @@ void Image::CopyImageToBuffer(const VideoCommon::BufferImageCopy& copy, size_t b
break; break;
default: default:
ASSERT(false); ASSERT(false);
break;
} }
// Compressed formats don't have a pixel format or type // Compressed formats don't have a pixel format or type
const bool is_compressed = gl_format == GL_NONE; const bool is_compressed = gl_format == GL_NONE;

View file

@ -340,6 +340,7 @@ void RendererOpenGL::ConfigureFramebufferTexture(TextureInfo& texture,
texture.gl_type = GL_UNSIGNED_INT_8_8_8_8_REV; texture.gl_type = GL_UNSIGNED_INT_8_8_8_8_REV;
// UNIMPLEMENTED_MSG("Unknown framebuffer pixel format: {}", // UNIMPLEMENTED_MSG("Unknown framebuffer pixel format: {}",
// static_cast<u32>(framebuffer.pixel_format)); // static_cast<u32>(framebuffer.pixel_format));
break;
} }
texture.resource.Release(); texture.resource.Release();

View file

@ -221,6 +221,7 @@ void Scheduler::SubmitExecution(VkSemaphore signal_semaphore, VkSemaphore wait_s
[[fallthrough]]; [[fallthrough]];
default: default:
vk::Check(result); vk::Check(result);
break;
} }
}); });
chunk->MarkSubmit(); chunk->MarkSubmit();

View file

@ -108,6 +108,7 @@ constexpr VkBorderColor ConvertBorderColor(const std::array<float, 4>& color) {
break; break;
default: default:
ASSERT_MSG(false, "Invalid surface type"); ASSERT_MSG(false, "Invalid surface type");
break;
} }
} }
if (info.storage) { if (info.storage) {

View file

@ -170,6 +170,7 @@ void Swizzle(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixe
#undef BPP_CASE #undef BPP_CASE
default: default:
ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel); ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel);
break;
} }
} }
@ -217,6 +218,7 @@ void SwizzleSubrect(std::span<u8> output, std::span<const u8> input, u32 bytes_p
#undef BPP_CASE #undef BPP_CASE
default: default:
ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel); ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel);
break;
} }
} }
@ -240,6 +242,7 @@ void UnswizzleSubrect(std::span<u8> output, std::span<const u8> input, u32 bytes
#undef BPP_CASE #undef BPP_CASE
default: default:
ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel); ASSERT_MSG(false, "Invalid bytes_per_pixel={}", bytes_per_pixel);
break;
} }
} }

View file

@ -63,6 +63,7 @@ void CompatDB::Submit() {
break; break;
default: default:
LOG_ERROR(Frontend, "Unexpected page: {}", currentId()); LOG_ERROR(Frontend, "Unexpected page: {}", currentId());
break;
} }
} }

View file

@ -1953,6 +1953,7 @@ void GMainWindow::OnGameListOpenFolder(u64 program_id, GameListOpenTarget target
} }
default: default:
UNIMPLEMENTED(); UNIMPLEMENTED();
break;
} }
const QString qpath = QString::fromStdString(Common::FS::PathToUTF8String(path)); const QString qpath = QString::fromStdString(Common::FS::PathToUTF8String(path));
@ -3182,6 +3183,7 @@ void GMainWindow::OnToggleGpuAccuracy() {
case Settings::GPUAccuracy::Extreme: case Settings::GPUAccuracy::Extreme:
default: { default: {
Settings::values.gpu_accuracy.SetValue(Settings::GPUAccuracy::High); Settings::values.gpu_accuracy.SetValue(Settings::GPUAccuracy::High);
break;
} }
} }
@ -3514,6 +3516,7 @@ void GMainWindow::UpdateGPUAccuracyButton() {
default: { default: {
gpu_accuracy_button->setText(tr("GPU ERROR")); gpu_accuracy_button->setText(tr("GPU ERROR"));
gpu_accuracy_button->setChecked(true); gpu_accuracy_button->setChecked(true);
break;
} }
} }
} }

View file

@ -84,6 +84,7 @@ EmuWindow_SDL2_VK::EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsyste
default: default:
LOG_CRITICAL(Frontend, "Window manager subsystem not implemented"); LOG_CRITICAL(Frontend, "Window manager subsystem not implemented");
std::exit(EXIT_FAILURE); std::exit(EXIT_FAILURE);
break;
} }
OnResize(); OnResize();

View file

@ -351,6 +351,7 @@ int main(int argc, char** argv) {
"additional help.\n\nError Code: {:04X}-{:04X}\nError Description: {}", "additional help.\n\nError Code: {:04X}-{:04X}\nError Description: {}",
loader_id, error_id, static_cast<Loader::ResultStatus>(error_id)); loader_id, error_id, static_cast<Loader::ResultStatus>(error_id));
} }
break;
} }
system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend", "SDL"); system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend", "SDL");