Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: syzygy/experimental/pdb_dumper/pdb_dump.h

Issue 1357713004: PdbDumper: Dump FPO records. (Closed) Base URL: https://github.com/google/syzygy.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | syzygy/experimental/pdb_dumper/pdb_dump.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/experimental/pdb_dumper/pdb_dump.h
diff --git a/syzygy/experimental/pdb_dumper/pdb_dump.h b/syzygy/experimental/pdb_dumper/pdb_dump.h
index 2d2f94efa92a3289b92273cca01baf155a876f36..e60d9ac596c2cbf0c2a781970c448156faa9f749 100644
--- a/syzygy/experimental/pdb_dumper/pdb_dump.h
+++ b/syzygy/experimental/pdb_dumper/pdb_dump.h
@@ -20,6 +20,7 @@
#include "base/files/file_path.h"
#include "syzygy/application/application.h"
+#include "syzygy/pdb/pdb_stream.h"
#include "syzygy/pdb/pdb_util.h"
namespace pdb {
@@ -58,6 +59,10 @@ class PdbDumpApp : public application::AppImplBase {
// Dumps @p dbi_stream to out().
void DumpDbiStream(const DbiStream& dbi_stream);
+ // Dumps @p fpo_stream to out().
+ void DumpFpoStream(pdb::PdbStream* fpo_stream,
+ pdb::PdbStream* new_fpo_stream);
+
// The PDB files to dump.
std::vector<base::FilePath> pdb_files_;
@@ -68,6 +73,9 @@ class PdbDumpApp : public application::AppImplBase {
// Iff true, the symbol record stream will be dumped. Default to false.
bool dump_symbol_record_;
+ // Iff true, the FPO stream will be dumped. Default to false.
+ bool dump_fpo_;
+
// Iff true, the type info stream will be dumped. Default to false.
bool dump_type_info_;
« no previous file with comments | « no previous file | syzygy/experimental/pdb_dumper/pdb_dump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698