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

Side by Side Diff: src/codegen.cc

Issue 2150523002: [turbofan] Do not use the self reference for turbofan functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Pass in the self reference instead of using an is_self_ref_available flag. Created 4 years, 5 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/codegen.h ('k') | src/compiler/code-generator.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/codegen.h" 5 #include "src/codegen.h"
6 6
7 #if defined(V8_OS_AIX) 7 #if defined(V8_OS_AIX)
8 #include <fenv.h> // NOLINT(build/c++11) 8 #include <fenv.h> // NOLINT(build/c++11)
9 #endif 9 #endif
10 #include "src/ast/prettyprinter.h" 10 #include "src/ast/prettyprinter.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 if (info->parse_info() && print_ast) { 114 if (info->parse_info() && print_ast) {
115 PrintF("--- AST ---\n%s\n", 115 PrintF("--- AST ---\n%s\n",
116 AstPrinter(info->isolate()).PrintProgram(info->literal())); 116 AstPrinter(info->isolate()).PrintProgram(info->literal()));
117 } 117 }
118 #endif // DEBUG 118 #endif // DEBUG
119 } 119 }
120 120
121 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm, 121 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
122 EhFrameWriter* eh_frame_writer, 122 EhFrameWriter* eh_frame_writer,
123 CompilationInfo* info) { 123 CompilationInfo* info,
124 Handle<Object> self_reference) {
124 Isolate* isolate = info->isolate(); 125 Isolate* isolate = info->isolate();
125 126
126 // Allocate and install the code. 127 // Allocate and install the code.
127 CodeDesc desc; 128 CodeDesc desc;
128 Code::Flags flags = info->code_flags(); 129 Code::Flags flags = info->code_flags();
129 bool is_crankshafted = 130 bool is_crankshafted =
130 Code::ExtractKindFromFlags(flags) == Code::OPTIMIZED_FUNCTION || 131 Code::ExtractKindFromFlags(flags) == Code::OPTIMIZED_FUNCTION ||
131 info->IsStub(); 132 info->IsStub();
132 masm->GetCode(&desc); 133 masm->GetCode(&desc);
133 if (eh_frame_writer) eh_frame_writer->GetEhFrame(&desc); 134 if (eh_frame_writer) eh_frame_writer->GetEhFrame(&desc);
134 Handle<Code> code = 135 Handle<Code> code = isolate->factory()->NewCode(
135 isolate->factory()->NewCode(desc, flags, masm->CodeObject(), 136 desc, flags, self_reference, false, is_crankshafted,
136 false, is_crankshafted, 137 info->prologue_offset(), info->is_debug() && !is_crankshafted);
137 info->prologue_offset(),
138 info->is_debug() && !is_crankshafted);
139 isolate->counters()->total_compiled_code_size()->Increment( 138 isolate->counters()->total_compiled_code_size()->Increment(
140 code->instruction_size()); 139 code->instruction_size());
141 isolate->heap()->IncrementCodeGeneratedBytes(is_crankshafted, 140 isolate->heap()->IncrementCodeGeneratedBytes(is_crankshafted,
142 code->instruction_size()); 141 code->instruction_size());
143 return code; 142 return code;
144 } 143 }
145 144
146 145
147 void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) { 146 void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
148 #ifdef ENABLE_DISASSEMBLER 147 #ifdef ENABLE_DISASSEMBLER
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 os << "source_position = " << shared->start_position() << "\n"; 195 os << "source_position = " << shared->start_position() << "\n";
197 } 196 }
198 code->Disassemble(debug_name.get(), os); 197 code->Disassemble(debug_name.get(), os);
199 os << "--- End code ---\n"; 198 os << "--- End code ---\n";
200 } 199 }
201 #endif // ENABLE_DISASSEMBLER 200 #endif // ENABLE_DISASSEMBLER
202 } 201 }
203 202
204 } // namespace internal 203 } // namespace internal
205 } // namespace v8 204 } // namespace v8
OLDNEW
« no previous file with comments | « src/codegen.h ('k') | src/compiler/code-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698