OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 25 matching lines...) Expand all Loading... |
36 #include "heap-profiler.h" | 36 #include "heap-profiler.h" |
37 #include "global-handles.h" | 37 #include "global-handles.h" |
38 #include "mark-compact.h" | 38 #include "mark-compact.h" |
39 #include "natives.h" | 39 #include "natives.h" |
40 #include "scanner.h" | 40 #include "scanner.h" |
41 #include "scopeinfo.h" | 41 #include "scopeinfo.h" |
42 #include "snapshot.h" | 42 #include "snapshot.h" |
43 #include "v8threads.h" | 43 #include "v8threads.h" |
44 #if V8_TARGET_ARCH_ARM && V8_NATIVE_REGEXP | 44 #if V8_TARGET_ARCH_ARM && V8_NATIVE_REGEXP |
45 #include "regexp-macro-assembler.h" | 45 #include "regexp-macro-assembler.h" |
| 46 #include "arm/regexp-macro-assembler-arm.h" |
46 #endif | 47 #endif |
47 | 48 |
48 namespace v8 { | 49 namespace v8 { |
49 namespace internal { | 50 namespace internal { |
50 | 51 |
51 | 52 |
52 String* Heap::hidden_symbol_; | 53 String* Heap::hidden_symbol_; |
53 Object* Heap::roots_[Heap::kRootListLength]; | 54 Object* Heap::roots_[Heap::kRootListLength]; |
54 | 55 |
55 | 56 |
(...skipping 3979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4035 for (int i = 0; i < kNumberOfCaches; i++) { | 4036 for (int i = 0; i < kNumberOfCaches; i++) { |
4036 if (caches_[i] != NULL) { | 4037 if (caches_[i] != NULL) { |
4037 delete caches_[i]; | 4038 delete caches_[i]; |
4038 caches_[i] = NULL; | 4039 caches_[i] = NULL; |
4039 } | 4040 } |
4040 } | 4041 } |
4041 } | 4042 } |
4042 | 4043 |
4043 | 4044 |
4044 } } // namespace v8::internal | 4045 } } // namespace v8::internal |
OLD | NEW |