forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.inl
More file actions
56 lines (44 loc) · 1.47 KB
/
controller.inl
File metadata and controls
56 lines (44 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//*****************************************************************************
// File: controller.inl
//
//
// Inline definitions for the Left-Side of the CLR debugging services
// This is logically part of the header file.
//
//*****************************************************************************
#ifndef CONTROLLER_INL_
#define CONTROLLER_INL_
inline BOOL DebuggerControllerPatch::IsBreakpointPatch()
{
return (controller->GetDCType() == DEBUGGER_CONTROLLER_BREAKPOINT);
}
inline BOOL DebuggerControllerPatch::IsStepperPatch()
{
return (controller->IsStepperDCType());
}
inline DebuggerPatchKind DebuggerControllerPatch::GetKind()
{
return kind;
}
inline BOOL DebuggerControllerPatch::IsILMasterPatch()
{
LIMITED_METHOD_CONTRACT;
return (kind == PATCH_KIND_IL_MASTER);
}
inline BOOL DebuggerControllerPatch::IsILSlavePatch()
{
LIMITED_METHOD_CONTRACT;
return (kind == PATCH_KIND_IL_SLAVE);
}
inline BOOL DebuggerControllerPatch::IsManagedPatch()
{
return (IsILMasterPatch() || IsILSlavePatch() || kind == PATCH_KIND_NATIVE_MANAGED);
}
inline BOOL DebuggerControllerPatch::IsNativePatch()
{
return (kind == PATCH_KIND_NATIVE_MANAGED || kind == PATCH_KIND_NATIVE_UNMANAGED || (IsILSlavePatch() && !offsetIsIL));
}
#endif // CONTROLLER_INL_