|
1 | 1 | /*******************************************************************************
|
2 |
| - * Copyright (c) 2015, 2018 IBM Corp. and others |
| 2 | + * Copyright (c) 2015, 2019 IBM Corp. and others |
3 | 3 | *
|
4 | 4 | * This program and the accompanying materials are made available under
|
5 | 5 | * 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>
|
143 | 143 | const size_t len = file.length();
|
144 | 144 | wchar_t *filename = new wchar_t[len + 1];
|
145 | 145 | mbstowcs(filename, file.c_str(), len + 1);
|
146 |
| - rc = loadDataFromPdb(filename, &diaDataSource, &diaSession, &diaSymbol); |
| 146 | + rc = loadDataFromBinary(filename, &diaDataSource, &diaSession, &diaSymbol); |
147 | 147 |
|
148 | 148 | if (DDR_RC_OK == rc) {
|
149 | 149 | rc = addChildrenSymbols(diaSymbol, SymTagUDT, NULL);
|
@@ -189,9 +189,18 @@ PdbScanner::startScan(OMRPortLibrary *portLibrary, Symbol_IR *ir, vector<string>
|
189 | 189 | }
|
190 | 190 |
|
191 | 191 | 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) |
193 | 193 | {
|
194 | 194 | 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 | + |
195 | 204 | /* Attemt to co-create the DiaSource instance. On failure to find the required
|
196 | 205 | * dll, instead attempt to find and load the dll first.
|
197 | 206 | */
|
@@ -231,9 +240,13 @@ PdbScanner::loadDataFromPdb(const wchar_t *filename, IDiaDataSource **dataSource
|
231 | 240 | }
|
232 | 241 |
|
233 | 242 | 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 | + } |
235 | 248 | 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); |
237 | 250 | rc = DDR_RC_ERROR;
|
238 | 251 | }
|
239 | 252 | }
|
|
0 commit comments