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

Side by Side Diff: src/mips64/lithium-codegen-mips64.cc

Issue 1356223004: Move heap and CPU profilers into a dedicated directory. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebaseline Created 5 years, 2 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/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/code-factory.h" 5 #include "src/code-factory.h"
6 #include "src/code-stubs.h" 6 #include "src/code-stubs.h"
7 #include "src/cpu-profiler.h"
8 #include "src/hydrogen-osr.h" 7 #include "src/hydrogen-osr.h"
9 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
10 #include "src/ic/stub-cache.h" 9 #include "src/ic/stub-cache.h"
11 #include "src/mips64/lithium-codegen-mips64.h" 10 #include "src/mips64/lithium-codegen-mips64.h"
12 #include "src/mips64/lithium-gap-resolver-mips64.h" 11 #include "src/mips64/lithium-gap-resolver-mips64.h"
12 #include "src/profiler/cpu-profiler.h"
13 13
14 namespace v8 { 14 namespace v8 {
15 namespace internal { 15 namespace internal {
16 16
17 17
18 class SafepointGenerator final : public CallWrapper { 18 class SafepointGenerator final : public CallWrapper {
19 public: 19 public:
20 SafepointGenerator(LCodeGen* codegen, 20 SafepointGenerator(LCodeGen* codegen,
21 LPointerMap* pointers, 21 LPointerMap* pointers,
22 Safepoint::DeoptMode mode) 22 Safepoint::DeoptMode mode)
(...skipping 6062 matching lines...) Expand 10 before | Expand all | Expand 10 after
6085 __ Push(at, ToRegister(instr->function())); 6085 __ Push(at, ToRegister(instr->function()));
6086 CallRuntime(Runtime::kPushBlockContext, 2, instr); 6086 CallRuntime(Runtime::kPushBlockContext, 2, instr);
6087 RecordSafepoint(Safepoint::kNoLazyDeopt); 6087 RecordSafepoint(Safepoint::kNoLazyDeopt);
6088 } 6088 }
6089 6089
6090 6090
6091 #undef __ 6091 #undef __
6092 6092
6093 } // namespace internal 6093 } // namespace internal
6094 } // namespace v8 6094 } // namespace v8
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.cc ('k') | src/mips64/macro-assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698