Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 691103445
Change-Id: Ic4a90e190e400edd6d258ee1a64079539e3dfed1
  • Loading branch information
BinExport Authors authored and copybara-github committed Oct 29, 2024
1 parent a857298 commit 3a9eeea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions call_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
#ifndef CALLGRAPH_H_
#define CALLGRAPH_H_

#include <cstddef>
#include <iosfwd>
#include <string>
#include <utility>
#include <vector>

#include "third_party/absl/container/btree_set.h"
#include "third_party/absl/container/node_hash_map.h"
Expand Down
2 changes: 2 additions & 0 deletions function.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@

#include <cstdint>
#include <ostream>
#include <string>
#include <vector>

#include "third_party/absl/container/btree_map.h"
#include "third_party/absl/container/node_hash_set.h"
#include "third_party/absl/log/check.h"
#include "third_party/zynamics/binexport/basic_block.h"
#include "third_party/zynamics/binexport/edge.h"
#include "third_party/zynamics/binexport/util/types.h"
Expand Down
4 changes: 4 additions & 0 deletions instruction.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@
#ifndef INSTRUCTION_H_
#define INSTRUCTION_H_

#include <cstdint>
#include <functional>
#include <ostream>
#include <string>
#include <vector>

#include "third_party/absl/container/node_hash_set.h"
#include "third_party/zynamics/binexport/operand.h"
#include "third_party/zynamics/binexport/util/range.h"
#include "third_party/zynamics/binexport/util/types.h"

class FlowGraph;
class AddressSpace;
Expand Down Expand Up @@ -120,6 +123,7 @@ class Instruction {
bool HasFlag(uint8_t flag) const;

private:

static thread_local int instance_count_;
static thread_local StringCache string_cache_;
static thread_local Operands operands_;
Expand Down

0 comments on commit 3a9eeea

Please sign in to comment.