mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Updated DbgVis to support comptime debugging
This commit is contained in:
parent
fd9fa3ad89
commit
d9cddda71b
1 changed files with 14 additions and 13 deletions
27
IDE/dist/BeefDbgVis.toml
vendored
27
IDE/dist/BeefDbgVis.toml
vendored
|
@ -15,10 +15,10 @@ ValuePointer = "/*(mMethodId < 0) ? &this :*/ __cast(\"_BF_DeferredData_\", mMet
|
||||||
|
|
||||||
[[Type]]
|
[[Type]]
|
||||||
Name = "System.Event<*>"
|
Name = "System.Event<*>"
|
||||||
DisplayString = "{{ data={(System.Object)(mData & ~3)} }}"
|
DisplayString = "{{ data={__cast(\"System.Object\", mData & ~3)} }}"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Name = "[target]"
|
Name = "[target]"
|
||||||
Value = "(System.Object)(mData)"
|
Value = "__cast(\"System.Object\", mData)"
|
||||||
Condition = "(mData & 1) == 0"
|
Condition = "(mData & 1) == 0"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Name = "[target]"
|
Name = "[target]"
|
||||||
|
@ -97,41 +97,42 @@ DisplayString = "{mMessage,s8}"
|
||||||
Name = "System.Variant"
|
Name = "System.Variant"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "mStructType == 0"
|
Condition = "mStructType == 0"
|
||||||
String = "{{ UnownedObj: {(System.Object)mData} }}"
|
String = "{{ UnownedObj: {__bitcast(\"System.Object\", mData)} }}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "mStructType == 1"
|
Condition = "mStructType == 1"
|
||||||
String = "{{ OwnedObj: {(System.Object)mData} }}"
|
String = "{{ OwnedObj: {__bitcast(\"System.Object\", mData)} }}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "mStructType == 2"
|
Condition = "mStructType == 2"
|
||||||
String = "{{ Null: {__cast((System.Type)mData, null)} }}"
|
String = "{{ Null: {__cast(mData, null)} }}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "mStructType & 3 == 0"
|
Condition = "mStructType & 3 == 0"
|
||||||
String = "{{ InlineValue: {__bitcast((System.Type)(mStructType & ~3), mData)} }}"
|
String = "{{ InlineValue: {__bitcast(mStructType & ~3, mData)} }}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
Condition = "mStructType & 3 == 1"
|
Condition = "mStructType & 3 == 1"
|
||||||
String = "{{ AllocValue: {*__cast((System.Type)(mStructType & ~3), \"*\", mData)} }}"
|
String = "{{ AllocValue: {*__cast(mStructType & ~3, \"*\", mData)} }}"
|
||||||
[[Type.DisplayString]]
|
[[Type.DisplayString]]
|
||||||
String = "{{ RefValue: {*__cast((System.Type)(mStructType & ~3), \"*\", mData)} }}"
|
String = "{{ RefValue: {*__cast(mStructType & ~3, \"*\", mData)} }}"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "mStructType == 0"
|
Condition = "mStructType == 0"
|
||||||
Name = "[UnownedObj]"
|
Name = "[UnownedObj]"
|
||||||
Value = "(System.Object)mData"
|
Value = "__bitcast(\"System.Object\", mData)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "mStructType == 1"
|
Condition = "mStructType == 1"
|
||||||
Name = "[OwnedObj]"
|
Name = "[OwnedObj]"
|
||||||
Value = "(System.Object)mData"
|
Value = "__bitcast(\"System.Object\", mData)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "mStructType == 3"
|
Condition = "mStructType == 3"
|
||||||
Name = "[Null]"
|
Name = "[Null]"
|
||||||
Value = "__cast((System.Type)mData, null)"
|
Value = "__cast(mData, null)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "(mStructType != 0) && (mStructType & 3 == 0)"
|
Condition = "(mStructType != 0) && (mStructType & 3 == 0)"
|
||||||
Name = "[InlineValue]"
|
Name = "[InlineValue]"
|
||||||
Value = "__bitcast((System.Type)(mStructType & ~3), mData)"
|
Value = "__bitcast(mStructType & ~3, mData)"
|
||||||
|
#Value = "__bitcast(mStructType & ~3, mData)"
|
||||||
[[Type.Expand.Item]]
|
[[Type.Expand.Item]]
|
||||||
Condition = "(mStructType != 0) && (mStructType & 3 != 0)"
|
Condition = "(mStructType != 0) && (mStructType & 3 != 0)"
|
||||||
Name = "[AllocValue]"
|
Name = "[AllocValue]"
|
||||||
Value = "*__cast((System.Type)(mStructType & ~3), \"*\", mData)"
|
Value = "*__cast(mStructType & ~3, \"*\", mData)"
|
||||||
|
|
||||||
[[Type]]
|
[[Type]]
|
||||||
Name = "*?"
|
Name = "*?"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue