//------------------------------------------------------------------------ // Compiler::unwindReserveFunc: Reserve the unwind information from the VM for a // given main function or funclet. // // Arguments: // func - The main function or funclet to reserve unwind info for. // void Compiler::unwindReserveFunc(FuncInfoDsc* func) { unwindReserveFuncHelper(func, true); if (fgFirstColdBlock != nullptr) { unwindReserveFuncHelper(func, false); } }
//------------------------------------------------------------------------ // Compiler::unwindReserveFunc: Reserve the unwind information from the VM for a // given main function or funclet. // // Arguments: // func - The main function or funclet to reserve unwind info for. // void Compiler::unwindReserveFunc(FuncInfoDsc* func) { assert(func->unwindHeader.Version == 1); // Can't call this before unwindBegProlog assert(func->unwindHeader.CountOfUnwindCodes == 0); // Only call this once per prolog unwindReserveFuncHelper(func, true); if (fgFirstColdBlock != nullptr) { unwindReserveFuncHelper(func, false); } }