OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "runtime-profiler.h" | 42 #include "runtime-profiler.h" |
43 #include "scanner-base.h" | 43 #include "scanner-base.h" |
44 #include "scopeinfo.h" | 44 #include "scopeinfo.h" |
45 #include "snapshot.h" | 45 #include "snapshot.h" |
46 #include "v8threads.h" | 46 #include "v8threads.h" |
47 #include "vm-state-inl.h" | 47 #include "vm-state-inl.h" |
48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP | 48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP |
49 #include "regexp-macro-assembler.h" | 49 #include "regexp-macro-assembler.h" |
50 #include "arm/regexp-macro-assembler-arm.h" | 50 #include "arm/regexp-macro-assembler-arm.h" |
51 #endif | 51 #endif |
| 52 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP |
| 53 #include "regexp-macro-assembler.h" |
| 54 #include "mips/regexp-macro-assembler-mips.h" |
| 55 #endif |
52 | 56 |
53 namespace v8 { | 57 namespace v8 { |
54 namespace internal { | 58 namespace internal { |
55 | 59 |
56 | 60 |
57 static const intptr_t kMinimumPromotionLimit = 2 * MB; | 61 static const intptr_t kMinimumPromotionLimit = 2 * MB; |
58 static const intptr_t kMinimumAllocationLimit = 8 * MB; | 62 static const intptr_t kMinimumAllocationLimit = 8 * MB; |
59 | 63 |
60 | 64 |
61 static Mutex* gc_initializer_mutex = OS::CreateMutex(); | 65 static Mutex* gc_initializer_mutex = OS::CreateMutex(); |
(...skipping 5715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5777 } | 5781 } |
5778 | 5782 |
5779 | 5783 |
5780 void ExternalStringTable::TearDown() { | 5784 void ExternalStringTable::TearDown() { |
5781 new_space_strings_.Free(); | 5785 new_space_strings_.Free(); |
5782 old_space_strings_.Free(); | 5786 old_space_strings_.Free(); |
5783 } | 5787 } |
5784 | 5788 |
5785 | 5789 |
5786 } } // namespace v8::internal | 5790 } } // namespace v8::internal |
OLD | NEW |