| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 26 matching lines...) Expand all Loading... |
| 37 #include "execution.h" | 37 #include "execution.h" |
| 38 #include "flags.h" | 38 #include "flags.h" |
| 39 #include "global-handles.h" | 39 #include "global-handles.h" |
| 40 #include "heap-profiler.h" | 40 #include "heap-profiler.h" |
| 41 #include "messages.h" | 41 #include "messages.h" |
| 42 #include "natives.h" | 42 #include "natives.h" |
| 43 #include "parser.h" | 43 #include "parser.h" |
| 44 #include "platform.h" | 44 #include "platform.h" |
| 45 #include "profile-generator-inl.h" | 45 #include "profile-generator-inl.h" |
| 46 #include "runtime-profiler.h" | 46 #include "runtime-profiler.h" |
| 47 #include "scanner-character-streams.h" |
| 47 #include "serialize.h" | 48 #include "serialize.h" |
| 48 #include "snapshot.h" | 49 #include "snapshot.h" |
| 49 #include "v8threads.h" | 50 #include "v8threads.h" |
| 50 #include "version.h" | 51 #include "version.h" |
| 51 #include "vm-state-inl.h" | 52 #include "vm-state-inl.h" |
| 52 | 53 |
| 53 #include "../include/v8-profiler.h" | 54 #include "../include/v8-profiler.h" |
| 54 #include "../include/v8-testing.h" | 55 #include "../include/v8-testing.h" |
| 55 | 56 |
| 56 #define LOG_API(isolate, expr) LOG(isolate, ApiEntryCall(expr)) | 57 #define LOG_API(isolate, expr) LOG(isolate, ApiEntryCall(expr)) |
| (...skipping 5987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6044 | 6045 |
| 6045 | 6046 |
| 6046 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { | 6047 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { |
| 6047 HandleScopeImplementer* scope_implementer = | 6048 HandleScopeImplementer* scope_implementer = |
| 6048 reinterpret_cast<HandleScopeImplementer*>(storage); | 6049 reinterpret_cast<HandleScopeImplementer*>(storage); |
| 6049 scope_implementer->IterateThis(v); | 6050 scope_implementer->IterateThis(v); |
| 6050 return storage + ArchiveSpacePerThread(); | 6051 return storage + ArchiveSpacePerThread(); |
| 6051 } | 6052 } |
| 6052 | 6053 |
| 6053 } } // namespace v8::internal | 6054 } } // namespace v8::internal |
| OLD | NEW |