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

Side by Side Diff: src/runtime.cc

Issue 137403009: Adding a type vector to replace type cells. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: PORTS. Created 6 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
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 8453 matching lines...) Expand 10 before | Expand all | Expand 10 after
8464 } 8464 }
8465 8465
8466 8466
8467 RUNTIME_FUNCTION(MaybeObject*, Runtime_ClearFunctionTypeFeedback) { 8467 RUNTIME_FUNCTION(MaybeObject*, Runtime_ClearFunctionTypeFeedback) {
8468 HandleScope scope(isolate); 8468 HandleScope scope(isolate);
8469 ASSERT(args.length() == 1); 8469 ASSERT(args.length() == 1);
8470 CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0); 8470 CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0);
8471 Code* unoptimized = function->shared()->code(); 8471 Code* unoptimized = function->shared()->code();
8472 if (unoptimized->kind() == Code::FUNCTION) { 8472 if (unoptimized->kind() == Code::FUNCTION) {
8473 unoptimized->ClearInlineCaches(); 8473 unoptimized->ClearInlineCaches();
8474 unoptimized->ClearTypeFeedbackCells(isolate->heap()); 8474 unoptimized->ClearTypeFeedbackInfo(isolate->heap());
8475 } 8475 }
8476 return isolate->heap()->undefined_value(); 8476 return isolate->heap()->undefined_value();
8477 } 8477 }
8478 8478
8479 8479
8480 RUNTIME_FUNCTION(MaybeObject*, Runtime_RunningInSimulator) { 8480 RUNTIME_FUNCTION(MaybeObject*, Runtime_RunningInSimulator) {
8481 SealHandleScope shs(isolate); 8481 SealHandleScope shs(isolate);
8482 #if defined(USE_SIMULATOR) 8482 #if defined(USE_SIMULATOR)
8483 return isolate->heap()->true_value(); 8483 return isolate->heap()->true_value();
8484 #else 8484 #else
(...skipping 6342 matching lines...) Expand 10 before | Expand all | Expand 10 after
14827 // Handle last resort GC and make sure to allow future allocations 14827 // Handle last resort GC and make sure to allow future allocations
14828 // to grow the heap without causing GCs (if possible). 14828 // to grow the heap without causing GCs (if possible).
14829 isolate->counters()->gc_last_resort_from_js()->Increment(); 14829 isolate->counters()->gc_last_resort_from_js()->Increment();
14830 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags, 14830 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags,
14831 "Runtime::PerformGC"); 14831 "Runtime::PerformGC");
14832 } 14832 }
14833 } 14833 }
14834 14834
14835 14835
14836 } } // namespace v8::internal 14836 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698