Index: src/hydrogen.cc |
diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
index 8765cb9e2ff63c6a53bdf447b657bc20a0a8d412..99774ae129d9d44d01a7dbfd4ac4c71a31280c87 100644 |
--- a/src/hydrogen.cc |
+++ b/src/hydrogen.cc |
@@ -3811,7 +3811,7 @@ void TestContext::BuildBranch(HValue* value) { |
void HOptimizedGraphBuilder::Bailout(const char* reason) { |
- info()->set_bailout_reason(reason); |
+ current_info()->set_bailout_reason(reason); |
SetStackOverflow(); |
} |
@@ -3868,11 +3868,11 @@ void HOptimizedGraphBuilder::VisitExpressions( |
bool HOptimizedGraphBuilder::BuildGraph() { |
- if (info()->function()->is_generator()) { |
+ if (current_info()->function()->is_generator()) { |
Bailout("function is a generator"); |
return false; |
} |
- Scope* scope = info()->scope(); |
+ Scope* scope = current_info()->scope(); |
if (scope->HasIllegalRedeclaration()) { |
Bailout("function with illegal redeclaration"); |
return false; |
@@ -3916,7 +3916,7 @@ bool HOptimizedGraphBuilder::BuildGraph() { |
AddInstruction( |
new(zone()) HStackCheck(context, HStackCheck::kFunctionEntry)); |
- VisitStatements(info()->function()->body()); |
+ VisitStatements(current_info()->function()->body()); |
if (HasStackOverflow()) return false; |
if (current_block() != NULL) { |
@@ -3928,7 +3928,7 @@ bool HOptimizedGraphBuilder::BuildGraph() { |
// last time this function was compiled, then this recompile is likely not |
// due to missing/inadequate type feedback, but rather too aggressive |
// optimization. Disable optimistic LICM in that case. |
- Handle<Code> unoptimized_code(info()->shared_info()->code()); |
+ Handle<Code> unoptimized_code(current_info()->shared_info()->code()); |
ASSERT(unoptimized_code->kind() == Code::FUNCTION); |
Handle<TypeFeedbackInfo> type_info( |
TypeFeedbackInfo::cast(unoptimized_code->type_feedback_info())); |
@@ -5117,7 +5117,7 @@ void HOptimizedGraphBuilder::VisitSwitchStatement(SwitchStatement* stmt) { |
bool HOptimizedGraphBuilder::HasOsrEntryAt(IterationStatement* statement) { |
- return statement->OsrEntryId() == info()->osr_ast_id(); |
+ return statement->OsrEntryId() == current_info()->osr_ast_id(); |
} |
@@ -5504,9 +5504,9 @@ void HOptimizedGraphBuilder::VisitFunctionLiteral(FunctionLiteral* expr) { |
ASSERT(current_block() != NULL); |
ASSERT(current_block()->HasPredecessor()); |
Handle<SharedFunctionInfo> shared_info = |
- SearchSharedFunctionInfo(info()->shared_info()->code(), expr); |
+ SearchSharedFunctionInfo(current_info()->shared_info()->code(), expr); |
if (shared_info.is_null()) { |
- shared_info = Compiler::BuildFunctionInfo(expr, info()->script()); |
+ shared_info = Compiler::BuildFunctionInfo(expr, current_info()->script()); |
} |
// We also have a stack overflow if the recursive compilation did. |
if (HasStackOverflow()) return; |
@@ -5567,10 +5567,10 @@ void HOptimizedGraphBuilder::VisitConditional(Conditional* expr) { |
HOptimizedGraphBuilder::GlobalPropertyAccess |
HOptimizedGraphBuilder::LookupGlobalProperty( |
Variable* var, LookupResult* lookup, bool is_store) { |
- if (var->is_this() || !info()->has_global_object()) { |
+ if (var->is_this() || !current_info()->has_global_object()) { |
return kUseGeneric; |
} |
- Handle<GlobalObject> global(info()->global_object()); |
+ Handle<GlobalObject> global(current_info()->global_object()); |
global->Lookup(*var->name(), lookup); |
if (!lookup->IsNormal() || |
(is_store && lookup->IsReadOnly()) || |
@@ -5585,7 +5585,7 @@ HOptimizedGraphBuilder::GlobalPropertyAccess |
HValue* HOptimizedGraphBuilder::BuildContextChainWalk(Variable* var) { |
ASSERT(var->IsContextSlot()); |
HValue* context = environment()->LookupContext(); |
- int length = info()->scope()->ContextChainLength(var->scope()); |
+ int length = current_info()->scope()->ContextChainLength(var->scope()); |
while (length-- > 0) { |
HInstruction* context_instruction = new(zone()) HOuterContext(context); |
AddInstruction(context_instruction); |
@@ -5621,12 +5621,12 @@ void HOptimizedGraphBuilder::VisitVariableProxy(VariableProxy* expr) { |
LookupGlobalProperty(variable, &lookup, false); |
if (type == kUseCell && |
- info()->global_object()->IsAccessCheckNeeded()) { |
+ current_info()->global_object()->IsAccessCheckNeeded()) { |
type = kUseGeneric; |
} |
if (type == kUseCell) { |
- Handle<GlobalObject> global(info()->global_object()); |
+ Handle<GlobalObject> global(current_info()->global_object()); |
Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(&lookup)); |
HLoadGlobalCell* instr = |
new(zone()) HLoadGlobalCell(cell, lookup.GetPropertyDetails()); |
@@ -6217,7 +6217,8 @@ HInstruction* HOptimizedGraphBuilder::BuildStoreNamedField( |
AddInstruction(new(zone()) HCheckPrototypeMaps( |
Handle<JSObject>(JSObject::cast(map->prototype())), |
Handle<JSObject>(JSObject::cast(proto)), |
- zone())); |
+ zone(), |
+ top_info())); |
} |
HObjectAccess field_access = HObjectAccess::ForField(map, lookup, name); |
@@ -6556,7 +6557,7 @@ void HOptimizedGraphBuilder::HandleGlobalVariableAssignment( |
LookupResult lookup(isolate()); |
GlobalPropertyAccess type = LookupGlobalProperty(var, &lookup, true); |
if (type == kUseCell) { |
- Handle<GlobalObject> global(info()->global_object()); |
+ Handle<GlobalObject> global(current_info()->global_object()); |
Handle<JSGlobalPropertyCell> cell(global->GetPropertyCell(&lookup)); |
HInstruction* instr = |
new(zone()) HStoreGlobalCell(value, cell, lookup.GetPropertyDetails()); |
@@ -6621,13 +6622,13 @@ void HOptimizedGraphBuilder::HandleCompoundAssignment(Assignment* expr) { |
// Bail out if we try to mutate a parameter value in a function |
// using the arguments object. We do not (yet) correctly handle the |
// arguments property of the function. |
- if (info()->scope()->arguments() != NULL) { |
+ if (current_info()->scope()->arguments() != NULL) { |
// Parameters will be allocated to context slots. We have no |
// direct way to detect that the variable is a parameter so we do |
// a linear search of the parameter variables. |
- int count = info()->scope()->num_parameters(); |
+ int count = current_info()->scope()->num_parameters(); |
for (int i = 0; i < count; ++i) { |
- if (var == info()->scope()->parameter(i)) { |
+ if (var == current_info()->scope()->parameter(i)) { |
Bailout( |
"assignment to parameter, function uses arguments object"); |
} |
@@ -6847,12 +6848,12 @@ void HOptimizedGraphBuilder::VisitAssignment(Assignment* expr) { |
// Bail out if we try to mutate a parameter value in a function using |
// the arguments object. We do not (yet) correctly handle the |
// arguments property of the function. |
- if (info()->scope()->arguments() != NULL) { |
+ if (current_info()->scope()->arguments() != NULL) { |
// Parameters will rewrite to context slots. We have no direct way |
// to detect that the variable is a parameter. |
- int count = info()->scope()->num_parameters(); |
+ int count = current_info()->scope()->num_parameters(); |
for (int i = 0; i < count; ++i) { |
- if (var == info()->scope()->parameter(i)) { |
+ if (var == current_info()->scope()->parameter(i)) { |
return Bailout("assignment to parameter in arguments object"); |
} |
} |
@@ -7014,8 +7015,8 @@ HInstruction* HOptimizedGraphBuilder::BuildLoadNamedMonomorphic( |
Handle<JSObject> holder(lookup.holder()); |
Handle<Map> holder_map(holder->map()); |
AddCheckMap(object, map); |
- AddInstruction( |
- new(zone()) HCheckPrototypeMaps(prototype, holder, zone())); |
+ AddInstruction(new(zone()) HCheckPrototypeMaps( |
+ prototype, holder, zone(), top_info())); |
HValue* holder_value = AddInstruction(new(zone()) |
HConstant(holder, Representation::Tagged())); |
return BuildLoadNamedField(holder_value, |
@@ -7029,7 +7030,8 @@ HInstruction* HOptimizedGraphBuilder::BuildLoadNamedMonomorphic( |
Handle<JSObject> holder(lookup.holder()); |
Handle<Map> holder_map(holder->map()); |
AddCheckMap(object, map); |
- AddInstruction(new(zone()) HCheckPrototypeMaps(prototype, holder, zone())); |
+ AddInstruction(new(zone()) HCheckPrototypeMaps( |
+ prototype, holder, zone(), top_info())); |
Handle<JSFunction> function(lookup.GetConstantFunctionFromMap(*holder_map)); |
return new(zone()) HConstant(function, Representation::Tagged()); |
} |
@@ -7066,8 +7068,8 @@ HInstruction* HOptimizedGraphBuilder::BuildMonomorphicElementAccess( |
isolate()->IsFastArrayConstructorPrototypeChainIntact()) { |
Handle<JSObject> prototype(JSObject::cast(map->prototype()), isolate()); |
Handle<JSObject> object_prototype = isolate()->initial_object_prototype(); |
- AddInstruction( |
- new(zone()) HCheckPrototypeMaps(prototype, object_prototype, zone())); |
+ AddInstruction(new(zone()) HCheckPrototypeMaps( |
+ prototype, object_prototype, zone(), top_info())); |
load_mode = ALLOW_RETURN_HOLE; |
graph()->MarkDependsOnEmptyArrayProtoElements(); |
} |
@@ -7582,8 +7584,8 @@ void HOptimizedGraphBuilder::AddCheckPrototypeMaps(Handle<JSObject> holder, |
Handle<Map> receiver_map) { |
if (!holder.is_null()) { |
Handle<JSObject> prototype(JSObject::cast(receiver_map->prototype())); |
- AddInstruction( |
- new(zone()) HCheckPrototypeMaps(prototype, holder, zone())); |
+ AddInstruction(new(zone()) HCheckPrototypeMaps( |
+ prototype, holder, zone(), top_info())); |
} |
} |
@@ -7728,7 +7730,7 @@ void HOptimizedGraphBuilder::HandlePolymorphicCallNamed( |
expr->ComputeTarget(map, name); |
AddCheckPrototypeMaps(expr->holder(), map); |
if (FLAG_trace_inlining && FLAG_polymorphic_inlining) { |
- Handle<JSFunction> caller = info()->closure(); |
+ Handle<JSFunction> caller = current_info()->closure(); |
SmartArrayPointer<char> caller_name = |
caller->shared()->DebugName()->ToCString(); |
PrintF("Trying to inline the polymorphic call to %s from %s\n", |
@@ -7812,7 +7814,7 @@ int HOptimizedGraphBuilder::InliningAstSize(Handle<JSFunction> target) { |
// Precondition: call is monomorphic and we have found a target with the |
// appropriate arity. |
- Handle<JSFunction> caller = info()->closure(); |
+ Handle<JSFunction> caller = current_info()->closure(); |
Handle<SharedFunctionInfo> target_shared(target->shared()); |
// Do a quick check on source code length to avoid parsing large |
@@ -7848,7 +7850,7 @@ bool HOptimizedGraphBuilder::TryInline(CallKind call_kind, |
int nodes_added = InliningAstSize(target); |
if (nodes_added == kNotInlinable) return false; |
- Handle<JSFunction> caller = info()->closure(); |
+ Handle<JSFunction> caller = current_info()->closure(); |
if (nodes_added > Min(FLAG_max_inlined_nodes, kUnlimitedMaxInlinedNodes)) { |
TraceInline(target, caller, "target AST is too large [early]"); |
@@ -7857,7 +7859,7 @@ bool HOptimizedGraphBuilder::TryInline(CallKind call_kind, |
#if !defined(V8_TARGET_ARCH_IA32) |
// Target must be able to use caller's context. |
- CompilationInfo* outer_info = info(); |
+ CompilationInfo* outer_info = current_info(); |
if (target->context() != outer_info->closure()->context() || |
outer_info->scope()->contains_with() || |
outer_info->scope()->num_heap_slots() > 0) { |
@@ -8292,7 +8294,8 @@ bool HOptimizedGraphBuilder::TryInlineBuiltinMethodCall( |
Call::GetPrototypeForPrimitiveCheck(STRING_CHECK, |
expr->holder()->GetIsolate()), |
expr->holder(), |
- zone())); |
+ zone(), |
+ top_info())); |
HInstruction* char_code = |
BuildStringCharCodeAt(context, string, index); |
if (id == kStringCharCodeAt) { |
@@ -8443,7 +8446,7 @@ bool HOptimizedGraphBuilder::TryCallApply(Call* expr) { |
return false; |
} |
- if (info()->scope()->arguments() == NULL) return false; |
+ if (current_info()->scope()->arguments() == NULL) return false; |
ZoneList<Expression*>* args = expr->arguments(); |
if (args->length() != 2) return false; |
@@ -8684,8 +8687,8 @@ void HOptimizedGraphBuilder::VisitCall(Call* expr) { |
LookupResult lookup(isolate()); |
GlobalPropertyAccess type = LookupGlobalProperty(var, &lookup, false); |
if (type == kUseCell && |
- !info()->global_object()->IsAccessCheckNeeded()) { |
- Handle<GlobalObject> global(info()->global_object()); |
+ !current_info()->global_object()->IsAccessCheckNeeded()) { |
+ Handle<GlobalObject> global(current_info()->global_object()); |
known_global_function = expr->ComputeGlobalTarget(global, &lookup); |
} |
if (known_global_function) { |
@@ -8720,7 +8723,7 @@ void HOptimizedGraphBuilder::VisitCall(Call* expr) { |
} |
if (TryInlineCall(expr)) return; |
- if (expr->target().is_identical_to(info()->closure())) { |
+ if (expr->target().is_identical_to(current_info()->closure())) { |
graph()->MarkRecursive(); |
} |
@@ -9230,13 +9233,13 @@ void HOptimizedGraphBuilder::VisitCountOperation(CountOperation* expr) { |
// Bail out if we try to mutate a parameter value in a function |
// using the arguments object. We do not (yet) correctly handle the |
// arguments property of the function. |
- if (info()->scope()->arguments() != NULL) { |
+ if (current_info()->scope()->arguments() != NULL) { |
// Parameters will rewrite to context slots. We have no direct |
// way to detect that the variable is a parameter so we use a |
// linear search of the parameter list. |
- int count = info()->scope()->num_parameters(); |
+ int count = current_info()->scope()->num_parameters(); |
for (int i = 0; i < count; ++i) { |
- if (var == info()->scope()->parameter(i)) { |
+ if (var == current_info()->scope()->parameter(i)) { |
return Bailout("assignment to parameter in arguments object"); |
} |
} |
@@ -9835,10 +9838,10 @@ void HOptimizedGraphBuilder::VisitCompareOperation(CompareOperation* expr) { |
VariableProxy* proxy = expr->right()->AsVariableProxy(); |
bool global_function = (proxy != NULL) && proxy->var()->IsUnallocated(); |
if (global_function && |
- info()->has_global_object() && |
- !info()->global_object()->IsAccessCheckNeeded()) { |
+ current_info()->has_global_object() && |
+ !current_info()->global_object()->IsAccessCheckNeeded()) { |
Handle<String> name = proxy->name(); |
- Handle<GlobalObject> global(info()->global_object()); |
+ Handle<GlobalObject> global(current_info()->global_object()); |
LookupResult lookup(isolate()); |
global->Lookup(*name, &lookup); |
if (lookup.IsNormal() && lookup.GetValue()->IsJSFunction()) { |
@@ -10278,9 +10281,9 @@ void HOptimizedGraphBuilder::VisitDeclarations( |
Handle<FixedArray> array = |
isolate()->factory()->NewFixedArray(globals_.length(), TENURED); |
for (int i = 0; i < globals_.length(); ++i) array->set(i, *globals_.at(i)); |
- int flags = DeclareGlobalsEvalFlag::encode(info()->is_eval()) | |
- DeclareGlobalsNativeFlag::encode(info()->is_native()) | |
- DeclareGlobalsLanguageMode::encode(info()->language_mode()); |
+ int flags = DeclareGlobalsEvalFlag::encode(current_info()->is_eval()) | |
+ DeclareGlobalsNativeFlag::encode(current_info()->is_native()) | |
+ DeclareGlobalsLanguageMode::encode(current_info()->language_mode()); |
HInstruction* result = new(zone()) HDeclareGlobals( |
environment()->LookupContext(), array, flags); |
AddInstruction(result); |
@@ -10334,8 +10337,8 @@ void HOptimizedGraphBuilder::VisitFunctionDeclaration( |
switch (variable->location()) { |
case Variable::UNALLOCATED: { |
globals_.Add(variable->name(), zone()); |
- Handle<SharedFunctionInfo> function = |
- Compiler::BuildFunctionInfo(declaration->fun(), info()->script()); |
+ Handle<SharedFunctionInfo> function = Compiler::BuildFunctionInfo( |
+ declaration->fun(), current_info()->script()); |
// Check for stack-overflow exception. |
if (function.is_null()) return SetStackOverflow(); |
globals_.Add(function, zone()); |