Skip to content

Commit 4feb2c3

Browse files
committed
DDR: allow ddr-scanner to handle exe/dll files
If filename does not end with '.pdb', assume the file is an exe/dll file Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
1 parent eb6dec0 commit 4feb2c3

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

ddr/include/ddr/scanner/pdb/PdbScanner.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class PdbScanner : public Scanner
8383
DDR_RC createClassUDT(IDiaSymbol *symbol, ClassUDT **newClass, NamespaceUDT *outerUDT);
8484
DDR_RC createEnumUDT(IDiaSymbol *symbol, NamespaceUDT *outerUDT);
8585
DDR_RC createTypedef(IDiaSymbol *symbol, NamespaceUDT *outerUDT);
86-
DDR_RC loadDataFromPdb(const wchar_t *filename, IDiaDataSource **diaDataSource, IDiaSession **diaSession, IDiaSymbol **diaSymbol);
86+
DDR_RC loadDataFromBinary(const wchar_t *filename, IDiaDataSource **diaDataSource, IDiaSession **diaSession, IDiaSymbol **diaSymbol);
8787
DDR_RC setSuperClassName(IDiaSymbol *symbol, ClassUDT *newUDT);
8888
void getNamespaceFromName(const string &name, NamespaceUDT **outerUDT);
8989
static DDR_RC getName(IDiaSymbol *symbol, string *name);

ddr/lib/ddr-scanner/pdb/PdbScanner.cpp

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2018 IBM Corp. and others
2+
* Copyright (c) 2015, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -143,7 +143,7 @@ PdbScanner::startScan(OMRPortLibrary *portLibrary, Symbol_IR *ir, vector<string>
143143
const size_t len = file.length();
144144
wchar_t *filename = new wchar_t[len + 1];
145145
mbstowcs(filename, file.c_str(), len + 1);
146-
rc = loadDataFromPdb(filename, &diaDataSource, &diaSession, &diaSymbol);
146+
rc = loadDataFromBinary(filename, &diaDataSource, &diaSession, &diaSymbol);
147147

148148
if (DDR_RC_OK == rc) {
149149
rc = addChildrenSymbols(diaSymbol, SymTagUDT, NULL);
@@ -189,9 +189,18 @@ PdbScanner::startScan(OMRPortLibrary *portLibrary, Symbol_IR *ir, vector<string>
189189
}
190190

191191
DDR_RC
192-
PdbScanner::loadDataFromPdb(const wchar_t *filename, IDiaDataSource **dataSource, IDiaSession **session, IDiaSymbol **symbol)
192+
PdbScanner::loadDataFromBinary(const wchar_t *filename, IDiaDataSource **dataSource, IDiaSession **session, IDiaSymbol **symbol)
193193
{
194194
DDR_RC rc = DDR_RC_OK;
195+
bool isPDBFile = false;
196+
/* get location of the file extension */
197+
const wchar_t *fileExtension = wcsrchr(filename, L'.');
198+
199+
/* check if file extension is '.pdb' */
200+
if ((NULL!= fileExtension) && (0 == wcscmp(fileExtension, L".pdb"))){
201+
isPDBFile = true;
202+
}
203+
195204
/* Attemt to co-create the DiaSource instance. On failure to find the required
196205
* dll, instead attempt to find and load the dll first.
197206
*/
@@ -231,9 +240,13 @@ PdbScanner::loadDataFromPdb(const wchar_t *filename, IDiaDataSource **dataSource
231240
}
232241

233242
if (DDR_RC_OK == rc) {
234-
hr = (*dataSource)->loadDataFromPdb(filename);
243+
if(isPDBFile){
244+
hr = (*dataSource)->loadDataFromPdb(filename);
245+
} else {
246+
hr = (*dataSource)->loadDataForExe(filename, NULL, NULL);
247+
}
235248
if (FAILED(hr)) {
236-
ERRMSG("loadDataFromPdb() failed for file with HRESULT = %08lX. Ensure the input is a pdb and not an exe.\nFile: %ls", hr, filename);
249+
ERRMSG("loadDataFromPdb() failed for file with HRESULT = %08lX.\nFile: %ls", hr, filename);
237250
rc = DDR_RC_ERROR;
238251
}
239252
}

0 commit comments

Comments
 (0)