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
= (ULONG_PTR
)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
= (ULONG_PTR
)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_real_type(&lvalue
->type
, &tag
) || tag
!= SymTagUDT
)
269 if (types_get_info(&lvalue
->type
, TI_GET_CHILDRENCOUNT
, &count
))
274 fcp
->Count
= min(count
, 256);
275 if (types_get_info(&lvalue
->type
, TI_FINDCHILDREN
, fcp
))
278 type
.module
= lvalue
->type
.module
;
279 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
282 type
.id
= fcp
->ChildId
[i
];
283 types_get_info(&type
, TI_GET_SYMNAME
, &ptr
);
285 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
286 HeapFree(GetProcessHeap(), 0, ptr
);
287 if (strcmp(tmp
, name
)) continue;
289 return types_get_udt_element_lvalue(lvalue
, &type
, tmpbuf
);
292 count
-= min(count
, 256);
299 /******************************************************************
302 * Grab an element from an array
304 BOOL
types_array_index(const struct dbg_lvalue
* lvalue
, int index
,
305 struct dbg_lvalue
* result
)
307 struct dbg_type type
= lvalue
->type
;
311 if (!types_get_real_type(&type
, &tag
)) return FALSE
;
312 /* Contents of array share same data (addr mode, module...) */
316 case SymTagArrayType
:
317 types_get_info(&type
, TI_GET_COUNT
, &count
);
318 if (index
< 0 || index
>= count
) return FALSE
;
320 case SymTagPointerType
:
321 memory_read_value(lvalue
, sizeof(result
->addr
.Offset
), &result
->addr
.Offset
);
327 * Get the base type, so we know how much to index by.
329 types_get_info(&type
, TI_GET_TYPE
, &result
->type
.id
);
330 types_get_info(&result
->type
, TI_GET_LENGTH
, &length
);
331 result
->addr
.Offset
+= index
* (DWORD
)length
;
337 unsigned long result
; /* out: the found type */
338 enum SymTagEnum tag
; /* in: the tag to look for */
341 unsigned long typeid; /* when tag is SymTagUDT */
342 const char* name
; /* when tag is SymTagPointerType */
346 static BOOL CALLBACK
types_cb(PSYMBOL_INFO sym
, ULONG size
, void* _user
)
348 struct type_find_t
* user
= _user
;
350 struct dbg_type type
;
353 if (sym
->Tag
== user
->tag
)
358 if (!strcmp(user
->u
.name
, sym
->Name
))
360 user
->result
= sym
->TypeIndex
;
364 case SymTagPointerType
:
365 type
.module
= sym
->ModBase
;
366 type
.id
= sym
->TypeIndex
;
367 if (types_get_info(&type
, TI_GET_TYPE
, &type_id
) && type_id
== user
->u
.typeid)
369 user
->result
= sym
->TypeIndex
;
379 /******************************************************************
382 * Should look up in module based at linear whether (typeid*) exists
383 * Otherwise, we could create it locally
385 struct dbg_type
types_find_pointer(const struct dbg_type
* type
)
387 struct type_find_t f
;
390 f
.result
= dbg_itype_none
;
391 f
.tag
= SymTagPointerType
;
392 f
.u
.typeid = type
->id
;
393 SymEnumTypes(dbg_curr_process
->handle
, type
->module
, types_cb
, &f
);
394 ret
.module
= type
->module
;
399 /******************************************************************
402 * Should look up in the module based at linear address whether a type
403 * named 'name' and with the correct tag exists
405 struct dbg_type
types_find_type(unsigned long linear
, const char* name
, enum SymTagEnum tag
)
408 struct type_find_t f
;
411 f
.result
= dbg_itype_none
;
414 SymEnumTypes(dbg_curr_process
->handle
, linear
, types_cb
, &f
);
420 /***********************************************************************
423 * Implementation of the 'print' command.
425 void print_value(const struct dbg_lvalue
* lvalue
, char format
, int level
)
427 struct dbg_type type
= lvalue
->type
;
428 struct dbg_lvalue lvalue_field
;
434 if (!types_get_real_type(&type
, &tag
))
436 WINE_FIXME("---error\n");
440 if (type
.id
== dbg_itype_none
)
442 /* No type, just print the addr value */
443 print_bare_address(&lvalue
->addr
);
447 if (format
== 'i' || format
== 's' || format
== 'w' || format
== 'b' || format
== 'g')
449 dbg_printf("Format specifier '%c' is meaningless in 'print' command\n", format
);
457 case SymTagPointerType
:
458 /* FIXME: this in not 100% optimal (as we're going through the typedef handling
461 print_basic(lvalue
, format
);
464 if (types_get_info(&type
, TI_GET_CHILDRENCOUNT
, &count
))
466 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
467 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
471 struct dbg_type sub_type
;
477 fcp
->Count
= min(count
, 256);
478 if (types_get_info(&type
, TI_FINDCHILDREN
, fcp
))
480 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
483 sub_type
.module
= type
.module
;
484 sub_type
.id
= fcp
->ChildId
[i
];
485 types_get_info(&sub_type
, TI_GET_SYMNAME
, &ptr
);
487 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
488 dbg_printf("%s=", tmp
);
489 HeapFree(GetProcessHeap(), 0, ptr
);
490 lvalue_field
= *lvalue
;
491 if (types_get_udt_element_lvalue(&lvalue_field
, &sub_type
, &tmpbuf
))
493 print_value(&lvalue_field
, format
, level
+ 1);
495 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
498 count
-= min(count
, 256);
504 case SymTagArrayType
:
506 * Loop over all of the entries, printing stuff as we go.
509 types_get_info(&type
, TI_GET_COUNT
, &count
);
510 types_get_info(&type
, TI_GET_LENGTH
, &size
);
517 * Special handling for character arrays.
519 /* FIXME should check basic type here (should be a char!!!!)... */
520 len
= min(count
, sizeof(buffer
));
521 memory_get_string(dbg_curr_process
,
522 memory_to_linear_addr(&lvalue
->addr
),
523 lvalue
->cookie
== DLV_TARGET
, TRUE
, buffer
, len
);
524 dbg_printf("\"%s%s\"", buffer
, (len
< count
) ? "..." : "");
527 lvalue_field
= *lvalue
;
528 types_get_info(&type
, TI_GET_TYPE
, &lvalue_field
.type
.id
);
530 for (i
= 0; i
< count
; i
++)
532 print_value(&lvalue_field
, format
, level
+ 1);
533 lvalue_field
.addr
.Offset
+= size
/ count
;
534 dbg_printf((i
== count
- 1) ? "}" : ", ");
537 case SymTagFunctionType
:
538 dbg_printf("Function ");
539 print_bare_address(&lvalue
->addr
);
541 types_print_type(&type
, FALSE
);
544 lvalue_field
= *lvalue
;
545 types_get_info(&lvalue
->type
, TI_GET_TYPE
, &lvalue_field
.type
.id
);
546 print_value(&lvalue_field
, format
, level
);
549 WINE_FIXME("Unknown tag (%u)\n", tag
);
550 RaiseException(DEBUG_STATUS_INTERNAL_ERROR
, 0, 0, NULL
);
556 if (level
== 0) dbg_printf("\n");
559 static BOOL CALLBACK
print_types_cb(PSYMBOL_INFO sym
, ULONG size
, void* ctx
)
561 struct dbg_type type
;
562 type
.module
= sym
->ModBase
;
563 type
.id
= sym
->TypeIndex
;
564 dbg_printf("Mod: %08x ID: %08lx\n", type
.module
, type
.id
);
565 types_print_type(&type
, TRUE
);
570 static BOOL CALLBACK
print_types_mod_cb(PCSTR mod_name
, ULONG base
, PVOID ctx
)
572 return SymEnumTypes(dbg_curr_process
->handle
, base
, print_types_cb
, ctx
);
575 int print_types(void)
577 if (!dbg_curr_process
)
579 dbg_printf("No known process, cannot print types\n");
582 SymEnumerateModules(dbg_curr_process
->handle
, print_types_mod_cb
, NULL
);
586 int types_print_type(const struct dbg_type
* type
, BOOL details
)
591 DWORD tag
, udt
, count
;
592 struct dbg_type subtype
;
594 if (type
->id
== dbg_itype_none
|| !types_get_info(type
, TI_GET_SYMTAG
, &tag
))
596 dbg_printf("--invalid--<%lxh>--", type
->id
);
600 if (types_get_info(type
, TI_GET_SYMNAME
, &ptr
) && ptr
)
602 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
604 HeapFree(GetProcessHeap(), 0, ptr
);
606 else name
= "--none--";
611 if (details
) dbg_printf("Basic<%s>", name
); else dbg_printf("%s", name
);
613 case SymTagPointerType
:
614 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
615 subtype
.module
= type
->module
;
616 types_print_type(&subtype
, FALSE
);
620 types_get_info(type
, TI_GET_UDTKIND
, &udt
);
623 case UdtStruct
: dbg_printf("struct %s", name
); break;
624 case UdtUnion
: dbg_printf("union %s", name
); break;
625 case UdtClass
: dbg_printf("class %s", name
); break;
626 default: WINE_ERR("Unsupported UDT type (%d) for %s\n", udt
, name
); break;
629 types_get_info(type
, TI_GET_CHILDRENCOUNT
, &count
))
631 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
632 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
636 struct dbg_type type_elt
;
642 fcp
->Count
= min(count
, 256);
643 if (types_get_info(type
, TI_FINDCHILDREN
, fcp
))
645 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
648 type_elt
.module
= type
->module
;
649 type_elt
.id
= fcp
->ChildId
[i
];
650 types_get_info(&type_elt
, TI_GET_SYMNAME
, &ptr
);
652 WideCharToMultiByte(CP_ACP
, 0, ptr
, -1, tmp
, sizeof(tmp
), NULL
, NULL
);
653 HeapFree(GetProcessHeap(), 0, ptr
);
654 dbg_printf("%s", tmp
);
655 if (types_get_info(&type_elt
, TI_GET_TYPE
, &type_elt
.id
))
658 types_print_type(&type_elt
, details
);
660 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
663 count
-= min(count
, 256);
669 case SymTagArrayType
:
670 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
671 subtype
.module
= type
->module
;
672 types_print_type(&subtype
, details
);
673 if (types_get_info(type
, TI_GET_COUNT
, &count
))
674 dbg_printf(" %s[%d]", name
, count
);
676 dbg_printf(" %s[]", name
);
679 dbg_printf("enum %s", name
);
681 case SymTagFunctionType
:
682 types_get_info(type
, TI_GET_TYPE
, &subtype
.id
);
683 /* is the returned type the same object as function sig itself ? */
684 if (subtype
.id
!= type
->id
)
686 subtype
.module
= type
->module
;
687 types_print_type(&subtype
, FALSE
);
691 dbg_printf("<ret_type=self>");
693 dbg_printf(" (*%s)(", name
);
694 if (types_get_info(type
, TI_GET_CHILDRENCOUNT
, &count
))
696 char buffer
[sizeof(TI_FINDCHILDREN_PARAMS
) + 256 * sizeof(DWORD
)];
697 TI_FINDCHILDREN_PARAMS
* fcp
= (TI_FINDCHILDREN_PARAMS
*)buffer
;
701 if (!count
) dbg_printf("void");
704 fcp
->Count
= min(count
, 256);
705 if (types_get_info(type
, TI_FINDCHILDREN
, fcp
))
707 for (i
= 0; i
< min(fcp
->Count
, count
); i
++)
709 subtype
.id
= fcp
->ChildId
[i
];
710 types_get_info(&subtype
, TI_GET_TYPE
, &subtype
.id
);
711 types_print_type(&subtype
, FALSE
);
712 if (i
< min(fcp
->Count
, count
) - 1 || count
> 256) dbg_printf(", ");
715 count
-= min(count
, 256);
722 dbg_printf("%s", name
);
725 WINE_ERR("Unknown type %u for %s\n", tag
, name
);
732 /* helper to typecast pInfo to its expected type (_t) */
733 #define X(_t) (*((_t*)pInfo))
735 BOOL
types_get_info(const struct dbg_type
* type
, IMAGEHLP_SYMBOL_TYPE_INFO ti
, void* pInfo
)
737 if (type
->id
== dbg_itype_none
) return FALSE
;
738 if (type
->module
!= 0)
741 ret
= SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, ti
, pInfo
);
743 SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, TI_GET_SYMTAG
, &tag
) &&
744 tag
== SymTagBaseType
&&
745 SymGetTypeInfo(dbg_curr_process
->handle
, type
->module
, type
->id
, TI_GET_BASETYPE
, &bt
))
747 static const WCHAR voidW
[] = {'v','o','i','d','\0'};
748 static const WCHAR charW
[] = {'c','h','a','r','\0'};
749 static const WCHAR wcharW
[] = {'W','C','H','A','R','\0'};
750 static const WCHAR intW
[] = {'i','n','t','\0'};
751 static const WCHAR uintW
[] = {'u','n','s','i','g','n','e','d',' ','i','n','t','\0'};
752 static const WCHAR floatW
[] = {'f','l','o','a','t','\0'};
753 static const WCHAR boolW
[] = {'b','o','o','l','\0'};
754 static const WCHAR longW
[] = {'l','o','n','g',' ','i','n','t','\0'};
755 static const WCHAR ulongW
[] = {'u','n','s','i','g','n','e','d',' ','l','o','n','g',' ','i','n','t','\0'};
756 static const WCHAR complexW
[] = {'c','o','m','p','l','e','x','\0'};
757 const WCHAR
* name
= NULL
;
761 case btVoid
: name
= voidW
; break;
762 case btChar
: name
= charW
; break;
763 case btWChar
: name
= wcharW
; break;
764 case btInt
: name
= intW
; break;
765 case btUInt
: name
= uintW
; break;
766 case btFloat
: name
= floatW
; break;
767 case btBool
: name
= boolW
; break;
768 case btLong
: name
= longW
; break;
769 case btULong
: name
= ulongW
; break;
770 case btComplex
: name
= complexW
; break;
771 default: WINE_FIXME("Unsupported basic type %u\n", bt
); return FALSE
;
773 X(WCHAR
*) = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(name
) + 1) * sizeof(WCHAR
));
776 lstrcpyW(X(WCHAR
*), name
);
783 assert(type
->id
>= dbg_itype_first
);
787 case dbg_itype_unsigned_int
:
790 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
791 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
792 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
793 default: WINE_FIXME("unsupported %u for u-int\n", ti
); return FALSE
;
796 case dbg_itype_signed_int
:
799 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
800 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
801 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
802 default: WINE_FIXME("unsupported %u for s-int\n", ti
); return FALSE
;
805 case dbg_itype_unsigned_short_int
:
808 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
809 case TI_GET_LENGTH
: X(DWORD64
) = 2; break;
810 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
811 default: WINE_FIXME("unsupported %u for u-short int\n", ti
); return FALSE
;
814 case dbg_itype_signed_short_int
:
817 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
818 case TI_GET_LENGTH
: X(DWORD64
) = 2; break;
819 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
820 default: WINE_FIXME("unsupported %u for s-short int\n", ti
); return FALSE
;
823 case dbg_itype_unsigned_char_int
:
826 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
827 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
828 case TI_GET_BASETYPE
: X(DWORD
) = btUInt
; break;
829 default: WINE_FIXME("unsupported %u for u-char int\n", ti
); return FALSE
;
832 case dbg_itype_signed_char_int
:
835 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
836 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
837 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
838 default: WINE_FIXME("unsupported %u for s-char int\n", ti
); return FALSE
;
844 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
845 case TI_GET_LENGTH
: X(DWORD64
) = 1; break;
846 case TI_GET_BASETYPE
: X(DWORD
) = btChar
; break;
847 default: WINE_FIXME("unsupported %u for char int\n", ti
); return FALSE
;
850 case dbg_itype_astring
:
853 case TI_GET_SYMTAG
: X(DWORD
) = SymTagPointerType
; break;
854 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
855 case TI_GET_TYPE
: X(DWORD
) = dbg_itype_char
; break;
856 default: WINE_FIXME("unsupported %u for a string\n", ti
); return FALSE
;
859 case dbg_itype_segptr
:
862 case TI_GET_SYMTAG
: X(DWORD
) = SymTagBaseType
; break;
863 case TI_GET_LENGTH
: X(DWORD64
) = 4; break;
864 case TI_GET_BASETYPE
: X(DWORD
) = btInt
; break;
865 default: WINE_FIXME("unsupported %u for seg-ptr\n", ti
); return FALSE
;
868 default: WINE_FIXME("unsupported type id 0x%lx\n", type
->id
);