2012-02-08 13:53:24 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
#include "v8.h"
|
|
|
|
|
2008-10-10 00:00:52 +00:00
|
|
|
#include "bootstrapper.h"
|
2011-04-07 14:42:37 +00:00
|
|
|
#include "codegen.h"
|
2009-11-04 17:59:24 +00:00
|
|
|
#include "compiler.h"
|
2013-07-03 15:39:18 +00:00
|
|
|
#include "cpu-profiler.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
#include "debug.h"
|
2008-10-10 00:00:52 +00:00
|
|
|
#include "prettyprinter.h"
|
2009-03-31 09:02:40 +00:00
|
|
|
#include "rewriter.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
#include "runtime.h"
|
|
|
|
#include "stub-cache.h"
|
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2010-02-08 08:54:27 +00:00
|
|
|
#define __ ACCESS_MASM(masm_)
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
Comment::Comment(MacroAssembler* masm, const char* msg)
|
|
|
|
: masm_(masm), msg_(msg) {
|
|
|
|
__ RecordComment(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Comment::~Comment() {
|
|
|
|
if (msg_[0] == '[') __ RecordComment("]");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
#undef __
|
|
|
|
|
2009-05-15 11:09:51 +00:00
|
|
|
|
2013-05-24 10:57:59 +00:00
|
|
|
void CodeGenerator::MakeCodePrologue(CompilationInfo* info, const char* kind) {
|
2008-10-10 00:00:52 +00:00
|
|
|
bool print_source = false;
|
|
|
|
bool print_ast = false;
|
|
|
|
const char* ftype;
|
|
|
|
|
2013-05-24 10:57:59 +00:00
|
|
|
if (info->isolate()->bootstrapper()->IsActive()) {
|
2008-10-10 00:00:52 +00:00
|
|
|
print_source = FLAG_print_builtin_source;
|
|
|
|
print_ast = FLAG_print_builtin_ast;
|
|
|
|
ftype = "builtin";
|
|
|
|
} else {
|
|
|
|
print_source = FLAG_print_source;
|
|
|
|
print_ast = FLAG_print_ast;
|
|
|
|
ftype = "user-defined";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FLAG_trace_codegen || print_source || print_ast) {
|
2013-05-24 10:57:59 +00:00
|
|
|
PrintF("[generating %s code for %s function: ", kind, ftype);
|
2012-12-19 09:31:12 +00:00
|
|
|
if (info->IsStub()) {
|
|
|
|
const char* name =
|
|
|
|
CodeStub::MajorName(info->code_stub()->MajorKey(), true);
|
|
|
|
PrintF("%s", name == NULL ? "<unknown>" : name);
|
|
|
|
} else {
|
2013-12-09 07:41:20 +00:00
|
|
|
PrintF("%s", info->function()->debug_name()->ToCString().get());
|
2012-12-19 09:31:12 +00:00
|
|
|
}
|
2013-05-24 10:57:59 +00:00
|
|
|
PrintF("]\n");
|
2008-10-10 00:00:52 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 10:57:59 +00:00
|
|
|
#ifdef DEBUG
|
2013-01-14 08:36:38 +00:00
|
|
|
if (!info->IsStub() && print_source) {
|
2010-02-03 16:12:55 +00:00
|
|
|
PrintF("--- Source from AST ---\n%s\n",
|
2014-01-21 16:22:52 +00:00
|
|
|
PrettyPrinter(info->zone()).PrintProgram(info->function()));
|
2008-10-10 00:00:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-14 08:36:38 +00:00
|
|
|
if (!info->IsStub() && print_ast) {
|
2010-02-03 16:12:55 +00:00
|
|
|
PrintF("--- AST ---\n%s\n",
|
2014-01-21 16:22:52 +00:00
|
|
|
AstPrinter(info->zone()).PrintProgram(info->function()));
|
2008-10-10 00:00:52 +00:00
|
|
|
}
|
|
|
|
#endif // DEBUG
|
Initial infrastructure for fast compilation of top-level code. The
fast code generator is optimized for compilation time and code size.
Currently it is only implemented on IA32. It is potentially triggered
for any code in the global scope (including code eval'd in the global
scope). It performs a syntactic check and chooses to compile in fast
mode if the AST contains only supported constructs and matches some
other constraints.
Initially supported constructs are
* ExpressionStatement,
* ReturnStatement,
* VariableProxy (variable references) to parameters and
stack-allocated locals,
* Assignment with lhs a parameter or stack-allocated local, and
* Literal
This allows compilation of literals at the top level and not much
else.
All intermediate values are allocated to temporaries and the stack is
used for all temporaries. The extra memory traffic is a known issue.
The code generated for 'true' is:
0 push ebp
1 mov ebp,esp
3 push esi
4 push edi
5 push 0xf5cca135 ;; object: 0xf5cca135 <undefined>
10 cmp esp,[0x8277efc]
16 jnc 27 (0xf5cbbb1b)
22 call 0xf5cac960 ;; code: STUB, StackCheck, minor: 0
27 push 0xf5cca161 ;; object: 0xf5cca161 <true>
32 mov eax,[esp]
35 mov [ebp+0xf4],eax
38 pop eax
39 mov eax,[ebp+0xf4]
42 mov esp,ebp ;; js return
44 pop ebp
45 ret 0x4
48 mov eax,0xf5cca135 ;; object: 0xf5cca135 <undefined>
53 mov esp,ebp ;; js return
55 pop ebp
56 ret 0x4
Review URL: http://codereview.chromium.org/273050
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2009-10-14 19:30:50 +00:00
|
|
|
}
|
2008-10-10 00:00:52 +00:00
|
|
|
|
|
|
|
|
2010-02-03 16:12:55 +00:00
|
|
|
Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
|
Initial infrastructure for fast compilation of top-level code. The
fast code generator is optimized for compilation time and code size.
Currently it is only implemented on IA32. It is potentially triggered
for any code in the global scope (including code eval'd in the global
scope). It performs a syntactic check and chooses to compile in fast
mode if the AST contains only supported constructs and matches some
other constraints.
Initially supported constructs are
* ExpressionStatement,
* ReturnStatement,
* VariableProxy (variable references) to parameters and
stack-allocated locals,
* Assignment with lhs a parameter or stack-allocated local, and
* Literal
This allows compilation of literals at the top level and not much
else.
All intermediate values are allocated to temporaries and the stack is
used for all temporaries. The extra memory traffic is a known issue.
The code generated for 'true' is:
0 push ebp
1 mov ebp,esp
3 push esi
4 push edi
5 push 0xf5cca135 ;; object: 0xf5cca135 <undefined>
10 cmp esp,[0x8277efc]
16 jnc 27 (0xf5cbbb1b)
22 call 0xf5cac960 ;; code: STUB, StackCheck, minor: 0
27 push 0xf5cca161 ;; object: 0xf5cca161 <true>
32 mov eax,[esp]
35 mov [ebp+0xf4],eax
38 pop eax
39 mov eax,[ebp+0xf4]
42 mov esp,ebp ;; js return
44 pop ebp
45 ret 0x4
48 mov eax,0xf5cca135 ;; object: 0xf5cca135 <undefined>
53 mov esp,ebp ;; js return
55 pop ebp
56 ret 0x4
Review URL: http://codereview.chromium.org/273050
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2009-10-14 19:30:50 +00:00
|
|
|
Code::Flags flags,
|
2010-02-03 16:12:55 +00:00
|
|
|
CompilationInfo* info) {
|
2011-03-23 11:13:07 +00:00
|
|
|
Isolate* isolate = info->isolate();
|
|
|
|
|
Initial infrastructure for fast compilation of top-level code. The
fast code generator is optimized for compilation time and code size.
Currently it is only implemented on IA32. It is potentially triggered
for any code in the global scope (including code eval'd in the global
scope). It performs a syntactic check and chooses to compile in fast
mode if the AST contains only supported constructs and matches some
other constraints.
Initially supported constructs are
* ExpressionStatement,
* ReturnStatement,
* VariableProxy (variable references) to parameters and
stack-allocated locals,
* Assignment with lhs a parameter or stack-allocated local, and
* Literal
This allows compilation of literals at the top level and not much
else.
All intermediate values are allocated to temporaries and the stack is
used for all temporaries. The extra memory traffic is a known issue.
The code generated for 'true' is:
0 push ebp
1 mov ebp,esp
3 push esi
4 push edi
5 push 0xf5cca135 ;; object: 0xf5cca135 <undefined>
10 cmp esp,[0x8277efc]
16 jnc 27 (0xf5cbbb1b)
22 call 0xf5cac960 ;; code: STUB, StackCheck, minor: 0
27 push 0xf5cca161 ;; object: 0xf5cca161 <true>
32 mov eax,[esp]
35 mov [ebp+0xf4],eax
38 pop eax
39 mov eax,[ebp+0xf4]
42 mov esp,ebp ;; js return
44 pop ebp
45 ret 0x4
48 mov eax,0xf5cca135 ;; object: 0xf5cca135 <undefined>
53 mov esp,ebp ;; js return
55 pop ebp
56 ret 0x4
Review URL: http://codereview.chromium.org/273050
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2009-10-14 19:30:50 +00:00
|
|
|
// Allocate and install the code.
|
2008-10-10 00:00:52 +00:00
|
|
|
CodeDesc desc;
|
2013-04-18 09:50:46 +00:00
|
|
|
bool is_crankshafted =
|
|
|
|
Code::ExtractKindFromFlags(flags) == Code::OPTIMIZED_FUNCTION ||
|
|
|
|
info->IsStub();
|
Initial infrastructure for fast compilation of top-level code. The
fast code generator is optimized for compilation time and code size.
Currently it is only implemented on IA32. It is potentially triggered
for any code in the global scope (including code eval'd in the global
scope). It performs a syntactic check and chooses to compile in fast
mode if the AST contains only supported constructs and matches some
other constraints.
Initially supported constructs are
* ExpressionStatement,
* ReturnStatement,
* VariableProxy (variable references) to parameters and
stack-allocated locals,
* Assignment with lhs a parameter or stack-allocated local, and
* Literal
This allows compilation of literals at the top level and not much
else.
All intermediate values are allocated to temporaries and the stack is
used for all temporaries. The extra memory traffic is a known issue.
The code generated for 'true' is:
0 push ebp
1 mov ebp,esp
3 push esi
4 push edi
5 push 0xf5cca135 ;; object: 0xf5cca135 <undefined>
10 cmp esp,[0x8277efc]
16 jnc 27 (0xf5cbbb1b)
22 call 0xf5cac960 ;; code: STUB, StackCheck, minor: 0
27 push 0xf5cca161 ;; object: 0xf5cca161 <true>
32 mov eax,[esp]
35 mov [ebp+0xf4],eax
38 pop eax
39 mov eax,[ebp+0xf4]
42 mov esp,ebp ;; js return
44 pop ebp
45 ret 0x4
48 mov eax,0xf5cca135 ;; object: 0xf5cca135 <undefined>
53 mov esp,ebp ;; js return
55 pop ebp
56 ret 0x4
Review URL: http://codereview.chromium.org/273050
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2009-10-14 19:30:50 +00:00
|
|
|
masm->GetCode(&desc);
|
2011-03-23 11:13:07 +00:00
|
|
|
Handle<Code> code =
|
2013-04-18 09:50:46 +00:00
|
|
|
isolate->factory()->NewCode(desc, flags, masm->CodeObject(),
|
2013-10-23 13:48:04 +00:00
|
|
|
false, is_crankshafted,
|
|
|
|
info->prologue_offset());
|
2013-08-16 19:52:29 +00:00
|
|
|
isolate->counters()->total_compiled_code_size()->Increment(
|
|
|
|
code->instruction_size());
|
2013-10-14 14:00:28 +00:00
|
|
|
isolate->heap()->IncrementCodeGeneratedBytes(is_crankshafted,
|
|
|
|
code->instruction_size());
|
2010-12-07 11:31:57 +00:00
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CodeGenerator::PrintCode(Handle<Code> code, CompilationInfo* info) {
|
2008-10-10 00:00:52 +00:00
|
|
|
#ifdef ENABLE_DISASSEMBLER
|
2013-07-24 14:28:56 +00:00
|
|
|
AllowDeferredHandleDereference allow_deference_for_print_code;
|
2013-09-03 06:57:16 +00:00
|
|
|
bool print_code = info->isolate()->bootstrapper()->IsActive()
|
Initial infrastructure for fast compilation of top-level code. The
fast code generator is optimized for compilation time and code size.
Currently it is only implemented on IA32. It is potentially triggered
for any code in the global scope (including code eval'd in the global
scope). It performs a syntactic check and chooses to compile in fast
mode if the AST contains only supported constructs and matches some
other constraints.
Initially supported constructs are
* ExpressionStatement,
* ReturnStatement,
* VariableProxy (variable references) to parameters and
stack-allocated locals,
* Assignment with lhs a parameter or stack-allocated local, and
* Literal
This allows compilation of literals at the top level and not much
else.
All intermediate values are allocated to temporaries and the stack is
used for all temporaries. The extra memory traffic is a known issue.
The code generated for 'true' is:
0 push ebp
1 mov ebp,esp
3 push esi
4 push edi
5 push 0xf5cca135 ;; object: 0xf5cca135 <undefined>
10 cmp esp,[0x8277efc]
16 jnc 27 (0xf5cbbb1b)
22 call 0xf5cac960 ;; code: STUB, StackCheck, minor: 0
27 push 0xf5cca161 ;; object: 0xf5cca161 <true>
32 mov eax,[esp]
35 mov [ebp+0xf4],eax
38 pop eax
39 mov eax,[ebp+0xf4]
42 mov esp,ebp ;; js return
44 pop ebp
45 ret 0x4
48 mov eax,0xf5cca135 ;; object: 0xf5cca135 <undefined>
53 mov esp,ebp ;; js return
55 pop ebp
56 ret 0x4
Review URL: http://codereview.chromium.org/273050
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3067 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2009-10-14 19:30:50 +00:00
|
|
|
? FLAG_print_builtin_code
|
2013-02-05 18:00:42 +00:00
|
|
|
: (FLAG_print_code ||
|
|
|
|
(info->IsStub() && FLAG_print_code_stubs) ||
|
|
|
|
(info->IsOptimizing() && FLAG_print_opt_code));
|
2012-03-14 09:45:17 +00:00
|
|
|
if (print_code) {
|
2008-10-10 00:00:52 +00:00
|
|
|
// Print the source code if available.
|
2012-03-14 09:45:17 +00:00
|
|
|
FunctionLiteral* function = info->function();
|
2013-10-21 13:35:48 +00:00
|
|
|
bool print_source = code->kind() == Code::OPTIMIZED_FUNCTION ||
|
|
|
|
code->kind() == Code::FUNCTION;
|
2013-11-07 16:35:27 +00:00
|
|
|
|
|
|
|
CodeTracer::Scope tracing_scope(info->isolate()->GetCodeTracer());
|
2013-10-21 13:35:48 +00:00
|
|
|
if (print_source) {
|
2012-12-18 16:25:45 +00:00
|
|
|
Handle<Script> script = info->script();
|
|
|
|
if (!script->IsUndefined() && !script->source()->IsUndefined()) {
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "--- Raw source ---\n");
|
2012-12-31 11:13:50 +00:00
|
|
|
ConsStringIteratorOp op;
|
|
|
|
StringCharacterStream stream(String::cast(script->source()),
|
|
|
|
&op,
|
|
|
|
function->start_position());
|
2012-12-18 16:25:45 +00:00
|
|
|
// fun->end_position() points to the last character in the stream. We
|
|
|
|
// need to compensate by adding one to calculate the length.
|
|
|
|
int source_len =
|
|
|
|
function->end_position() - function->start_position() + 1;
|
|
|
|
for (int i = 0; i < source_len; i++) {
|
2013-11-07 16:35:27 +00:00
|
|
|
if (stream.HasMore()) {
|
|
|
|
PrintF(tracing_scope.file(), "%c", stream.GetNext());
|
|
|
|
}
|
2012-12-18 16:25:45 +00:00
|
|
|
}
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "\n\n");
|
2008-10-10 00:00:52 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-17 14:16:00 +00:00
|
|
|
if (info->IsOptimizing()) {
|
|
|
|
if (FLAG_print_unopt_code) {
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "--- Unoptimized code ---\n");
|
2010-12-17 14:16:00 +00:00
|
|
|
info->closure()->shared()->code()->Disassemble(
|
2013-12-09 07:41:20 +00:00
|
|
|
function->debug_name()->ToCString().get(), tracing_scope.file());
|
2010-12-17 14:16:00 +00:00
|
|
|
}
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "--- Optimized code ---\n");
|
2014-02-13 16:09:28 +00:00
|
|
|
PrintF(tracing_scope.file(),
|
|
|
|
"optimization_id = %d\n", info->optimization_id());
|
2010-12-17 14:16:00 +00:00
|
|
|
} else {
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "--- Code ---\n");
|
2010-12-17 14:16:00 +00:00
|
|
|
}
|
2013-10-21 13:35:48 +00:00
|
|
|
if (print_source) {
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(),
|
|
|
|
"source_position = %d\n", function->start_position());
|
2013-10-21 13:35:48 +00:00
|
|
|
}
|
2012-12-18 16:25:45 +00:00
|
|
|
if (info->IsStub()) {
|
|
|
|
CodeStub::Major major_key = info->code_stub()->MajorKey();
|
2013-11-07 16:35:27 +00:00
|
|
|
code->Disassemble(CodeStub::MajorName(major_key, false),
|
|
|
|
tracing_scope.file());
|
2012-12-18 16:25:45 +00:00
|
|
|
} else {
|
2013-12-09 07:41:20 +00:00
|
|
|
code->Disassemble(function->debug_name()->ToCString().get(),
|
2013-11-07 16:35:27 +00:00
|
|
|
tracing_scope.file());
|
2012-12-18 16:25:45 +00:00
|
|
|
}
|
2013-11-07 16:35:27 +00:00
|
|
|
PrintF(tracing_scope.file(), "--- End code ---\n");
|
2008-10-10 00:00:52 +00:00
|
|
|
}
|
|
|
|
#endif // ENABLE_DISASSEMBLER
|
|
|
|
}
|
|
|
|
|
2011-03-18 20:35:07 +00:00
|
|
|
|
2010-06-08 12:04:49 +00:00
|
|
|
bool CodeGenerator::RecordPositions(MacroAssembler* masm,
|
|
|
|
int pos,
|
|
|
|
bool right_here) {
|
2009-09-28 12:01:05 +00:00
|
|
|
if (pos != RelocInfo::kNoPosition) {
|
2010-11-04 15:12:03 +00:00
|
|
|
masm->positions_recorder()->RecordStatementPosition(pos);
|
|
|
|
masm->positions_recorder()->RecordPosition(pos);
|
2010-06-08 12:04:49 +00:00
|
|
|
if (right_here) {
|
2010-11-04 15:12:03 +00:00
|
|
|
return masm->positions_recorder()->WriteRecordedPositions();
|
2010-06-08 12:04:49 +00:00
|
|
|
}
|
2009-02-27 13:00:32 +00:00
|
|
|
}
|
2010-06-08 12:04:49 +00:00
|
|
|
return false;
|
2009-02-27 13:00:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-06 11:04:03 +00:00
|
|
|
void ArgumentsAccessStub::Generate(MacroAssembler* masm) {
|
|
|
|
switch (type_) {
|
2011-03-17 20:28:41 +00:00
|
|
|
case READ_ELEMENT:
|
|
|
|
GenerateReadElement(masm);
|
|
|
|
break;
|
2014-03-11 14:39:08 +00:00
|
|
|
case NEW_SLOPPY_FAST:
|
|
|
|
GenerateNewSloppyFast(masm);
|
2011-06-16 14:12:58 +00:00
|
|
|
break;
|
2014-03-11 14:39:08 +00:00
|
|
|
case NEW_SLOPPY_SLOW:
|
|
|
|
GenerateNewSloppySlow(masm);
|
2011-06-16 14:12:58 +00:00
|
|
|
break;
|
2011-03-17 20:28:41 +00:00
|
|
|
case NEW_STRICT:
|
2011-06-16 14:12:58 +00:00
|
|
|
GenerateNewStrict(masm);
|
2011-03-17 20:28:41 +00:00
|
|
|
break;
|
2008-10-06 11:04:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-02 18:35:53 +00:00
|
|
|
int CEntryStub::MinorKey() {
|
2011-09-19 18:36:47 +00:00
|
|
|
int result = (save_doubles_ == kSaveFPRegs) ? 1 : 0;
|
2010-08-27 07:08:03 +00:00
|
|
|
ASSERT(result_size_ == 1 || result_size_ == 2);
|
2010-02-02 18:35:53 +00:00
|
|
|
#ifdef _WIN64
|
2010-12-07 11:31:57 +00:00
|
|
|
return result | ((result_size_ == 1) ? 0 : 2);
|
2010-02-02 18:35:53 +00:00
|
|
|
#else
|
2010-12-07 11:31:57 +00:00
|
|
|
return result;
|
2010-02-02 18:35:53 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
} } // namespace v8::internal
|