mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-23 19:59:48 +00:00
Clean up MSVC visualization of LLVM pointer types
Create separate natvis ptr and int views for PointerIntPair. These are convenient in watch Windows and will be used by Clang visualizers to be checked in shortly Also, removed deref views as the MSVC na format has done the same thing natively since MSVC2013. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364723 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0c13ef20a5
commit
40cf40220c
@ -76,37 +76,28 @@ For later versions of Visual Studio, no setup is required.
|
||||
</Expand>
|
||||
</Type>
|
||||
|
||||
<!-- PointerIntPair. In addition to the regular view, it is possible to view just the pointer or just the int
|
||||
The same code is duplicated from the regular viewer to improve the performance of the common case -->
|
||||
<Type Name="llvm::PointerIntPair<*>">
|
||||
<DisplayString IncludeView="ptr">{($T1)(Value & $T5::PointerBitMask)}</DisplayString>
|
||||
<DisplayString IncludeView="int">{($T3)((Value >> $T5::IntShift) & $T5::IntMask)}</DisplayString>
|
||||
<DisplayString>{$T5::IntMask}: {($T1)(Value & $T5::PointerBitMask)} [{($T3)((Value >> $T5::IntShift) & $T5::IntMask)}]</DisplayString>
|
||||
<Expand>
|
||||
<Item Name="[ptr]">($T1)(Value & $T5::PointerBitMask)</Item>
|
||||
<Item Name="[int]">($T3)((Value >> $T5::IntShift) & $T5::IntMask)</Item>
|
||||
</Expand>
|
||||
</Type>
|
||||
<!-- PointerUnion types - In addition to the regular view, which displays the pointer, there is a "deref" view that
|
||||
displays the pointed to object, which is often needed by other visualizers -->
|
||||
<!-- PointerUnion types -->
|
||||
<Type Name="llvm::pointer_union_detail::PointerUnionMembers<*>">
|
||||
<DisplayString Optional="true" IncludeView="deref" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 0">
|
||||
{*($T4)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 0">
|
||||
{($T4)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" IncludeView="deref" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 1">
|
||||
{*($T5)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 1">
|
||||
{($T5)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" IncludeView="deref" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 2">
|
||||
{*($T6)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 2">
|
||||
{($T6)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" IncludeView="deref" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 3">
|
||||
{*($T7)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
<DisplayString Optional="true" Condition="((Val.Value>>$T2::InfoTy::IntShift) & $T2::InfoTy::IntMask) == 3">
|
||||
{($T7)(Val.Value & $T2::InfoTy::PointerBitMask)}
|
||||
</DisplayString>
|
||||
|
Loading…
Reference in New Issue
Block a user