Rename filenames in #include commands to match real filenames

This commit is contained in:
Jan Vorlicek 2015-10-22 17:30:15 -07:00
Родитель 1df8671def
Коммит c1c17ef74f
51 изменённых файлов: 290 добавлений и 290 удалений

Просмотреть файл

@ -2,26 +2,26 @@
// Copyright (c) Microsoft Corporation. All rights reserved. // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "commontypes.h" #include "CommonTypes.h"
#include "gcrhenvbase.h" #include "gcrhenvbase.h"
#include "eventtrace.h" #include "eventtrace.h"
#include "gc.h" #include "gc.h"
#include "assert.h" #include "assert.h"
#include "redhawkwarnings.h" #include "RedhawkWarnings.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "cachedinterfacedispatch.h" #include "CachedInterfaceDispatch.h"
#include "module.h" #include "module.h"
#include "calldescr.h" #include "CallDescr.h"
class AsmOffsets class AsmOffsets
{ {

Просмотреть файл

@ -8,12 +8,12 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#endif // !DACCESS_COMPILE #endif // !DACCESS_COMPILE
bool EEThreadId::IsSameThread() bool EEThreadId::IsSameThread()

Просмотреть файл

@ -7,20 +7,20 @@
#include "gcrhenv.h" #include "gcrhenv.h"
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#if !defined(DACCESS_COMPILE) #if !defined(DACCESS_COMPILE)
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "type_traits.hpp" #include "type_traits.hpp"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "instancestore.h" #include "InstanceStore.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#include "DebugEventSource.h" #include "DebugEventSource.h"
@ -206,4 +206,4 @@ COOP_PINVOKE_HELPER(ExceptionEventKind, RhpGetRequestedExceptionEvents, ())
return (ExceptionEventKind)mask; return (ExceptionEventKind)mask;
} }
#endif //!DACCESS_COMPILE #endif //!DACCESS_COMPILE

Просмотреть файл

@ -4,26 +4,26 @@
// //
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#include "varint.h" #include "varint.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "event.h" #include "event.h"
#include "threadstore.h" #include "threadstore.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "stresslog.h" #include "stressLog.h"
// Find the module containing the given address, which is a return address from a managed function. The // Find the module containing the given address, which is a return address from a managed function. The
// address may be to another managed function, or it may be to an unmanaged function, or it may be to a GC // address may be to another managed function, or it may be to an unmanaged function, or it may be to a GC

Просмотреть файл

@ -12,8 +12,8 @@
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "module.h" #include "module.h"
// Block the current thread until at least one object needs to be finalized (returns true) or memory is low // Block the current thread until at least one object needs to be finalized (returns true) or memory is low

Просмотреть файл

@ -10,15 +10,15 @@
#include "common.h" #include "common.h"
#include "gcenv.h" #include "gcenv.h"
#include "gc.h" #include "gc.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "slist.h" #include "slist.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"

Просмотреть файл

@ -7,29 +7,29 @@
#if defined(FEATURE_GC_STRESS) & !defined(DACCESS_COMPILE) #if defined(FEATURE_GC_STRESS) & !defined(DACCESS_COMPILE)
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rhconfig.h" #include "RhConfig.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "slist.h" #include "slist.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "forward_declarations.h" #include "forward_declarations.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "shash.h" #include "shash.h"
#include "shash.inl" #include "shash.inl"
#include "gcstresscontrol.h" #include "GcStressControl.h"
class GcStressControl class GcStressControl

Просмотреть файл

@ -3,13 +3,13 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "eetype.h" #include "eetype.h"
#include "genericinstance.h" #include "GenericInstance.h"
#else #else
#include "gcrhenv.h" #include "gcrhenv.h"
#endif #endif

Просмотреть файл

@ -13,7 +13,7 @@
#include "common.h" #include "common.h"
#include "gcenv.h" #include "gcenv.h"
#include "objecthandle.h" #include "objecthandle.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
COOP_PINVOKE_HELPER(OBJECTHANDLE, RhpHandleAlloc, (Object *pObject, int type)) COOP_PINVOKE_HELPER(OBJECTHANDLE, RhpHandleAlloc, (Object *pObject, int type))

Просмотреть файл

@ -3,20 +3,20 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "type_traits.hpp" #include "type_traits.hpp"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "instancestore.h" #include "InstanceStore.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "slist.inl" #include "slist.inl"

Просмотреть файл

@ -2,8 +2,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved. // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
// //
@ -261,4 +261,4 @@ ThrowExcep:
return 0; return 0;
} }
#endif // defined(_X86_) || defined(_ARM_) #endif // defined(_X86_) || defined(_ARM_)

Просмотреть файл

@ -11,34 +11,34 @@
#ifdef DACCESS_COMPILE #ifdef DACCESS_COMPILE
#include "gcrhenv.h" #include "gcrhenv.h"
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "event.h" #include "event.h"
#include "threadstore.h" #include "threadstore.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#include "genericinstance.h" #include "GenericInstance.h"
#include "slist.inl" #include "slist.inl"
#include "eetype.inl" #include "eetype.inl"
#include "commonmacros.inl" #include "CommonMacros.inl"
// Busy spin for the given number of iterations. // Busy spin for the given number of iterations.
COOP_PINVOKE_HELPER(void, RhSpinWait, (Int32 iterations)) COOP_PINVOKE_HELPER(void, RhSpinWait, (Int32 iterations))
@ -734,4 +734,4 @@ extern "C" void RhpUniversalTransition();
COOP_PINVOKE_HELPER(void*, RhGetUniversalTransitionThunk, ()) COOP_PINVOKE_HELPER(void*, RhGetUniversalTransitionThunk, ())
{ {
return (void*)RhpUniversalTransition; return (void*)RhpUniversalTransition;
} }

Просмотреть файл

@ -12,16 +12,16 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#include "redhawkwarnings.h" #include "RedhawkWarnings.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "targetptrs.h" #include "TargetPtrs.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#endif // !DACCESS_COMPILE #endif // !DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE

Просмотреть файл

@ -13,15 +13,15 @@
#else // DACCESS_COMPILE #else // DACCESS_COMPILE
#ifndef RHDUMP #ifndef RHDUMP
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#include "varint.h" #include "varint.h"
#endif #endif
@ -121,4 +121,4 @@ void * OptionalFields::GetOutlineField(OptionalFieldTag eTag, size_t cbValueAlig
return NULL; return NULL;
} }
#endif #endif

Просмотреть файл

@ -931,4 +931,4 @@ REDHAWK_PALIMPORT size_t __cdecl wcslen(const wchar_t *str);
REDHAWK_PALIMPORT Int32 __cdecl _wcsicmp(const wchar_t *string1, const wchar_t *string2); REDHAWK_PALIMPORT Int32 __cdecl _wcsicmp(const wchar_t *string1, const wchar_t *string2);
#endif // !DACCESS_COMPILE #endif // !DACCESS_COMPILE
#endif // !PAL_REDHAWK_INCLUDED #endif // !PAL_REDHAWK_INCLUDED

Просмотреть файл

@ -17,11 +17,11 @@
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <evntprov.h> #include <evntprov.h>
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include <palredhawkcommon.h> #include <palredhawkcommon.h>
#include <winternl.h> #include <winternl.h>
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#ifdef USE_PORTABLE_HELPERS #ifdef USE_PORTABLE_HELPERS

Просмотреть файл

@ -19,11 +19,11 @@
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
#include <evntprov.h> #include <evntprov.h>
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include <palredhawkcommon.h> #include <palredhawkcommon.h>
#include <winternl.h> #include <winternl.h>
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#ifdef USE_PORTABLE_HELPERS #ifdef USE_PORTABLE_HELPERS

Просмотреть файл

@ -8,19 +8,19 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rhbinder.h" // for GenericInstanceDesc #include "rhbinder.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#else #else

Просмотреть файл

@ -8,22 +8,22 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "commonmacros.inl" #include "CommonMacros.inl"
#include "regdisplay.h" #include "regdisplay.h"
#include "targetptrs.h" #include "TargetPtrs.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#include "varint.h" #include "varint.h"
#endif #endif
#include "gcinfo.h" #include "gcinfo.h"
#include "rhcodeman.h" #include "RHCodeMan.h"
#include "ICodeManager.h" #include "ICodeManager.h"

Просмотреть файл

@ -12,25 +12,25 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#endif // !DACCESS_COMPILE #endif // !DACCESS_COMPILE
// Configurable constants used across our spin locks // Configurable constants used across our spin locks

Просмотреть файл

@ -7,4 +7,4 @@
// Disable some commonly ignored warnings // Disable some commonly ignored warnings
// //
MSVC_DISABLE_WARNING(4200) // nonstandard extension used : zero-sized array in struct/union MSVC_DISABLE_WARNING(4200) // nonstandard extension used : zero-sized array in struct/union

Просмотреть файл

@ -9,29 +9,29 @@
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#include "event.h" #include "event.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "threadstore.h" #include "threadstore.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
// The head of the chains of GC callouts, one per callout type. // The head of the chains of GC callouts, one per callout type.
RestrictedCallouts::GcRestrictedCallout * RestrictedCallouts::s_rgGcRestrictedCallouts[GCRC_Count] = { 0 }; RestrictedCallouts::GcRestrictedCallout * RestrictedCallouts::s_rgGcRestrictedCallouts[GCRC_Count] = { 0 };

Просмотреть файл

@ -4,24 +4,24 @@
// //
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "module.h" #include "module.h"
#include "RhConfig.h" #include "RhConfig.h"

Просмотреть файл

@ -127,4 +127,4 @@ private:
extern RhConfig * g_pRhConfig; extern RhConfig * g_pRhConfig;
#endif //!DACCESS_COMPILE #endif //!DACCESS_COMPILE

Просмотреть файл

@ -8,35 +8,35 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rhbinder.h" // for GenericInstanceDesc #include "rhbinder.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "event.h" #include "event.h"
#include "threadstore.h" #include "threadstore.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "module.h" #include "module.h"
#include "eetype.h" #include "eetype.h"
#include "genericinstance.h" #include "GenericInstance.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "debugeventsource.h" #include "DebugEventSource.h"
#include "commonmacros.inl" #include "CommonMacros.inl"
#include "slist.inl" #include "slist.inl"
#include "eetype.inl" #include "eetype.inl"
#include "optionalfields.inl" #include "OptionalFields.inl"
#ifdef FEATURE_GC_STRESS #ifdef FEATURE_GC_STRESS
enum HijackType { htLoop, htCallsite }; enum HijackType { htLoop, htCallsite };

Просмотреть файл

@ -8,16 +8,16 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "assert.h" #include "assert.h"
#include "commonmacros.inl" #include "CommonMacros.inl"
#endif #endif
#include "rhbinder.h" #include "rhbinder.h"
#include "sectionmethodlist.h" #include "SectionMethodList.h"
@ -308,4 +308,4 @@ bool PageEntry::IsCoveredByOneMethod()
UInt32 PageEntry::GetMethodIndex() UInt32 PageEntry::GetMethodIndex()
{ {
return m_uPageEntry >> METHOD_INDEX_SHIFT_AMOUNT; return m_uPageEntry >> METHOD_INDEX_SHIFT_AMOUNT;
} }

Просмотреть файл

@ -76,4 +76,4 @@ public:
#ifdef _DEBUG #ifdef _DEBUG
UInt32 GetNumMethodsDEBUG(); UInt32 GetNumMethodsDEBUG();
#endif // _DEBUG #endif // _DEBUG
}; };

Просмотреть файл

@ -8,30 +8,30 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "redhawkwarnings.h" #include "RedhawkWarnings.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "static_check.h" #include "static_check.h"
#include "event.h" #include "event.h"
#include "threadstore.h" #include "threadstore.h"
#include "stresslog.h" #include "stressLog.h"
#endif #endif
#include "module.h" #include "module.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "rhbinder.h" #include "rhbinder.h"
// warning C4061: enumerator '{blah}' in switch of enum '{blarg}' is not explicitly handled by a case label // warning C4061: enumerator '{blah}' in switch of enum '{blarg}' is not explicitly handled by a case label

Просмотреть файл

@ -3,23 +3,23 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "forward_declarations.h" #include "forward_declarations.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "spinlock.h" #include "SpinLock.h"
#include "rhbinder.h" #include "rhbinder.h"
#ifdef FEATURE_VSD #ifdef FEATURE_VSD
#include "virtualcallstub.h" #include "virtualcallstub.h"
#endif // FEATURE_VSD #endif // FEATURE_VSD
#include "cachedinterfacedispatch.h" #include "CachedInterfaceDispatch.h"
#include "syncclean.hpp" #include "SyncClean.hpp"
void SyncClean::Terminate() void SyncClean::Terminate()
{ {

Просмотреть файл

@ -3,24 +3,24 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "debugmacrosext.h" #include "DebugMacrosExt.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "range.h" #include "Range.h"
#ifdef FEATURE_RWX_MEMORY #ifdef FEATURE_RWX_MEMORY
#include "memaccessmgr.h" #include "memaccessmgr.h"
#endif #endif
#include "allocheap.h" #include "allocheap.h"
#include "commonmacros.inl" #include "CommonMacros.inl"
#include "slist.inl" #include "slist.inl"
using namespace rh::util; using namespace rh::util;

Просмотреть файл

@ -3,10 +3,10 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"

Просмотреть файл

@ -3,4 +3,4 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
// placeholder file // placeholder file

Просмотреть файл

@ -3,21 +3,21 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
bool InitDLL(HANDLE hPalInstance); bool InitDLL(HANDLE hPalInstance);

Просмотреть файл

@ -8,14 +8,14 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "assert.h" #include "assert.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "eetype.h" #include "eetype.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#endif #endif
#pragma warning(disable:4127) // C4127: conditional expression is constant #pragma warning(disable:4127) // C4127: conditional expression is constant

Просмотреть файл

@ -636,4 +636,4 @@ public:
#pragma warning(pop) #pragma warning(pop)
#include "optionalfields.h" #include "OptionalFields.h"

Просмотреть файл

@ -3,22 +3,22 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "event.h" #include "event.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
// //

Просмотреть файл

@ -344,4 +344,4 @@ inline VOID ETW::GCLog::RootReference(
#endif #endif
#endif //_VMEVENTTRACE_H_ #endif //_VMEVENTTRACE_H_

Просмотреть файл

@ -208,4 +208,4 @@ public:
void Cleanup(); void Cleanup();
}; };
#endif // __EVENTTRACEPRIV_H__ #endif // __EVENTTRACEPRIV_H__

Просмотреть файл

@ -452,4 +452,4 @@ size_t FASTCALL GCDump::DumpGCTable (PTR_UInt8 gcInfo,
return 0; return 0;
} }
#endif // _DEBUG || DACCESS_COMPILE #endif // _DEBUG || DACCESS_COMPILE

Просмотреть файл

@ -6,14 +6,14 @@
#include "gcenv.base.h" #include "gcenv.base.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "targetptrs.h" #include "TargetPtrs.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
// Adapter for GC's view of Array // Adapter for GC's view of Array

Просмотреть файл

@ -13,30 +13,30 @@
#include "gcenv.h" #include "gcenv.h"
#include "gc.h" #include "gc.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "slist.h" #include "slist.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "module.h" #include "module.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "objecthandle.h" #include "objecthandle.h"
#include "eetype.inl" #include "eetype.inl"
#include "rhconfig.h" #include "RhConfig.h"
#include "threadstore.h" #include "threadstore.h"
#include "gcdesc.h" #include "gcdesc.h"
#include "syncclean.hpp" #include "SyncClean.hpp"
typedef void(__stdcall *PFLS_CALLBACK_FUNCTION) (void* lpFlsData); typedef void(__stdcall *PFLS_CALLBACK_FUNCTION) (void* lpFlsData);
@ -1162,4 +1162,4 @@ void FinalizerThread::Wait(DWORD timeout, bool allowReentrantWait)
} }
} }
#endif // FEATURE_PREMORTEM_FINALIZATION #endif // FEATURE_PREMORTEM_FINALIZATION

Просмотреть файл

@ -9,23 +9,23 @@
#include "gc.h" #include "gc.h"
#include "objecthandle.h" #include "objecthandle.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "slist.h" #include "slist.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "module.h" #include "module.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "threadstore.h" #include "threadstore.h"
// todo: remove this hack (brain-dead logging). // todo: remove this hack (brain-dead logging).

Просмотреть файл

@ -8,11 +8,11 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "daccess.h" #include "daccess.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "holder.h" #include "holder.h"
@ -20,19 +20,19 @@
#include "module.h" #include "module.h"
#include "varint.h" #include "varint.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "crst.h" #include "Crst.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
#include "genericinstance.h" #include "GenericInstance.h"
#include "threadstore.h" #include "threadstore.h"
#include "commonmacros.inl" #include "CommonMacros.inl"
#include "slist.inl" #include "slist.inl"
#else #else
#include "gcrhinterface.h" #include "gcrhinterface.h"
@ -41,7 +41,7 @@
#endif #endif
#include "gcinfo.h" #include "gcinfo.h"
#include "rhcodeman.h" #include "RHCodeMan.h"
#include "rheventtrace.h" #include "rheventtrace.h"

Просмотреть файл

@ -4,11 +4,11 @@
// //
#include "rhcommon.h" #include "rhcommon.h"
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
@ -17,17 +17,17 @@
#include "varint.h" #include "varint.h"
#include "holder.h" #include "holder.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "crst.h" #include "Crst.h"
#include "rwlock.h" #include "RWLock.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "event.h" #include "event.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "threadstore.h" #include "threadstore.h"
#include "eetype.h" #include "eetype.h"
#include "objectlayout.h" #include "ObjectLayout.h"
EXTERN_C REDHAWK_API void* REDHAWK_CALLCONV RhpPublishObject(void* pObject, UIntNative cbSize); EXTERN_C REDHAWK_API void* REDHAWK_CALLCONV RhpPublishObject(void* pObject, UIntNative cbSize);

Просмотреть файл

@ -12,10 +12,10 @@
#if defined(FEATURE_EVENT_TRACE) #if defined(FEATURE_EVENT_TRACE)
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "debugmacrosext.h" #include "DebugMacrosExt.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "gcrhenv.h" #include "gcrhenv.h"

Просмотреть файл

@ -7,10 +7,10 @@
// This header contains binder-generated data structures that the runtime consumes. // This header contains binder-generated data structures that the runtime consumes.
// //
#ifndef RHDUMP_TARGET_NEUTRAL #ifndef RHDUMP_TARGET_NEUTRAL
#include "targetptrs.h" #include "TargetPtrs.h"
#endif #endif
#ifndef RHDUMP #ifndef RHDUMP
#include "wellknownmethods.h" #include "WellKnownMethods.h"
#endif #endif
#if !defined(RHDUMP) || defined(RHDUMP_TARGET_NEUTRAL) #if !defined(RHDUMP) || defined(RHDUMP_TARGET_NEUTRAL)
// //

Просмотреть файл

@ -8,30 +8,30 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "instancestore.h" #include "InstanceStore.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "cachedinterfacedispatch.h" #include "CachedInterfaceDispatch.h"
#include "rhconfig.h" #include "RhConfig.h"
#include "stresslog.h" #include "stressLog.h"
#include "restrictedcallouts.h" #include "RestrictedCallouts.h"
#endif !DACCESS_COMPILE #endif !DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE

Просмотреть файл

@ -15,22 +15,22 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "daccess.h" #include "daccess.h"
#include "stresslog.h" #include "stressLog.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "rwlock.h" #include "RWLock.h"
#include "event.h" #include "event.h"
#include "threadstore.h" #include "threadstore.h"

Просмотреть файл

@ -8,29 +8,29 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "module.h" #include "module.h"
#include "new.h" #include "new.h"
#include "rhbinder.h" #include "rhbinder.h"
#include "stresslog.h" #include "stressLog.h"
#include "rhconfig.h" #include "RhConfig.h"
#endif // !DACCESS_COMPILE #endif // !DACCESS_COMPILE

Просмотреть файл

@ -8,29 +8,29 @@
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE
#ifndef DACCESS_COMPILE #ifndef DACCESS_COMPILE
#include "commontypes.h" #include "CommonTypes.h"
#include "daccess.h" #include "daccess.h"
#include "commonmacros.h" #include "CommonMacros.h"
#include "palredhawkcommon.h" #include "PalRedhawkCommon.h"
#include "palredhawk.h" #include "PalRedhawk.h"
#include "assert.h" #include "assert.h"
#include "static_check.h" #include "static_check.h"
#include "slist.h" #include "slist.h"
#include "gcrhinterface.h" #include "gcrhinterface.h"
#include "varint.h" #include "varint.h"
#include "regdisplay.h" #include "regdisplay.h"
#include "stackframeiterator.h" #include "StackFrameIterator.h"
#include "thread.h" #include "thread.h"
#include "holder.h" #include "holder.h"
#include "crst.h" #include "Crst.h"
#include "event.h" #include "event.h"
#include "rwlock.h" #include "RWLock.h"
#include "threadstore.h" #include "threadstore.h"
#include "runtimeinstance.h" #include "RuntimeInstance.h"
#include "new.h" #include "new.h"
#include "ObjectLayout.h" #include "ObjectLayout.h"
#include "TargetPtrs.h" #include "TargetPtrs.h"
#include "EEType.h" #include "eetype.h"
#include "slist.inl" #include "slist.inl"
#else #else
@ -563,4 +563,4 @@ Error:
*pWrittenCountOut = countWritten; *pWrittenCountOut = countWritten;
return Boolean_false; return Boolean_false;
} }
#endif // DACCESS_COMPILE #endif // DACCESS_COMPILE

Просмотреть файл

@ -143,4 +143,4 @@ UInt8 VarInt::s_shiftTab[16] =
32-7*2, // 13 32-7*2, // 13
32-7*1, // 14 32-7*1, // 14
0, // 15 0, // 15
}; };