| OLD | NEW |
| 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 Loading... |
| 38 class JSFunction; | 38 class JSFunction; |
| 39 class Object; | 39 class Object; |
| 40 class Semaphore; | 40 class Semaphore; |
| 41 | 41 |
| 42 class RuntimeProfiler { | 42 class RuntimeProfiler { |
| 43 public: | 43 public: |
| 44 explicit RuntimeProfiler(Isolate* isolate); | 44 explicit RuntimeProfiler(Isolate* isolate); |
| 45 | 45 |
| 46 void OptimizeNow(); | 46 void OptimizeNow(); |
| 47 | 47 |
| 48 void SetUp(); | |
| 49 void Reset(); | |
| 50 void TearDown(); | |
| 51 | |
| 52 void NotifyICChanged() { any_ic_changed_ = true; } | 48 void NotifyICChanged() { any_ic_changed_ = true; } |
| 53 | 49 |
| 54 // Rate limiting support. | |
| 55 | |
| 56 void UpdateSamplesAfterScavenge(); | |
| 57 void RemoveDeadSamples(); | |
| 58 void UpdateSamplesAfterCompact(ObjectVisitor* visitor); | |
| 59 | |
| 60 void AttemptOnStackReplacement(JSFunction* function); | 50 void AttemptOnStackReplacement(JSFunction* function); |
| 61 | 51 |
| 62 private: | 52 private: |
| 63 static const int kSamplerWindowSize = 16; | |
| 64 | |
| 65 void Optimize(JSFunction* function, const char* reason); | 53 void Optimize(JSFunction* function, const char* reason); |
| 66 | 54 |
| 67 void ClearSampleBuffer(); | |
| 68 | |
| 69 void ClearSampleBufferNewSpaceEntries(); | |
| 70 | |
| 71 int LookupSample(JSFunction* function); | |
| 72 | |
| 73 void AddSample(JSFunction* function, int weight); | |
| 74 | |
| 75 bool CodeSizeOKForOSR(Code* shared_code); | 55 bool CodeSizeOKForOSR(Code* shared_code); |
| 76 | 56 |
| 77 Isolate* isolate_; | 57 Isolate* isolate_; |
| 78 | 58 |
| 79 int sampler_threshold_; | |
| 80 int sampler_threshold_size_factor_; | |
| 81 int sampler_ticks_until_threshold_adjustment_; | |
| 82 | |
| 83 Object* sampler_window_[kSamplerWindowSize]; | |
| 84 int sampler_window_position_; | |
| 85 int sampler_window_weight_[kSamplerWindowSize]; | |
| 86 | |
| 87 bool any_ic_changed_; | 59 bool any_ic_changed_; |
| 88 bool code_generated_; | |
| 89 }; | 60 }; |
| 90 | 61 |
| 91 } } // namespace v8::internal | 62 } } // namespace v8::internal |
| 92 | 63 |
| 93 #endif // V8_RUNTIME_PROFILER_H_ | 64 #endif // V8_RUNTIME_PROFILER_H_ |
| OLD | NEW |