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

Side by Side Diff: src/heap.cc

Issue 7739020: Rename scanner.* to scanner-character-streams.* and scanner-base.* to scanner.* (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: rename scanner-base.* to scanner.* Created 9 years, 3 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/dateparser.h ('k') | src/isolate.cc » ('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 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 23 matching lines...) Expand all
34 #include "compilation-cache.h" 34 #include "compilation-cache.h"
35 #include "debug.h" 35 #include "debug.h"
36 #include "deoptimizer.h" 36 #include "deoptimizer.h"
37 #include "global-handles.h" 37 #include "global-handles.h"
38 #include "heap-profiler.h" 38 #include "heap-profiler.h"
39 #include "liveobjectlist-inl.h" 39 #include "liveobjectlist-inl.h"
40 #include "mark-compact.h" 40 #include "mark-compact.h"
41 #include "natives.h" 41 #include "natives.h"
42 #include "objects-visiting.h" 42 #include "objects-visiting.h"
43 #include "runtime-profiler.h" 43 #include "runtime-profiler.h"
44 #include "scanner-base.h"
45 #include "scopeinfo.h" 44 #include "scopeinfo.h"
46 #include "snapshot.h" 45 #include "snapshot.h"
47 #include "v8threads.h" 46 #include "v8threads.h"
48 #include "vm-state-inl.h" 47 #include "vm-state-inl.h"
49 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP 48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP
50 #include "regexp-macro-assembler.h" 49 #include "regexp-macro-assembler.h"
51 #include "arm/regexp-macro-assembler-arm.h" 50 #include "arm/regexp-macro-assembler-arm.h"
52 #endif 51 #endif
53 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP 52 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP
54 #include "regexp-macro-assembler.h" 53 #include "regexp-macro-assembler.h"
(...skipping 6171 matching lines...) Expand 10 before | Expand all | Expand 10 after
6226 } 6225 }
6227 6226
6228 6227
6229 void ExternalStringTable::TearDown() { 6228 void ExternalStringTable::TearDown() {
6230 new_space_strings_.Free(); 6229 new_space_strings_.Free();
6231 old_space_strings_.Free(); 6230 old_space_strings_.Free();
6232 } 6231 }
6233 6232
6234 6233
6235 } } // namespace v8::internal 6234 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/dateparser.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698