| Index: src/s390/simulator-s390.h
|
| diff --git a/src/s390/simulator-s390.h b/src/s390/simulator-s390.h
|
| index 7af00ee25f94483276a973efe184fed5b2c40824..1ce6bf776bb98411e1be984a7c4e8ded45dc1242 100644
|
| --- a/src/s390/simulator-s390.h
|
| +++ b/src/s390/simulator-s390.h
|
| @@ -211,7 +211,7 @@ class Simulator {
|
| // Call on program start.
|
| static void Initialize(Isolate* isolate);
|
|
|
| - static void TearDown(base::HashMap* i_cache, Redirection* first);
|
| + static void TearDown(base::CustomMatcherHashMap* i_cache, Redirection* first);
|
|
|
| // V8 generally calls into generated JS code with 5 parameters and into
|
| // generated RegExp code with 7 parameters. This is a convenience function,
|
| @@ -233,7 +233,8 @@ class Simulator {
|
| char* last_debugger_input() { return last_debugger_input_; }
|
|
|
| // ICache checking.
|
| - static void FlushICache(base::HashMap* i_cache, void* start, size_t size);
|
| + static void FlushICache(base::CustomMatcherHashMap* i_cache, void* start,
|
| + size_t size);
|
|
|
| // Returns true if pc register contains one of the 'special_values' defined
|
| // below (bad_lr, end_sim_pc).
|
| @@ -445,9 +446,12 @@ class Simulator {
|
| void ExecuteInstruction(Instruction* instr, bool auto_incr_pc = true);
|
|
|
| // ICache.
|
| - static void CheckICache(base::HashMap* i_cache, Instruction* instr);
|
| - static void FlushOnePage(base::HashMap* i_cache, intptr_t start, int size);
|
| - static CachePage* GetCachePage(base::HashMap* i_cache, void* page);
|
| + static void CheckICache(base::CustomMatcherHashMap* i_cache,
|
| + Instruction* instr);
|
| + static void FlushOnePage(base::CustomMatcherHashMap* i_cache, intptr_t start,
|
| + int size);
|
| + static CachePage* GetCachePage(base::CustomMatcherHashMap* i_cache,
|
| + void* page);
|
|
|
| // Runtime call support.
|
| static void* RedirectExternalReference(
|
| @@ -482,7 +486,7 @@ class Simulator {
|
| char* last_debugger_input_;
|
|
|
| // Icache simulation
|
| - base::HashMap* i_cache_;
|
| + base::CustomMatcherHashMap* i_cache_;
|
|
|
| // Registered breakpoints.
|
| Instruction* break_pc_;
|
|
|