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

Side by Side Diff: src/isolate.h

Issue 2369963002: [base] Remove PointersMatch, making a separate std::equals hashmap (Closed)
Patch Set: Fix the other simulators Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « src/interpreter/constant-array-builder.cc ('k') | src/mips/simulator-mips.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 354
355 private: 355 private:
356 void InitializeInternal(); 356 void InitializeInternal();
357 357
358 v8::TryCatch* try_catch_handler_; 358 v8::TryCatch* try_catch_handler_;
359 }; 359 };
360 360
361 361
362 #if USE_SIMULATOR 362 #if USE_SIMULATOR
363 363
364 #define ISOLATE_INIT_SIMULATOR_LIST(V) \ 364 #define ISOLATE_INIT_SIMULATOR_LIST(V) \
365 V(bool, simulator_initialized, false) \ 365 V(bool, simulator_initialized, false) \
366 V(base::HashMap*, simulator_i_cache, NULL) \ 366 V(base::CustomMatcherHashMap*, simulator_i_cache, NULL) \
367 V(Redirection*, simulator_redirection, NULL) 367 V(Redirection*, simulator_redirection, NULL)
368 #else 368 #else
369 369
370 #define ISOLATE_INIT_SIMULATOR_LIST(V) 370 #define ISOLATE_INIT_SIMULATOR_LIST(V)
371 371
372 #endif 372 #endif
373 373
374 374
375 #ifdef DEBUG 375 #ifdef DEBUG
376 376
(...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 1672
1673 EmbeddedVector<char, 128> filename_; 1673 EmbeddedVector<char, 128> filename_;
1674 FILE* file_; 1674 FILE* file_;
1675 int scope_depth_; 1675 int scope_depth_;
1676 }; 1676 };
1677 1677
1678 } // namespace internal 1678 } // namespace internal
1679 } // namespace v8 1679 } // namespace v8
1680 1680
1681 #endif // V8_ISOLATE_H_ 1681 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/interpreter/constant-array-builder.cc ('k') | src/mips/simulator-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698