| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 tables_[0] = Heap::undefined_value(); | 211 tables_[0] = Heap::undefined_value(); |
| 212 } | 212 } |
| 213 | 213 |
| 214 | 214 |
| 215 void CompilationSubCache::Iterate(ObjectVisitor* v) { | 215 void CompilationSubCache::Iterate(ObjectVisitor* v) { |
| 216 v->VisitPointers(&tables_[0], &tables_[generations_]); | 216 v->VisitPointers(&tables_[0], &tables_[generations_]); |
| 217 } | 217 } |
| 218 | 218 |
| 219 | 219 |
| 220 void CompilationSubCache::Clear() { | 220 void CompilationSubCache::Clear() { |
| 221 for (int i = 0; i < generations_; i++) { | 221 MemsetPointer(tables_, Heap::undefined_value(), generations_); |
| 222 tables_[i] = Heap::undefined_value(); | |
| 223 } | |
| 224 } | 222 } |
| 225 | 223 |
| 226 | 224 |
| 227 // We only re-use a cached function for some script source code if the | 225 // We only re-use a cached function for some script source code if the |
| 228 // script originates from the same place. This is to avoid issues | 226 // script originates from the same place. This is to avoid issues |
| 229 // when reporting errors, etc. | 227 // when reporting errors, etc. |
| 230 bool CompilationCacheScript::HasOrigin(Handle<JSFunction> boilerplate, | 228 bool CompilationCacheScript::HasOrigin(Handle<JSFunction> boilerplate, |
| 231 Handle<Object> name, | 229 Handle<Object> name, |
| 232 int line_offset, | 230 int line_offset, |
| 233 int column_offset) { | 231 int column_offset) { |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 } | 521 } |
| 524 | 522 |
| 525 | 523 |
| 526 void CompilationCache::Disable() { | 524 void CompilationCache::Disable() { |
| 527 enabled = false; | 525 enabled = false; |
| 528 Clear(); | 526 Clear(); |
| 529 } | 527 } |
| 530 | 528 |
| 531 | 529 |
| 532 } } // namespace v8::internal | 530 } } // namespace v8::internal |
| OLD | NEW |