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

Side by Side Diff: src/runtime.cc

Issue 12184015: Inline some regexp code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « src/jsregexp-inl.h ('k') | tools/gyp/v8.gyp » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 27 matching lines...) Expand all
38 #include "compiler.h" 38 #include "compiler.h"
39 #include "cpu.h" 39 #include "cpu.h"
40 #include "dateparser-inl.h" 40 #include "dateparser-inl.h"
41 #include "debug.h" 41 #include "debug.h"
42 #include "deoptimizer.h" 42 #include "deoptimizer.h"
43 #include "date.h" 43 #include "date.h"
44 #include "execution.h" 44 #include "execution.h"
45 #include "global-handles.h" 45 #include "global-handles.h"
46 #include "isolate-inl.h" 46 #include "isolate-inl.h"
47 #include "jsregexp.h" 47 #include "jsregexp.h"
48 #include "jsregexp-inl.h"
48 #include "json-parser.h" 49 #include "json-parser.h"
49 #include "json-stringifier.h" 50 #include "json-stringifier.h"
50 #include "liveedit.h" 51 #include "liveedit.h"
51 #include "misc-intrinsics.h" 52 #include "misc-intrinsics.h"
52 #include "parser.h" 53 #include "parser.h"
53 #include "platform.h" 54 #include "platform.h"
54 #include "runtime-profiler.h" 55 #include "runtime-profiler.h"
55 #include "runtime.h" 56 #include "runtime.h"
56 #include "scopeinfo.h" 57 #include "scopeinfo.h"
57 #include "smart-pointers.h" 58 #include "smart-pointers.h"
(...skipping 13469 matching lines...) Expand 10 before | Expand all | Expand 10 after
13527 // Handle last resort GC and make sure to allow future allocations 13528 // Handle last resort GC and make sure to allow future allocations
13528 // to grow the heap without causing GCs (if possible). 13529 // to grow the heap without causing GCs (if possible).
13529 isolate->counters()->gc_last_resort_from_js()->Increment(); 13530 isolate->counters()->gc_last_resort_from_js()->Increment();
13530 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags, 13531 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags,
13531 "Runtime::PerformGC"); 13532 "Runtime::PerformGC");
13532 } 13533 }
13533 } 13534 }
13534 13535
13535 13536
13536 } } // namespace v8::internal 13537 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/jsregexp-inl.h ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698