2 * File types.c - datatype handling stuff for internal debugger.
4 * Copyright (C) 1997, Eric Youngdale.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 * Note: This really doesn't do much at the moment, but it forms the framework
21 * upon which full support for datatype handling will eventually be built.
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(winedbg
);
32 /******************************************************************
35 * Get rid of any potential typedef in the lvalue's type to get
36 * to the 'real' type (the one we can work upon).
38 BOOL
types_get_real_type(struct dbg_type
* type
, DWORD
* tag
)
40 if (type
->id
== dbg_itype_none
) return FALSE
;
43 if (!types_get_info(type
, TI_GET_SYMTAG
, tag
))
45 if (*tag
!= SymTagTypedef
) return TRUE
;
46 } while (types_get_info(type
, TI_GET_TYPE
, &type
->id
));
50 /******************************************************************
51 * types_extract_as_longlong
53 * Given a lvalue, try to get an integral (or pointer/address) value
56 LONGLONG
types_extract_as_longlong(const struct dbg_lvalue
* lvalue
, unsigned* psize
)
61 struct dbg_type type
= lvalue
->type
;
63 if (!types_get_real_type(&type
, &tag
))
64 RaiseException(DEBUG_STATUS_NOT_AN_INTEGER
, 0, 0, NULL
);
66 if (type
.id
== dbg_itype_segptr
)
68 return (long int)memory_to_linear_addr(&lvalue
->addr
);
71 if (psize
) *psize
= 0;
75 if (!types_get_info(&type
, TI_GET_LENGTH
, &size
) ||
76 !types_get_info(&type
, TI_GET_BASETYPE
, &bt
))
78 WINE_ERR("Couldn't get information\n");
79 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
81 if (size
> sizeof(rtn
))
83 WINE_ERR("Size too large (%s)\n", wine_dbgstr_longlong(size
));
84 RaiseException(DEBUG_STATUS_NOT_AN_INTEGER
, 0, 0, NULL
);
90 if (!be_cpu
->fetch_integer(lvalue
, (unsigned)size
, TRUE
, &rtn
))
91 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
94 if (!be_cpu
->fetch_integer(lvalue
, (unsigned)size
, FALSE
, &rtn
))
95 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
98 RaiseException(DEBUG_STATUS_NOT_AN_INTEGER
, 0, 0, NULL
);
100 if (psize
) *psize
= (unsigned)size
;
102 case SymTagPointerType
:
103 if (!be_cpu
->fetch_integer(lvalue
, sizeof(void*), FALSE
, &rtn
))
104 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
106 case SymTagArrayType
:
108 if (!be_cpu
->fetch_integer(lvalue
, sizeof(unsigned), FALSE
, &rtn
))
109 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
112 /* FIXME: we don't handle enum size */
113 if (!be_cpu
->fetch_integer(lvalue
, sizeof(unsigned), FALSE
, &rtn
))
114 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
116 case SymTagFunctionType
:
117 rtn
= (unsigned)memory_to_linear_addr(&lvalue
->addr
);
120 WINE_FIXME("Unsupported tag %u\n", tag
);
121 RaiseException(DEBUG_STATUS_NOT_AN_INTEGER
, 0, 0, NULL
);
128 /******************************************************************
129 * types_extract_as_integer
131 * Given a lvalue, try to get an integral (or pointer/address) value
134 long int types_extract_as_integer(const struct dbg_lvalue
* lvalue
)
136 return types_extract_as_longlong(lvalue
, NULL
);
139 /******************************************************************
140 * types_extract_as_address
144 void types_extract_as_address(const struct dbg_lvalue
* lvalue
, ADDRESS64
* addr
)
146 if (lvalue
->type
.id
== dbg_itype_segptr
&& lvalue
->type
.module
== 0)
148 *addr
= lvalue
->addr
;
152 addr
->Mode
= AddrModeFlat
;
153 addr
->Offset
= types_extract_as_longlong(lvalue
, NULL
);
157 /******************************************************************
161 BOOL
types_deref(const struct dbg_lvalue
* lvalue
, struct dbg_lvalue
* result
)
163 struct dbg_type type
= lvalue
->type
;
166 memset(result
, 0, sizeof(*result
));
167 result
->type
.id
= dbg_itype_none
;
168 result
->type
.module
= 0;
171 * Make sure that this really makes sense.
173 if (!types_get_real_type(&type
, &tag
) || tag
!= SymTagPointerType
||
174 !memory_read_value(lvalue
, sizeof(result
->addr
.Offset
), &result
->addr
.Offset
) ||
175 !types_get_info(&type
, TI_GET_TYPE
, &result
->type
.id
))
177 result
->type
.module
= type
.module
;
178 result
->cookie
= DLV_TARGET
;
179 /* FIXME: this is currently buggy.
180 * there is no way to tell were the deref:ed value is...
182 * x is a pointer to struct s, x being on the stack
183 * => lvalue is in debuggee, result is in debugger
184 * x is a pointer to struct s, x being optimized into a reg
185 * => lvalue is debugger, result is debuggee
186 * x is a pointer to internal variable x
187 * => lvalue is debugger, result is debuggee
188 * so we force debuggee address space, because dereferencing pointers to
189 * internal variables is very unlikely. A correct fix would be
192 result
->addr
.Mode
= AddrModeFlat
;
196 /******************************************************************
197 * types_get_udt_element_lvalue
199 * Implement a structure derefencement
201 static BOOL
types_get_udt_element_lvalue(struct dbg_lvalue
* lvalue
,
202 const struct dbg_type
* type
, long int* tmpbuf
)
204 DWORD offset
, bitoffset
;
210 types_get_info(type
, TI_GET_TYPE
, &lvalue
->type
.id
);
211 lvalue
->type
.module
= type
->module
;
212 if (!types_get_info(type
, TI_GET_OFFSET
, &offset
)) return FALSE
;
213 lvalue
->addr
.Offset
+= offset
;
215 if (types_get_info(type
, TI_GET_BITPOSITION
, &bitoffset
))
217 types_get_info(type
, TI_GET_LENGTH
, &length
);
218 /* FIXME: this test isn't sufficient, depending on start of bitfield
219 * (ie a 32 bit field can spread across 5 bytes)
221 if (length
> 8 * sizeof(*tmpbuf
)) return FALSE
;
222 lvalue
->addr
.Offset
+= bitoffset
>> 3;
224 * Bitfield operation. We have to extract the field and store
225 * it in a temporary buffer so that we get it all right.
227 if (!memory_read_value(lvalue
, sizeof(*tmpbuf
), tmpbuf
)) return FALSE
;
228 mask
= 0xffffffff << (DWORD
)length
;
229 *tmpbuf
>>= bitoffset
& 7;
232 lvalue
->cookie
= DLV_HOST
;
233 lvalue
->addr
.Offset
= (DWORD
)tmpbuf
;
236 * OK, now we have the correct part of the number.
237 * Check to see whether the basic type is signed or not, and if so,
238 * we need to sign extend the number.
240 if (types_get_info(&lvalue
->type
, TI_GET_BASETYPE
, &bt
) &&
241 bt
== btInt
&& (*tmpbuf
& (1 << ((DWORD
)length
- 1))))
248 if (!memory_read_value(lvalue
, sizeof(*tmpbuf
), tmpbuf
)) return FALSE
;
253 /******************************************************************
254 * types_udt_find_element
257 BOOL
types_udt_find_element(struct dbg_lvalue
* lvalue
, const char* name
, long int* tmpbuf
)
260 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
261 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
264 struct dbg_type type
;
266 if (!types_get_info(&lvalue
->type
, TI_GET_SYMTAG
, &tag
) ||
270 if (types_get_info(&lvalue
->type
, TI_GET_CHILDRENCOUNT
, &count
))
275 fcp
->Count
= min(count
, 256);
276 if (types_get_info(&lvalue
->type
, TI_FINDCHILDREN
, fcp
))
279 type
.module
= lvalue
->type
.module
;
280 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
283 type
.id
= fcp
->ChildId
[i
];
284 types_get_info(&type
, TI_GET_SYMNAME
, &ptr
);
286 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
287 HeapFree(GetProcessHeap(), 0, ptr
);
288 if (strcmp(tmp
, name
)) continue;
290 return types_get_udt_element_lvalue(lvalue
, &type
, tmpbuf
);
293 count
-= min(count
, 256);
300 /******************************************************************
303 * Grab an element from an array
305 BOOL
types_array_index(const struct dbg_lvalue
* lvalue
, int index
,
306 struct dbg_lvalue
* result
)
308 struct dbg_type type
= lvalue
->type
;
312 if (!types_get_real_type(&type
, &tag
)) return FALSE
;
315 case SymTagArrayType
:
316 types_get_info(&type
, TI_GET_COUNT
, &count
);
317 if (index
< 0 || index
>= count
) return FALSE
;
319 case SymTagPointerType
:
320 /* Contents of array share same data (addr mode, module...) */
323 * Get the base type, so we know how much to index by.
325 types_get_info(&type
, TI_GET_TYPE
, &result
->type
.id
);
326 types_get_info(&result
->type
, TI_GET_LENGTH
, &length
);
327 memory_read_value(lvalue
, sizeof(result
->addr
.Offset
), &result
->addr
.Offset
);
328 result
->addr
.Offset
+= index
* (DWORD
)length
;
338 unsigned long result
; /* out: the found type */
339 enum SymTagEnum tag
; /* in: the tag to look for */
342 unsigned long typeid; /* when tag is SymTagUDT */
343 const char* name
; /* when tag is SymTagPointerType */
347 static BOOL CALLBACK
types_cb(PSYMBOL_INFO sym
, ULONG size
, void* _user
)
349 struct type_find_t
* user
= (struct type_find_t
*)_user
;
351 struct dbg_type type
;
354 if (sym
->Tag
== user
->tag
)
359 if (!strcmp(user
->u
.name
, sym
->Name
))
361 user
->result
= sym
->TypeIndex
;
365 case SymTagPointerType
:
366 type
.module
= sym
->ModBase
;
367 type
.id
= sym
->TypeIndex
;
368 if (types_get_info(&type
, TI_GET_TYPE
, &type_id
) && type_id
== user
->u
.typeid)
370 user
->result
= sym
->TypeIndex
;
380 /******************************************************************
383 * Should look up in module based at linear whether (typeid*) exists
384 * Otherwise, we could create it locally
386 struct dbg_type
types_find_pointer(const struct dbg_type
* type
)
388 struct type_find_t f
;
391 f
.result
= dbg_itype_none
;
392 f
.tag
= SymTagPointerType
;
393 f
.u
.typeid = type
->id
;
394 SymEnumTypes(dbg_curr_process
->handle
, type
->module
, types_cb
, &f
);
395 ret
.module
= type
->module
;
400 /******************************************************************
403 * Should look up in the module based at linear address whether a type
404 * named 'name' and with the correct tag exists
406 struct dbg_type
types_find_type(unsigned long linear
, const char* name
, enum SymTagEnum tag
)
409 struct type_find_t f
;
412 f
.result
= dbg_itype_none
;
415 SymEnumTypes(dbg_curr_process
->handle
, linear
, types_cb
, &f
);
421 /***********************************************************************
424 * Implementation of the 'print' command.
426 void print_value(const struct dbg_lvalue
* lvalue
, char format
, int level
)
428 struct dbg_type type
= lvalue
->type
;
429 struct dbg_lvalue lvalue_field
;
435 if (!types_get_real_type(&type
, &tag
))
437 WINE_FIXME("---error\n");
441 if (type
.id
== dbg_itype_none
)
443 /* No type, just print the addr value */
444 print_bare_address(&lvalue
->addr
);
448 if (format
== 'i' || format
== 's' || format
== 'w' || format
== 'b' || format
== 'g')
450 dbg_printf("Format specifier '%c' is meaningless in 'print' command\n", format
);
458 case SymTagPointerType
:
459 /* FIXME: this in not 100% optimal (as we're going through the typedef handling
462 print_basic(lvalue
, format
);
465 if (types_get_info(&type
, TI_GET_CHILDRENCOUNT
, &count
))
467 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
468 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
472 struct dbg_type sub_type
;
478 fcp
->Count
= min(count
, 256);
479 if (types_get_info(&type
, TI_FINDCHILDREN
, fcp
))
481 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
484 sub_type
.module
= type
.module
;
485 sub_type
.id
= fcp
->ChildId
[i
];
486 types_get_info(&sub_type
, TI_GET_SYMNAME
, &ptr
);
488 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
489 dbg_printf("%s=", tmp
);
490 HeapFree(GetProcessHeap(), 0, ptr
);
491 lvalue_field
= *lvalue
;
492 if (types_get_udt_element_lvalue(&lvalue_field
, &sub_type
, &tmpbuf
))
494 print_value(&lvalue_field
, format
, level
+ 1);
496 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
499 count
-= min(count
, 256);
505 case SymTagArrayType
:
507 * Loop over all of the entries, printing stuff as we go.
510 types_get_info(&type
, TI_GET_COUNT
, &count
);
511 types_get_info(&type
, TI_GET_LENGTH
, &size
);
518 * Special handling for character arrays.
520 /* FIXME should check basic type here (should be a char!!!!)... */
521 len
= min(count
, sizeof(buffer
));
522 memory_get_string(dbg_curr_process
,
523 memory_to_linear_addr(&lvalue
->addr
),
524 lvalue
->cookie
== DLV_TARGET
, TRUE
, buffer
, len
);
525 dbg_printf("\"%s%s\"", buffer
, (len
< count
) ? "..." : "");
528 lvalue_field
= *lvalue
;
529 types_get_info(&type
, TI_GET_TYPE
, &lvalue_field
.type
.id
);
531 for (i
= 0; i
< count
; i
++)
533 print_value(&lvalue_field
, format
, level
+ 1);
534 lvalue_field
.addr
.Offset
+= size
/ count
;
535 dbg_printf((i
== count
- 1) ? "}" : ", ");
538 case SymTagFunctionType
:
539 dbg_printf("Function ");
540 print_bare_address(&lvalue
->addr
);
542 types_print_type(&type
, FALSE
);
545 lvalue_field
= *lvalue
;
546 types_get_info(&lvalue
->type
, TI_GET_TYPE
, &lvalue_field
.type
.id
);
547 print_value(&lvalue_field
, format
, level
);
550 WINE_FIXME("Unknown tag (%u)\n", tag
);
551 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
557 if (level
== 0) dbg_printf("\n");
560 static BOOL CALLBACK
print_types_cb(PSYMBOL_INFO sym
, ULONG size
, void* ctx
)
562 struct dbg_type type
;
563 type
.module
= sym
->ModBase
;
564 type
.id
= sym
->TypeIndex
;
565 dbg_printf("Mod: %08x ID: %08lx \n", type
.module
, type
.id
);
566 types_print_type(&type
, TRUE
);
571 static BOOL CALLBACK
print_types_mod_cb(PCSTR mod_name
, ULONG base
, PVOID ctx
)
573 return SymEnumTypes(dbg_curr_process
->handle
, base
, print_types_cb
, ctx
);
576 int print_types(void)
578 if (!dbg_curr_process
)
580 dbg_printf("No known process, cannot print types\n");
583 SymEnumerateModules(dbg_curr_process
->handle
, print_types_mod_cb
, NULL
);
587 int types_print_type(const struct dbg_type
* type
, BOOL details
)
592 DWORD tag
, udt
, count
;
593 struct dbg_type subtype
;
595 if (type
->id
== dbg_itype_none
|| !types_get_info(type
, TI_GET_SYMTAG
, &tag
))
597 dbg_printf("--invalid--<%lxh>--", type
->id
);
601 if (types_get_info(type
, TI_GET_SYMNAME
, &ptr
) && ptr
)
603 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
605 HeapFree(GetProcessHeap(), 0, ptr
);
607 else name
= "--none--";
612 if (details
) dbg_printf("Basic<%s>", name
); else dbg_printf("%s", name
);
614 case SymTagPointerType
:
615 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
616 subtype
.module
= type
->module
;
617 types_print_type(&subtype
, FALSE
);
621 types_get_info(type
, TI_GET_UDTKIND
, &udt
);
624 case UdtStruct
: dbg_printf("struct %s", name
); break;
625 case UdtUnion
: dbg_printf("union %s", name
); break;
626 case UdtClass
: dbg_printf("class %s", name
); break;
627 default: WINE_ERR("Unsupported UDT type (%d) for %s\n", udt
, name
); break;
630 types_get_info(type
, TI_GET_CHILDRENCOUNT
, &count
))
632 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
633 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
637 struct dbg_type type_elt
;
643 fcp
->Count
= min(count
, 256);
644 if (types_get_info(type
, TI_FINDCHILDREN
, fcp
))
646 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
649 type_elt
.module
= type
->module
;
650 type_elt
.id
= fcp
->ChildId
[i
];
651 types_get_info(&type_elt
, TI_GET_SYMNAME
, &ptr
);
653 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
654 HeapFree(GetProcessHeap(), 0, ptr
);
655 dbg_printf("%s", tmp
);
656 if (types_get_info(&type_elt
, TI_GET_TYPE
, &type_elt
.id
))
659 types_print_type(&type_elt
, details
);
661 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
664 count
-= min(count
, 256);
670 case SymTagArrayType
:
671 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
672 subtype
.module
= type
->module
;
673 types_print_type(&subtype
, details
);
674 dbg_printf(" %s[]", name
);
677 dbg_printf("enum %s", name
);
679 case SymTagFunctionType
:
680 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
681 /* is the returned type the same object as function sig itself ? */
682 if (subtype
.id
!= type
->id
)
684 subtype
.module
= type
->module
;
685 types_print_type(&subtype
, FALSE
);
689 dbg_printf("<ret_type=self>");
691 dbg_printf(" (*%s)(", name
);
692 if (types_get_info(type
, TI_GET_CHILDRENCOUNT
, &count
))
694 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
695 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
701 fcp
->Count
= min(count
, 256);
702 if (types_get_info(type
, TI_FINDCHILDREN
, fcp
))
704 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
706 subtype
.id
= fcp
->ChildId
[i
];
707 types_get_info(&subtype
, TI_GET_TYPE
, &subtype
.id
);
708 types_print_type(&subtype
, FALSE
);
709 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
712 count
-= min(count
, 256);
722 WINE_ERR("Unknown type %u for %s\n", tag
, name
);
729 /* helper to typecast pInfo to its expected type (_t) */
730 #define X(_t) (*((_t*)pInfo))
732 BOOL
types_get_info(const struct dbg_type
* type
, IMAGEHLP_SYMBOL_TYPE_INFO ti
, void* pInfo
)
734 if (type
->id
== dbg_itype_none
) return FALSE
;
735 if (type
->module
!= 0)
738 ret
= SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, ti
, pInfo
);
740 SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, TI_GET_SYMTAG
, &tag
) &&
741 tag
== SymTagBaseType
&&
742 SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, TI_GET_BASETYPE
, &bt
))
744 static const WCHAR voidW
[] = {'v','o','i','d','\0'};
745 static const WCHAR charW
[] = {'c','h','a','r','\0'};
746 static const WCHAR wcharW
[] = {'W','C','H','A','R','\0'};
747 static const WCHAR intW
[] = {'i','n','t','\0'};
748 static const WCHAR uintW
[] = {'u','n','s','i','g','n','e','d',' ','i','n','t','\0'};
749 static const WCHAR floatW
[] = {'f','l','o','a','t','\0'};
750 static const WCHAR boolW
[] = {'b','o','o','l','\0'};
751 static const WCHAR longW
[] = {'l','o','n','g',' ','i','n','t','\0'};
752 static const WCHAR ulongW
[] = {'u','n','s','i','g','n','e','d',' ','l','o','n','g',' ','i','n','t','\0'};
753 static const WCHAR complexW
[] = {'c','o','m','p','l','e','x','\0'};
754 const WCHAR
* name
= NULL
;
758 case btVoid
: name
= voidW
; break;
759 case btChar
: name
= charW
; break;
760 case btWChar
: name
= wcharW
; break;
761 case btInt
: name
= intW
; break;
762 case btUInt
: name
= uintW
; break;
763 case btFloat
: name
= floatW
; break;
764 case btBool
: name
= boolW
; break;
765 case btLong
: name
= longW
; break;
766 case btULong
: name
= ulongW
; break;
767 case btComplex
: name
= complexW
; break;
768 default: WINE_FIXME("Unsupported basic type %u\n", bt
); return FALSE
;
770 X(WCHAR
*) = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(name
) + 1) * sizeof(WCHAR
));
773 lstrcpyW(X(WCHAR
*), name
);
780 assert(type
->id
>= dbg_itype_first
);
784 case dbg_itype_unsigned_int
:
787 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
788 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
789 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
790 default: WINE_FIXME("unsupported %u for u-int\n", ti
); return FALSE
;
793 case dbg_itype_signed_int
:
796 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
797 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
798 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
799 default: WINE_FIXME("unsupported %u for s-int\n", ti
); return FALSE
;
802 case dbg_itype_unsigned_short_int
:
805 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
806 case TI_GET_LENGTH
: X(DWORD64
) = 2; break;
807 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
808 default: WINE_FIXME("unsupported %u for u-short int\n", ti
); return FALSE
;
811 case dbg_itype_signed_short_int
:
814 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
815 case TI_GET_LENGTH
: X(DWORD64
) = 2; break;
816 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
817 default: WINE_FIXME("unsupported %u for s-short int\n", ti
); return FALSE
;
820 case dbg_itype_unsigned_char_int
:
823 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
824 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
825 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
826 default: WINE_FIXME("unsupported %u for u-char int\n", ti
); return FALSE
;
829 case dbg_itype_signed_char_int
:
832 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
833 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
834 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
835 default: WINE_FIXME("unsupported %u for s-char int\n", ti
); return FALSE
;
841 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
842 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
843 case TI_GET_BASETYPE
: X(DWORD
) = btChar
; break;
844 default: WINE_FIXME("unsupported %u for char int\n", ti
); return FALSE
;
847 case dbg_itype_astring
:
850 case TI_GET_SYMTAG
: X(DWORD
) = SymTagPointerType
; break;
851 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
852 case TI_GET_TYPE
: X(DWORD
) = dbg_itype_char
; break;
853 default: WINE_FIXME("unsupported %u for a string\n", ti
); return FALSE
;
856 case dbg_itype_segptr
:
859 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
860 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
861 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
862 default: WINE_FIXME("unsupported %u for seg-ptr\n", ti
); return FALSE
;
865 default: WINE_FIXME("unsupported type id 0x%lx\n", type
->id
);