1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
|
//===- TypeIndexDiscovery.cpp -----------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/DebugInfo/CodeView/TypeIndexDiscovery.h"
#include "llvm/DebugInfo/CodeView/TypeRecord.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/Endian.h"
using namespace llvm;
using namespace llvm::codeview;
static inline MethodKind getMethodKind(uint16_t Attrs) {
Attrs &= uint16_t(MethodOptions::MethodKindMask);
Attrs >>= 2;
return MethodKind(Attrs);
}
static inline bool isIntroVirtual(uint16_t Attrs) {
MethodKind MK = getMethodKind(Attrs);
return MK == MethodKind::IntroducingVirtual ||
MK == MethodKind::PureIntroducingVirtual;
}
static inline PointerMode getPointerMode(uint32_t Attrs) {
return static_cast<PointerMode>((Attrs >> PointerRecord::PointerModeShift) &
PointerRecord::PointerModeMask);
}
static inline bool isMemberPointer(uint32_t Attrs) {
PointerMode Mode = getPointerMode(Attrs);
return Mode == PointerMode::PointerToDataMember ||
Mode == PointerMode::PointerToMemberFunction;
}
static inline uint32_t getEncodedIntegerLength(ArrayRef<uint8_t> Data) {
uint16_t N = support::endian::read16le(Data.data());
if (N < LF_NUMERIC)
return 2;
assert(N <= LF_UQUADWORD);
constexpr uint32_t Sizes[] = {
1, // LF_CHAR
2, // LF_SHORT
2, // LF_USHORT
4, // LF_LONG
4, // LF_ULONG
4, // LF_REAL32
8, // LF_REAL64
10, // LF_REAL80
16, // LF_REAL128
8, // LF_QUADWORD
8, // LF_UQUADWORD
};
return 2 + Sizes[N - LF_NUMERIC];
}
static inline uint32_t getCStringLength(ArrayRef<uint8_t> Data) {
const char *S = reinterpret_cast<const char *>(Data.data());
return strlen(S) + 1;
}
static void handleMethodOverloadList(ArrayRef<uint8_t> Content,
SmallVectorImpl<TiReference> &Refs) {
uint32_t Offset = 0;
while (!Content.empty()) {
// Array of:
// 0: Attrs
// 2: Padding
// 4: TypeIndex
// if (isIntroVirtual())
// 8: VFTableOffset
// At least 8 bytes are guaranteed. 4 extra bytes come iff function is an
// intro virtual.
uint32_t Len = 8;
uint16_t Attrs = support::endian::read16le(Content.data());
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
if (LLVM_UNLIKELY(isIntroVirtual(Attrs)))
Len += 4;
Offset += Len;
Content = Content.drop_front(Len);
}
}
static uint32_t handleBaseClass(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
// 8: Encoded Integer
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8 + getEncodedIntegerLength(Data.drop_front(8));
}
static uint32_t handleEnumerator(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: Encoded Integer
// <next>: Name
uint32_t Size = 4 + getEncodedIntegerLength(Data.drop_front(4));
return Size + getCStringLength(Data.drop_front(Size));
}
static uint32_t handleDataMember(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
// 8: Encoded Integer
// <next>: Name
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
uint32_t Size = 8 + getEncodedIntegerLength(Data.drop_front(8));
return Size + getCStringLength(Data.drop_front(Size));
}
static uint32_t handleOverloadedMethod(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
// 8: Name
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8 + getCStringLength(Data.drop_front(8));
}
static uint32_t handleOneMethod(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Attributes
// 4: Type
// if (isIntroVirtual)
// 8: VFTableOffset
// <next>: Name
uint32_t Size = 8;
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
uint16_t Attrs = support::endian::read16le(Data.drop_front(2).data());
if (LLVM_UNLIKELY(isIntroVirtual(Attrs)))
Size += 4;
return Size + getCStringLength(Data.drop_front(Size));
}
static uint32_t handleNestedType(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
// 8: Name
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8 + getCStringLength(Data.drop_front(8));
}
static uint32_t handleStaticDataMember(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
// 8: Name
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8 + getCStringLength(Data.drop_front(8));
}
static uint32_t handleVirtualBaseClass(ArrayRef<uint8_t> Data, uint32_t Offset,
bool IsIndirect,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Attrs
// 4: TypeIndex
// 8: TypeIndex
// 12: Encoded Integer
// <next>: Encoded Integer
uint32_t Size = 12;
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 2});
Size += getEncodedIntegerLength(Data.drop_front(Size));
Size += getEncodedIntegerLength(Data.drop_front(Size));
return Size;
}
static uint32_t handleVFPtr(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8;
}
static uint32_t handleListContinuation(ArrayRef<uint8_t> Data, uint32_t Offset,
SmallVectorImpl<TiReference> &Refs) {
// 0: Kind
// 2: Padding
// 4: TypeIndex
Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1});
return 8;
}
static void handleFieldList(ArrayRef<uint8_t> Content,
SmallVectorImpl<TiReference> &Refs) {
uint32_t Offset = 0;
uint32_t ThisLen = 0;
while (!Content.empty()) {
TypeLeafKind Kind =
static_cast<TypeLeafKind>(support::endian::read16le(Content.data()));
switch (Kind) {
case LF_BCLASS:
ThisLen = handleBaseClass(Content, Offset, Refs);
break;
case LF_ENUMERATE:
ThisLen = handleEnumerator(Content, Offset, Refs);
break;
case LF_MEMBER:
ThisLen = handleDataMember(Content, Offset, Refs);
break;
case LF_METHOD:
ThisLen = handleOverloadedMethod(Content, Offset, Refs);
break;
case LF_ONEMETHOD:
ThisLen = handleOneMethod(Content, Offset, Refs);
break;
case LF_NESTTYPE:
ThisLen = handleNestedType(Content, Offset, Refs);
break;
case LF_STMEMBER:
ThisLen = handleStaticDataMember(Content, Offset, Refs);
break;
case LF_VBCLASS:
case LF_IVBCLASS:
ThisLen =
handleVirtualBaseClass(Content, Offset, Kind == LF_VBCLASS, Refs);
break;
case LF_VFUNCTAB:
ThisLen = handleVFPtr(Content, Offset, Refs);
break;
case LF_INDEX:
ThisLen = handleListContinuation(Content, Offset, Refs);
break;
default:
return;
}
Content = Content.drop_front(ThisLen);
Offset += ThisLen;
if (!Content.empty()) {
uint8_t Pad = Content.front();
if (Pad >= LF_PAD0) {
uint32_t Skip = Pad & 0x0F;
Content = Content.drop_front(Skip);
Offset += Skip;
}
}
}
}
static void handlePointer(ArrayRef<uint8_t> Content,
SmallVectorImpl<TiReference> &Refs) {
Refs.push_back({TiRefKind::TypeRef, 0, 1});
uint32_t Attrs = support::endian::read32le(Content.drop_front(4).data());
if (isMemberPointer(Attrs))
Refs.push_back({TiRefKind::TypeRef, 8, 1});
}
static void discoverTypeIndices(ArrayRef<uint8_t> Content, TypeLeafKind Kind,
SmallVectorImpl<TiReference> &Refs) {
uint32_t Count;
// FIXME: In the future it would be nice if we could avoid hardcoding these
// values. One idea is to define some structures representing these types
// that would allow the use of offsetof().
switch (Kind) {
case TypeLeafKind::LF_FUNC_ID:
Refs.push_back({TiRefKind::IndexRef, 0, 1});
Refs.push_back({TiRefKind::TypeRef, 4, 1});
break;
case TypeLeafKind::LF_MFUNC_ID:
Refs.push_back({TiRefKind::TypeRef, 0, 2});
break;
case TypeLeafKind::LF_STRING_ID:
Refs.push_back({TiRefKind::IndexRef, 0, 1});
break;
case TypeLeafKind::LF_SUBSTR_LIST:
Count = support::endian::read32le(Content.data());
if (Count > 0)
Refs.push_back({TiRefKind::IndexRef, 4, Count});
break;
case TypeLeafKind::LF_BUILDINFO:
Count = support::endian::read16le(Content.data());
if (Count > 0)
Refs.push_back({TiRefKind::IndexRef, 2, Count});
break;
case TypeLeafKind::LF_UDT_SRC_LINE:
Refs.push_back({TiRefKind::TypeRef, 0, 1});
Refs.push_back({TiRefKind::IndexRef, 4, 1});
break;
case TypeLeafKind::LF_UDT_MOD_SRC_LINE:
Refs.push_back({TiRefKind::TypeRef, 0, 1});
break;
case TypeLeafKind::LF_MODIFIER:
Refs.push_back({TiRefKind::TypeRef, 0, 1});
break;
case TypeLeafKind::LF_PROCEDURE:
Refs.push_back({TiRefKind::TypeRef, 0, 1});
Refs.push_back({TiRefKind::TypeRef, 8, 1});
break;
case TypeLeafKind::LF_MFUNCTION:
Refs.push_back({TiRefKind::TypeRef, 0, 3});
Refs.push_back({TiRefKind::TypeRef, 16, 1});
break;
case TypeLeafKind::LF_ARGLIST:
Count = support::endian::read32le(Content.data());
if (Count > 0)
Refs.push_back({TiRefKind::TypeRef, 4, Count});
break;
case TypeLeafKind::LF_ARRAY:
Refs.push_back({TiRefKind::TypeRef, 0, 2});
break;
case TypeLeafKind::LF_CLASS:
case TypeLeafKind::LF_STRUCTURE:
case TypeLeafKind::LF_INTERFACE:
Refs.push_back({TiRefKind::TypeRef, 4, 3});
break;
case TypeLeafKind::LF_UNION:
Refs.push_back({TiRefKind::TypeRef, 4, 1});
break;
case TypeLeafKind::LF_ENUM:
Refs.push_back({TiRefKind::TypeRef, 4, 2});
break;
case TypeLeafKind::LF_BITFIELD:
Refs.push_back({TiRefKind::TypeRef, 0, 1});
break;
case TypeLeafKind::LF_VFTABLE:
Refs.push_back({TiRefKind::TypeRef, 0, 2});
break;
case TypeLeafKind::LF_VTSHAPE:
break;
case TypeLeafKind::LF_METHODLIST:
handleMethodOverloadList(Content, Refs);
break;
case TypeLeafKind::LF_FIELDLIST:
handleFieldList(Content, Refs);
break;
case TypeLeafKind::LF_POINTER:
handlePointer(Content, Refs);
break;
default:
break;
}
}
static bool discoverTypeIndices(ArrayRef<uint8_t> Content, SymbolKind Kind,
SmallVectorImpl<TiReference> &Refs) {
uint32_t Count;
// FIXME: In the future it would be nice if we could avoid hardcoding these
// values. One idea is to define some structures representing these types
// that would allow the use of offsetof().
switch (Kind) {
case SymbolKind::S_GPROC32_ID:
case SymbolKind::S_LPROC32_ID:
case SymbolKind::S_LPROC32_DPC:
case SymbolKind::S_LPROC32_DPC_ID:
Refs.push_back({TiRefKind::IndexRef, 24, 1}); // LF_FUNC_ID
break;
case SymbolKind::S_GPROC32:
case SymbolKind::S_LPROC32:
Refs.push_back({TiRefKind::TypeRef, 24, 1}); // Type
break;
case SymbolKind::S_UDT:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // UDT
break;
case SymbolKind::S_GDATA32:
case SymbolKind::S_LDATA32:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_BUILDINFO:
Refs.push_back({TiRefKind::IndexRef, 0, 1}); // Compile flags
break;
case SymbolKind::S_LTHREAD32:
case SymbolKind::S_GTHREAD32:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_FILESTATIC:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_LOCAL:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_REGISTER:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_CONSTANT:
Refs.push_back({TiRefKind::TypeRef, 0, 1}); // Type
break;
case SymbolKind::S_BPREL32:
case SymbolKind::S_REGREL32:
Refs.push_back({TiRefKind::TypeRef, 4, 1}); // Type
break;
case SymbolKind::S_CALLSITEINFO:
Refs.push_back({TiRefKind::TypeRef, 8, 1}); // Call signature
break;
case SymbolKind::S_CALLERS:
case SymbolKind::S_CALLEES:
case SymbolKind::S_INLINEES:
// The record is a count followed by an array of type indices.
Count = *reinterpret_cast<const ulittle32_t *>(Content.data());
Refs.push_back({TiRefKind::IndexRef, 4, Count}); // Callees
break;
case SymbolKind::S_INLINESITE:
Refs.push_back({TiRefKind::IndexRef, 8, 1}); // ID of inlinee
break;
case SymbolKind::S_HEAPALLOCSITE:
Refs.push_back({TiRefKind::TypeRef, 8, 1}); // UDT allocated
break;
// Defranges don't have types, just registers and code offsets.
case SymbolKind::S_DEFRANGE_REGISTER:
case SymbolKind::S_DEFRANGE_REGISTER_REL:
case SymbolKind::S_DEFRANGE_FRAMEPOINTER_REL:
case SymbolKind::S_DEFRANGE_FRAMEPOINTER_REL_FULL_SCOPE:
case SymbolKind::S_DEFRANGE_SUBFIELD_REGISTER:
case SymbolKind::S_DEFRANGE_SUBFIELD:
break;
// No type references.
case SymbolKind::S_LABEL32:
case SymbolKind::S_OBJNAME:
case SymbolKind::S_COMPILE:
case SymbolKind::S_COMPILE2:
case SymbolKind::S_COMPILE3:
case SymbolKind::S_ENVBLOCK:
case SymbolKind::S_BLOCK32:
case SymbolKind::S_FRAMEPROC:
case SymbolKind::S_THUNK32:
case SymbolKind::S_FRAMECOOKIE:
case SymbolKind::S_UNAMESPACE:
break;
// Scope ending symbols.
case SymbolKind::S_END:
case SymbolKind::S_INLINESITE_END:
case SymbolKind::S_PROC_ID_END:
break;
default:
return false; // Unknown symbol.
}
return true;
}
void llvm::codeview::discoverTypeIndices(const CVType &Type,
SmallVectorImpl<TiReference> &Refs) {
::discoverTypeIndices(Type.content(), Type.kind(), Refs);
}
static void resolveTypeIndexReferences(ArrayRef<uint8_t> RecordData,
ArrayRef<TiReference> Refs,
SmallVectorImpl<TypeIndex> &Indices) {
Indices.clear();
if (Refs.empty())
return;
RecordData = RecordData.drop_front(sizeof(RecordPrefix));
BinaryStreamReader Reader(RecordData, support::little);
for (const auto &Ref : Refs) {
Reader.setOffset(Ref.Offset);
FixedStreamArray<TypeIndex> Run;
cantFail(Reader.readArray(Run, Ref.Count));
Indices.append(Run.begin(), Run.end());
}
}
void llvm::codeview::discoverTypeIndices(const CVType &Type,
SmallVectorImpl<TypeIndex> &Indices) {
return discoverTypeIndices(Type.RecordData, Indices);
}
void llvm::codeview::discoverTypeIndices(ArrayRef<uint8_t> RecordData,
SmallVectorImpl<TypeIndex> &Indices) {
SmallVector<TiReference, 4> Refs;
discoverTypeIndices(RecordData, Refs);
resolveTypeIndexReferences(RecordData, Refs, Indices);
}
void llvm::codeview::discoverTypeIndices(ArrayRef<uint8_t> RecordData,
SmallVectorImpl<TiReference> &Refs) {
const RecordPrefix *P =
reinterpret_cast<const RecordPrefix *>(RecordData.data());
TypeLeafKind K = static_cast<TypeLeafKind>(uint16_t(P->RecordKind));
::discoverTypeIndices(RecordData.drop_front(sizeof(RecordPrefix)), K, Refs);
}
bool llvm::codeview::discoverTypeIndicesInSymbol(
const CVSymbol &Sym, SmallVectorImpl<TiReference> &Refs) {
SymbolKind K = Sym.kind();
return ::discoverTypeIndices(Sym.content(), K, Refs);
}
bool llvm::codeview::discoverTypeIndicesInSymbol(
ArrayRef<uint8_t> RecordData, SmallVectorImpl<TiReference> &Refs) {
const RecordPrefix *P =
reinterpret_cast<const RecordPrefix *>(RecordData.data());
SymbolKind K = static_cast<SymbolKind>(uint16_t(P->RecordKind));
return ::discoverTypeIndices(RecordData.drop_front(sizeof(RecordPrefix)), K,
Refs);
}
bool llvm::codeview::discoverTypeIndicesInSymbol(
ArrayRef<uint8_t> RecordData, SmallVectorImpl<TypeIndex> &Indices) {
SmallVector<TiReference, 2> Refs;
if (!discoverTypeIndicesInSymbol(RecordData, Refs))
return false;
resolveTypeIndexReferences(RecordData, Refs, Indices);
return true;
}
|