Skip to content

Commit f77c4bd

Browse files
committed
Merged main into live
2 parents a440ea4 + 999453f commit f77c4bd

File tree

64 files changed

+169
-111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+169
-111
lines changed

docs/debugger/debug-interface-access/idiasymbol-get-customcallingconvention.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that specifies whether the function has a custom calling convention."
2+
description: Retrieves a flag that specifies whether the function has a custom calling convention.
33
title: "IDiaSymbol::get_customCallingConvention"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_customCallingConvention
1617

1718
Retrieves a flag that specifies whether the function has a custom calling convention.

docs/debugger/debug-interface-access/idiasymbol-get-databytes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the data bytes of an OEM symbol."
2+
description: Retrieves the data bytes of an OEM symbol.
33
title: "IDiaSymbol::get_dataBytes"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataBytes
1617

1718
Retrieves the data bytes of an OEM symbol.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_dataBytes ( 
23+
HRESULT get_dataBytes (
2324
DWORD cbData,
2425
DWORD* pcbData,
2526
BYTE data[]

docs/debugger/debug-interface-access/idiasymbol-get-dataexport.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether this export is DATA."
2+
description: Retrieves a flag indicating whether this export is DATA.
33
title: "IDiaSymbol::get_dataExport"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataExport
1617

1718
Retrieves a flag indicating whether this export is `DATA`.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_privateExport ( 
23+
HRESULT get_privateExport (
2324
BOOL* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-datakind.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the variable classification of a data symbol."
2+
description: Retrieves the variable classification of a data symbol.
33
title: "IDiaSymbol::get_dataKind"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_dataKind
1617

1718
Retrieves the variable classification of a data symbol.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_dataKind ( 
23+
HRESULT get_dataKind (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-editandcontinueenabled.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether the module was compiled with the /Z7, /Zi, /ZI (Debug Information Format)) compiler switch."
2+
description: Retrieves a flag indicating whether the module was compiled with the /Z7, /Zi, /ZI (Debug Information Format)) compiler switch.
33
title: "IDiaSymbol::get_editAndContinueEnabled"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_editAndContinueEnabled
1617

1718
Retrieves a flag indicating whether the module was compiled with the [/Z7, /Zi, /ZI (Debug Information Format)](/cpp/build/reference/z7-zi-zi-debug-information-format) compiler switch.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_editAndContinueEnabled ( 
23+
HRESULT get_editAndContinueEnabled (
2324
BOOL* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddressoffset.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the section offset of the exception handler of this function."
2+
description: Retrieves the section offset of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerAddressOffset"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerAddressOffset
1617

1718
Retrieves the section offset of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerAddressOffset ( 
23+
HRESULT get_exceptionHandlerAddressOffset (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandleraddresssection.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the section number of the exception handler of this function."
2+
description: Retrieves the section number of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerAddressSection"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerAddressSection
1617

1718
Retrieves the section number of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerAddressSection ( 
23+
HRESULT get_exceptionHandlerAddressSection (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlerrelativevirtualaddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the relative virtual address (RVA) of the exception handler of this function."
2+
description: Retrieves the relative virtual address (RVA) of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerRelativeVirtualAddress"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerRelativeVirtualAddress
1617

1718
Retrieves the relative virtual address (RVA) of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerRelativeVirtualAddress ( 
23+
HRESULT get_exceptionHandlerRelativeVirtualAddress (
2324
DWORD* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exceptionhandlervirtualaddress.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the virtual address of the exception handler of this function."
2+
description: Retrieves the virtual address of the exception handler of this function.
33
title: "IDiaSymbol::get_exceptionHandlerVirtualAddress"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exceptionHandlerVirtualAddress
1617

1718
Retrieves the virtual address of the exception handler of this function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exceptionHandlerVirtualAddress ( 
23+
HRESULT get_exceptionHandlerVirtualAddress (
2324
ULONGLONG* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-exporthasexplicitlyassignedordinal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether this export has an explicitly assigned ordinal."
2+
description: Retrieves a flag indicating whether this export has an explicitly assigned ordinal.
33
title: "IDiaSymbol::get_exportHasExplicitlyAssignedOrdinal"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exportHasExplicitlyAssignedOrdinal
1617

1718
Retrieves a flag indicating whether this export has an explicitly assigned ordinal.

docs/debugger/debug-interface-access/idiasymbol-get-exportisforwarder.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag indicating whether this export is a forwarder."
2+
description: Retrieves a flag indicating whether this export is a forwarder.
33
title: "IDiaSymbol::get_exportIsForwarder"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_exportIsForwarder
1617

1718
Retrieves a flag indicating whether this export is a forwarder.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_exportIsForwarder ( 
23+
HRESULT get_exportIsForwarder (
2324
BOOL* pRetVal
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-farreturn.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that specifies whether the function contains a far return."
2+
description: Retrieves a flag that specifies whether the function contains a far return.
33
title: "IDiaSymbol::get_farReturn"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,6 +12,7 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_farReturn
1617

1718
Retrieves a flag that specifies whether the function contains a far return.

docs/debugger/debug-interface-access/idiasymbol-get-finallivestaticsize.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the final static size of live function, after inlining."
2+
description: Retrieves the final static size of live function, after inlining.
33
title: "IDiaSymbol::get_finalLiveStaticSize"
44
ms.date: "07/09/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_finalLiveStaticSize
1617

1718
Retrieves the final static size of live function, after inlining.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_finalLiveStaticSize ( 
23+
HRESULT get_finalLiveStaticSize (
2324
DWORD* pRetVal
2425
);
2526
```
@@ -39,7 +40,7 @@ HRESULT get_finalLiveStaticSize ( 
3940
4041
## Remarks
4142

42-
This is the number of live instructions in the function. For the training profile in use, only instructions that are executed at least once are counted as live. To get the total size of the function, including dead instructions (i.e. instructions never executed by the training data), use [`IDiaSymbol::get_staticSize`](../../debugger/debug-interface-access/idiasymbol-get-staticsize.md). To get the number of instructions executed in this function use [`IDiaSymbol::get_PGODynamicInstructionCount`](../../debugger/debug-interface-access/idiasymbol-get-pgodynamicinstructioncount.md).
43+
This is the number of live instructions in the function. For the training profile in use, only instructions that are executed at least once are counted as live. To get the total size of the function, including dead instructions (that is, instructions never executed by the training data), use [`IDiaSymbol::get_staticSize`](../../debugger/debug-interface-access/idiasymbol-get-staticsize.md). To get the number of instructions executed in this function use [`IDiaSymbol::get_PGODynamicInstructionCount`](../../debugger/debug-interface-access/idiasymbol-get-pgodynamicinstructioncount.md).
4344

4445
## See also
4546

docs/debugger/debug-interface-access/idiasymbol-get-framepadoffset.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the offset of the stack pad from the frame pointer register."
2+
description: Retrieves the offset of the stack pad from the frame pointer register.
33
title: "IDiaSymbol::get_framePadOffset"
44
ms.date: "04/27/2021"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_framePadOffset
1617

1718
Retrieves the offset of the stack pad from the frame pointer register.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_framePadOffset ( 
23+
HRESULT get_framePadOffset (
2324
DWORD* pPadOffset
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-framepadsize.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the extra pad size added to each function."
2+
description: Retrieves the extra pad size added to each function.
33
title: "IDiaSymbol::get_framePadSize"
44
ms.date: "04/27/2021"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_framePadSize
1617

1718
Retrieves the extra pad size added to each function.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_framePadSize ( 
23+
HRESULT get_framePadSize (
2324
DWORD* pPadSize
2425
);
2526
```

docs/debugger/debug-interface-access/idiasymbol-get-framepointerpresent.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves a flag that specifies whether the frame pointer is present."
2+
description: Retrieves a flag that specifies whether the frame pointer is present.
33
title: "IDiaSymbol::get_framePointerPresent"
44
ms.date: "11/04/2016"
55
ms.topic: "reference"
@@ -12,22 +12,23 @@ ms.author: "mikejo"
1212
manager: mijacobs
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_framePointerPresent
1617

1718
Retrieves a flag that specifies whether the frame pointer is present. Use when the [SymTagEnum Enumeration](../../debugger/debug-interface-access/symtagenum.md) is set to `SymTagFunction`.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_framePointerPresent( 
23+
HRESULT get_framePointerPresent(
2324
BOOL* pRetVal
2425
);
2526
```
2627

2728
#### Parameters
2829
`pRetVal`
2930

30-
[out] ] Returns `TRUE` if the frame pointer is present; otherwise, returns `FALSE`.
31+
[out]] Returns `TRUE` if the frame pointer is present; otherwise, returns `FALSE`.
3132

3233
## Return Value
3334
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or an error code.

docs/debugger/debug-interface-access/idiasymbol-get-framesize.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: "Retrieves the frame size."
2+
description: Retrieves the frame size.
33
title: "IDiaSymbol::get_frameSize"
44
ms.date: "07/11/2024"
55
ms.topic: "reference"
@@ -12,14 +12,15 @@ ms.author: "grantri"
1212
manager: twhitney
1313
ms.subservice: debug-diagnostics
1414
---
15+
1516
# IDiaSymbol::get_frameSize
1617

1718
Retrieves the frame size.
1819

1920
## Syntax
2021

2122
```C++
22-
HRESULT get_frameSize ( 
23+
HRESULT get_frameSize (
2324
DWORD* pRetVal
2425
);
2526
```

0 commit comments

Comments
 (0)