Move CompilationDependencies into compiler.

- Move the CompilationDependencies member of OptimizedCompilationInfo
  to Turbofan's PipelineData (and thus into the compiler namespace).
- Move compilation-dependencies.{cc,h} to the compiler directory.

Bug: v8:7902
Change-Id: I5471d0923daf83abe975357325db5bc5ad0a8571
Reviewed-on: https://chromium-review.googlesource.com/1127793
Commit-Queue: Georg Neis <neis@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#54295}
This commit is contained in:
Georg Neis 2018-07-06 13:05:49 +02:00 committed by Commit Bot
parent 30b7345fb0
commit cf87e94c01
24 changed files with 73 additions and 54 deletions

View File

@ -1605,8 +1605,6 @@ v8_source_set("v8_base") {
"src/collector.h", "src/collector.h",
"src/compilation-cache.cc", "src/compilation-cache.cc",
"src/compilation-cache.h", "src/compilation-cache.h",
"src/compilation-dependencies.cc",
"src/compilation-dependencies.h",
"src/compilation-statistics.cc", "src/compilation-statistics.cc",
"src/compilation-statistics.h", "src/compilation-statistics.h",
"src/compiler-dispatcher/compiler-dispatcher-job.cc", "src/compiler-dispatcher/compiler-dispatcher-job.cc",
@ -1652,6 +1650,8 @@ v8_source_set("v8_base") {
"src/compiler/common-operator-reducer.h", "src/compiler/common-operator-reducer.h",
"src/compiler/common-operator.cc", "src/compiler/common-operator.cc",
"src/compiler/common-operator.h", "src/compiler/common-operator.h",
"src/compiler/compilation-dependencies.cc",
"src/compiler/compilation-dependencies.h",
"src/compiler/compiler-source-position-table.cc", "src/compiler/compiler-source-position-table.cc",
"src/compiler/compiler-source-position-table.h", "src/compiler/compiler-source-position-table.h",
"src/compiler/constant-folding-reducer.cc", "src/compiler/constant-folding-reducer.cc",

View File

@ -4,9 +4,10 @@
#include <ostream> #include <ostream>
#include "src/accessors.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-info.h" #include "src/compiler/access-info.h"
#include "src/accessors.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/type-cache.h" #include "src/compiler/type-cache.h"
#include "src/field-index-inl.h" #include "src/field-index-inl.h"
#include "src/field-type.h" #include "src/field-type.h"

View File

@ -18,12 +18,12 @@ namespace v8 {
namespace internal { namespace internal {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class Factory; class Factory;
namespace compiler { namespace compiler {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class Type; class Type;
class TypeCache; class TypeCache;

View File

@ -2,13 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#include "src/compilation-dependencies.h" #include "src/compiler/compilation-dependencies.h"
#include "src/handles-inl.h" #include "src/handles-inl.h"
#include "src/objects-inl.h" #include "src/objects-inl.h"
namespace v8 { namespace v8 {
namespace internal { namespace internal {
namespace compiler {
// TODO(neis): Move these to the DependentCode class. // TODO(neis): Move these to the DependentCode class.
namespace { namespace {
@ -384,5 +385,6 @@ void CompilationDependencies::DependOnElementsKinds(
CHECK_EQ(site->nested_site(), Smi::kZero); CHECK_EQ(site->nested_site(), Smi::kZero);
} }
} // namespace compiler
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8

View File

@ -2,17 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
#ifndef V8_COMPILATION_DEPENDENCIES_H_ #ifndef V8_COMPILER_COMPILATION_DEPENDENCIES_H_
#define V8_COMPILATION_DEPENDENCIES_H_ #define V8_COMPILER_COMPILATION_DEPENDENCIES_H_
#include "src/objects.h" #include "src/objects.h"
#include "src/zone/zone-containers.h" #include "src/zone/zone-containers.h"
namespace v8 { namespace v8 {
namespace internal { namespace internal {
namespace compiler {
// Collects and installs dependencies of the code that is being generated. // Collects and installs dependencies of the code that is being generated.
class V8_EXPORT_PRIVATE CompilationDependencies { class V8_EXPORT_PRIVATE CompilationDependencies : public ZoneObject {
public: public:
CompilationDependencies(Isolate* isolate, Zone* zone); CompilationDependencies(Isolate* isolate, Zone* zone);
@ -69,7 +70,8 @@ class V8_EXPORT_PRIVATE CompilationDependencies {
ZoneForwardList<Dependency*> dependencies_; ZoneForwardList<Dependency*> dependencies_;
}; };
} // namespace compiler
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8
#endif // V8_COMPILATION_DEPENDENCIES_H_ #endif // V8_COMPILER_COMPILATION_DEPENDENCIES_H_

View File

@ -9,10 +9,10 @@
#include "src/builtins/builtins-utils.h" #include "src/builtins/builtins-utils.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/code-stubs.h" #include "src/code-stubs.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/access-info.h" #include "src/compiler/access-info.h"
#include "src/compiler/allocation-builder.h" #include "src/compiler/allocation-builder.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/linkage.h" #include "src/compiler/linkage.h"
#include "src/compiler/node-matchers.h" #include "src/compiler/node-matchers.h"

View File

@ -14,7 +14,6 @@ namespace v8 {
namespace internal { namespace internal {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class Factory; class Factory;
class VectorSlotPair; class VectorSlotPair;
@ -23,6 +22,7 @@ namespace compiler {
// Forward declarations. // Forward declarations.
class CallFrequency; class CallFrequency;
class CommonOperatorBuilder; class CommonOperatorBuilder;
class CompilationDependencies;
struct FieldAccess; struct FieldAccess;
class JSGraph; class JSGraph;
class JSHeapBroker; class JSHeapBroker;

View File

@ -5,10 +5,10 @@
#include "src/compiler/js-create-lowering.h" #include "src/compiler/js-create-lowering.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/allocation-builder.h" #include "src/compiler/allocation-builder.h"
#include "src/compiler/common-operator.h" #include "src/compiler/common-operator.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/js-operator.h" #include "src/compiler/js-operator.h"
#include "src/compiler/linkage.h" #include "src/compiler/linkage.h"

View File

@ -14,7 +14,6 @@ namespace internal {
// Forward declarations. // Forward declarations.
class AllocationSiteUsageContext; class AllocationSiteUsageContext;
class CompilationDependencies;
class Factory; class Factory;
class JSRegExp; class JSRegExp;
@ -22,6 +21,7 @@ namespace compiler {
// Forward declarations. // Forward declarations.
class CommonOperatorBuilder; class CommonOperatorBuilder;
class CompilationDependencies;
class JSGraph; class JSGraph;
class JSOperatorBuilder; class JSOperatorBuilder;
class MachineOperatorBuilder; class MachineOperatorBuilder;

View File

@ -7,10 +7,10 @@
#include "src/accessors.h" #include "src/accessors.h"
#include "src/api.h" #include "src/api.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/access-info.h" #include "src/compiler/access-info.h"
#include "src/compiler/allocation-builder.h" #include "src/compiler/allocation-builder.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/js-operator.h" #include "src/compiler/js-operator.h"
#include "src/compiler/linkage.h" #include "src/compiler/linkage.h"

View File

@ -14,7 +14,6 @@ namespace v8 {
namespace internal { namespace internal {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class Factory; class Factory;
class FeedbackNexus; class FeedbackNexus;
@ -23,6 +22,7 @@ namespace compiler {
// Forward declarations. // Forward declarations.
enum class AccessMode; enum class AccessMode;
class CommonOperatorBuilder; class CommonOperatorBuilder;
class CompilationDependencies;
class ElementAccessInfo; class ElementAccessInfo;
class JSGraph; class JSGraph;
class JSHeapBroker; class JSHeapBroker;

View File

@ -21,6 +21,7 @@
#include "src/compiler/checkpoint-elimination.h" #include "src/compiler/checkpoint-elimination.h"
#include "src/compiler/code-generator.h" #include "src/compiler/code-generator.h"
#include "src/compiler/common-operator-reducer.h" #include "src/compiler/common-operator-reducer.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/compiler-source-position-table.h" #include "src/compiler/compiler-source-position-table.h"
#include "src/compiler/constant-folding-reducer.h" #include "src/compiler/constant-folding-reducer.h"
#include "src/compiler/control-flow-optimizer.h" #include "src/compiler/control-flow-optimizer.h"
@ -133,6 +134,8 @@ class PipelineData {
jsgraph_ = new (graph_zone_) jsgraph_ = new (graph_zone_)
JSGraph(isolate_, graph_, common_, javascript_, simplified_, machine_); JSGraph(isolate_, graph_, common_, javascript_, simplified_, machine_);
js_heap_broker_ = new (graph_zone_) JSHeapBroker(isolate_); js_heap_broker_ = new (graph_zone_) JSHeapBroker(isolate_);
dependencies_ =
new (codegen_zone_) CompilationDependencies(isolate_, codegen_zone_);
} }
// For WebAssembly compile entry point. // For WebAssembly compile entry point.
@ -220,6 +223,7 @@ class PipelineData {
Isolate* isolate() const { return isolate_; } Isolate* isolate() const { return isolate_; }
OptimizedCompilationInfo* info() const { return info_; } OptimizedCompilationInfo* info() const { return info_; }
ZoneStats* zone_stats() const { return zone_stats_; } ZoneStats* zone_stats() const { return zone_stats_; }
CompilationDependencies* dependencies() const { return dependencies_; }
PipelineStatistics* pipeline_statistics() { return pipeline_statistics_; } PipelineStatistics* pipeline_statistics() { return pipeline_statistics_; }
OsrHelper* osr_helper() { return &(*osr_helper_); } OsrHelper* osr_helper() { return &(*osr_helper_); }
bool compilation_failed() const { return compilation_failed_; } bool compilation_failed() const { return compilation_failed_; }
@ -317,6 +321,7 @@ class PipelineData {
if (codegen_zone_ == nullptr) return; if (codegen_zone_ == nullptr) return;
codegen_zone_scope_.Destroy(); codegen_zone_scope_.Destroy();
codegen_zone_ = nullptr; codegen_zone_ = nullptr;
dependencies_ = nullptr;
frame_ = nullptr; frame_ = nullptr;
} }
@ -442,6 +447,7 @@ class PipelineData {
// is destroyed. // is destroyed.
ZoneStats::Scope codegen_zone_scope_; ZoneStats::Scope codegen_zone_scope_;
Zone* codegen_zone_; Zone* codegen_zone_;
CompilationDependencies* dependencies_ = nullptr;
Frame* frame_ = nullptr; Frame* frame_ = nullptr;
// All objects in the following group of fields are allocated in // All objects in the following group of fields are allocated in
@ -495,6 +501,9 @@ class PipelineImpl final {
// Step D. Run the code finalization pass. // Step D. Run the code finalization pass.
MaybeHandle<Code> FinalizeCode(); MaybeHandle<Code> FinalizeCode();
// Step E. Install any code dependencies.
bool CommitDependencies(Handle<Code> code);
void VerifyGeneratedCodeIsIdempotent(); void VerifyGeneratedCodeIsIdempotent();
void RunPrintAndVerify(const char* phase, bool untyped = false); void RunPrintAndVerify(const char* phase, bool untyped = false);
MaybeHandle<Code> GenerateCode(CallDescriptor* call_descriptor); MaybeHandle<Code> GenerateCode(CallDescriptor* call_descriptor);
@ -926,11 +935,11 @@ PipelineCompilationJob::Status PipelineCompilationJob::FinalizeJobImpl(
} }
return FAILED; return FAILED;
} }
if (!compilation_info()->dependencies()->Commit(code)) { if (!pipeline_.CommitDependencies(code)) {
return RetryOptimization(BailoutReason::kBailedOutDueToDependencyChange); return RetryOptimization(BailoutReason::kBailedOutDueToDependencyChange);
} }
compilation_info()->SetCode(code);
compilation_info()->SetCode(code);
compilation_info()->context()->native_context()->AddOptimizedCode(*code); compilation_info()->context()->native_context()->AddOptimizedCode(*code);
RegisterWeakObjectsInOptimizedCode(code, isolate); RegisterWeakObjectsInOptimizedCode(code, isolate);
return SUCCEEDED; return SUCCEEDED;
@ -1169,12 +1178,12 @@ struct InliningPhase {
CommonOperatorReducer common_reducer(isolate, &graph_reducer, data->graph(), CommonOperatorReducer common_reducer(isolate, &graph_reducer, data->graph(),
data->common(), data->machine(), data->common(), data->machine(),
temp_zone); temp_zone);
JSCallReducer call_reducer( JSCallReducer call_reducer(&graph_reducer, data->jsgraph(),
&graph_reducer, data->jsgraph(), data->js_heap_broker(), data->js_heap_broker(),
data->info()->is_bailout_on_uninitialized() data->info()->is_bailout_on_uninitialized()
? JSCallReducer::kBailoutOnUninitialized ? JSCallReducer::kBailoutOnUninitialized
: JSCallReducer::kNoFlags, : JSCallReducer::kNoFlags,
data->native_context(), data->info()->dependencies()); data->native_context(), data->dependencies());
JSContextSpecialization context_specialization( JSContextSpecialization context_specialization(
&graph_reducer, data->jsgraph(), data->js_heap_broker(), &graph_reducer, data->jsgraph(), data->js_heap_broker(),
ChooseSpecializationContext(isolate, data->info()), ChooseSpecializationContext(isolate, data->info()),
@ -1191,7 +1200,7 @@ struct InliningPhase {
} }
JSNativeContextSpecialization native_context_specialization( JSNativeContextSpecialization native_context_specialization(
&graph_reducer, data->jsgraph(), data->js_heap_broker(), flags, &graph_reducer, data->jsgraph(), data->js_heap_broker(), flags,
data->native_context(), data->info()->dependencies(), temp_zone); data->native_context(), data->dependencies(), temp_zone);
JSInliningHeuristic inlining( JSInliningHeuristic inlining(
&graph_reducer, data->info()->is_inlining_enabled() &graph_reducer, data->info()->is_inlining_enabled()
? JSInliningHeuristic::kGeneralInlining ? JSInliningHeuristic::kGeneralInlining
@ -1262,16 +1271,16 @@ struct TypedLoweringPhase {
data->jsgraph()->Dead()); data->jsgraph()->Dead());
DeadCodeElimination dead_code_elimination(&graph_reducer, data->graph(), DeadCodeElimination dead_code_elimination(&graph_reducer, data->graph(),
data->common(), temp_zone); data->common(), temp_zone);
JSCreateLowering create_lowering( JSCreateLowering create_lowering(&graph_reducer, data->dependencies(),
&graph_reducer, data->info()->dependencies(), data->jsgraph(), data->jsgraph(), data->js_heap_broker(),
data->js_heap_broker(), data->native_context(), temp_zone); data->native_context(), temp_zone);
JSTypedLowering typed_lowering(&graph_reducer, data->jsgraph(), JSTypedLowering typed_lowering(&graph_reducer, data->jsgraph(),
data->js_heap_broker(), temp_zone); data->js_heap_broker(), temp_zone);
ConstantFoldingReducer constant_folding_reducer(&graph_reducer, ConstantFoldingReducer constant_folding_reducer(&graph_reducer,
data->jsgraph()); data->jsgraph());
TypedOptimization typed_optimization( TypedOptimization typed_optimization(&graph_reducer, data->dependencies(),
&graph_reducer, data->info()->dependencies(), data->jsgraph(), data->jsgraph(),
data->js_heap_broker()); data->js_heap_broker());
SimplifiedOperatorReducer simple_reducer(&graph_reducer, data->jsgraph()); SimplifiedOperatorReducer simple_reducer(&graph_reducer, data->jsgraph());
CheckpointElimination checkpoint_elimination(&graph_reducer); CheckpointElimination checkpoint_elimination(&graph_reducer);
CommonOperatorReducer common_reducer(data->isolate(), &graph_reducer, CommonOperatorReducer common_reducer(data->isolate(), &graph_reducer,
@ -2161,7 +2170,12 @@ MaybeHandle<Code> Pipeline::GenerateCodeForTesting(
if (!pipeline.CreateGraph()) return MaybeHandle<Code>(); if (!pipeline.CreateGraph()) return MaybeHandle<Code>();
if (!pipeline.OptimizeGraph(&linkage)) return MaybeHandle<Code>(); if (!pipeline.OptimizeGraph(&linkage)) return MaybeHandle<Code>();
pipeline.AssembleCode(&linkage); pipeline.AssembleCode(&linkage);
return pipeline.FinalizeCode(); Handle<Code> code;
if (pipeline.FinalizeCode().ToHandle(&code) &&
pipeline.CommitDependencies(code)) {
return code;
}
return MaybeHandle<Code>();
} }
// static // static
@ -2201,7 +2215,12 @@ MaybeHandle<Code> Pipeline::GenerateCodeForTesting(
pipeline.ComputeScheduledGraph(); pipeline.ComputeScheduledGraph();
} }
return pipeline.GenerateCode(call_descriptor); Handle<Code> code;
if (pipeline.GenerateCode(call_descriptor).ToHandle(&code) &&
pipeline.CommitDependencies(code)) {
return code;
}
return MaybeHandle<Code>();
} }
// static // static
@ -2504,6 +2523,11 @@ MaybeHandle<Code> PipelineImpl::GenerateCode(CallDescriptor* call_descriptor) {
return FinalizeCode(); return FinalizeCode();
} }
bool PipelineImpl::CommitDependencies(Handle<Code> code) {
return data_->dependencies() == nullptr ||
data_->dependencies()->Commit(code);
}
void PipelineImpl::AllocateRegisters(const RegisterConfiguration* config, void PipelineImpl::AllocateRegisters(const RegisterConfiguration* config,
CallDescriptor* call_descriptor, CallDescriptor* call_descriptor,
bool run_verifier) { bool run_verifier) {

View File

@ -4,9 +4,9 @@
#include "src/compiler/property-access-builder.h" #include "src/compiler/property-access-builder.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/access-info.h" #include "src/compiler/access-info.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/node-matchers.h" #include "src/compiler/node-matchers.h"
#include "src/compiler/simplified-operator.h" #include "src/compiler/simplified-operator.h"

View File

@ -13,12 +13,10 @@
namespace v8 { namespace v8 {
namespace internal { namespace internal {
class CompilationDependencies;
namespace compiler { namespace compiler {
class CommonOperatorBuilder; class CommonOperatorBuilder;
class CompilationDependencies;
class Graph; class Graph;
class JSGraph; class JSGraph;
class Node; class Node;

View File

@ -4,7 +4,7 @@
#include "src/compiler/typed-optimization.h" #include "src/compiler/typed-optimization.h"
#include "src/compilation-dependencies.h" #include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/node-matchers.h" #include "src/compiler/node-matchers.h"
#include "src/compiler/node-properties.h" #include "src/compiler/node-properties.h"

View File

@ -13,13 +13,13 @@ namespace v8 {
namespace internal { namespace internal {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class Factory; class Factory;
class Isolate; class Isolate;
namespace compiler { namespace compiler {
// Forward declarations. // Forward declarations.
class CompilationDependencies;
class JSGraph; class JSGraph;
class SimplifiedOperatorBuilder; class SimplifiedOperatorBuilder;
class TypeCache; class TypeCache;

View File

@ -23,7 +23,6 @@ OptimizedCompilationInfo::OptimizedCompilationInfo(
shared_info_ = shared; shared_info_ = shared;
closure_ = closure; closure_ = closure;
optimization_id_ = isolate->NextOptimizationId(); optimization_id_ = isolate->NextOptimizationId();
dependencies_.reset(new CompilationDependencies(isolate, zone));
SetFlag(kCalledWithCodeStartRegister); SetFlag(kCalledWithCodeStartRegister);
if (FLAG_function_context_specialization) MarkAsFunctionContextSpecializing(); if (FLAG_function_context_specialization) MarkAsFunctionContextSpecializing();
@ -78,7 +77,6 @@ OptimizedCompilationInfo::OptimizedCompilationInfo(
osr_offset_(BailoutId::None()), osr_offset_(BailoutId::None()),
zone_(zone), zone_(zone),
deferred_handles_(nullptr), deferred_handles_(nullptr),
dependencies_(nullptr),
bailout_reason_(BailoutReason::kNoReason), bailout_reason_(BailoutReason::kNoReason),
optimization_id_(-1), optimization_id_(-1),
debug_name_(debug_name) {} debug_name_(debug_name) {}

View File

@ -9,7 +9,6 @@
#include "src/bailout-reason.h" #include "src/bailout-reason.h"
#include "src/code-reference.h" #include "src/code-reference.h"
#include "src/compilation-dependencies.h"
#include "src/feedback-vector.h" #include "src/feedback-vector.h"
#include "src/frames.h" #include "src/frames.h"
#include "src/globals.h" #include "src/globals.h"
@ -230,8 +229,6 @@ class V8_EXPORT_PRIVATE OptimizedCompilationInfo final {
BailoutReason bailout_reason() const { return bailout_reason_; } BailoutReason bailout_reason() const { return bailout_reason_; }
CompilationDependencies* dependencies() { return dependencies_.get(); }
int optimization_id() const { int optimization_id() const {
DCHECK(IsOptimizing()); DCHECK(IsOptimizing());
return optimization_id_; return optimization_id_;
@ -308,10 +305,6 @@ class V8_EXPORT_PRIVATE OptimizedCompilationInfo final {
std::shared_ptr<DeferredHandles> deferred_handles_; std::shared_ptr<DeferredHandles> deferred_handles_;
// Dependencies for this compilation, e.g. stable maps.
// TODO(neis): Move this to PipelineData.
std::unique_ptr<CompilationDependencies> dependencies_;
BailoutReason bailout_reason_; BailoutReason bailout_reason_;
InlinedFunctionList inlined_functions_; InlinedFunctionList inlined_functions_;

View File

@ -153,7 +153,6 @@ Handle<JSFunction> FunctionTester::Compile(Handle<JSFunction> function) {
Handle<Code> code = Handle<Code> code =
Pipeline::GenerateCodeForTesting(&info, isolate).ToHandleChecked(); Pipeline::GenerateCodeForTesting(&info, isolate).ToHandleChecked();
CHECK(info.dependencies()->Commit(code));
info.context()->native_context()->AddOptimizedCode(*code); info.context()->native_context()->AddOptimizedCode(*code);
function->set_code(*code); function->set_code(*code);
return function; return function;

View File

@ -10,7 +10,7 @@
#include "src/v8.h" #include "src/v8.h"
#include "src/compilation-cache.h" #include "src/compilation-cache.h"
#include "src/compilation-dependencies.h" #include "src/compiler/compilation-dependencies.h"
#include "src/execution.h" #include "src/execution.h"
#include "src/field-type.h" #include "src/field-type.h"
#include "src/global-handles.h" #include "src/global-handles.h"
@ -24,6 +24,7 @@
namespace v8 { namespace v8 {
namespace internal { namespace internal {
namespace compiler {
namespace test_field_type_tracking { namespace test_field_type_tracking {
// TODO(ishell): fix this once TransitionToPrototype stops generalizing // TODO(ishell): fix this once TransitionToPrototype stops generalizing
@ -2814,5 +2815,6 @@ TEST(HoleyMutableHeapNumber) {
} }
} // namespace test_field_type_tracking } // namespace test_field_type_tracking
} // namespace compiler
} // namespace internal } // namespace internal
} // namespace v8 } // namespace v8

View File

@ -4,8 +4,8 @@
#include "src/compiler/constant-folding-reducer.h" #include "src/compiler/constant-folding-reducer.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/js-operator.h" #include "src/compiler/js-operator.h"
#include "src/compiler/machine-operator.h" #include "src/compiler/machine-operator.h"

View File

@ -4,7 +4,7 @@
#include <cctype> #include <cctype>
#include "src/compilation-dependencies.h" #include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-call-reducer.h" #include "src/compiler/js-call-reducer.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/simplified-operator.h" #include "src/compiler/simplified-operator.h"

View File

@ -4,8 +4,8 @@
#include "src/compiler/js-create-lowering.h" #include "src/compiler/js-create-lowering.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/js-operator.h" #include "src/compiler/js-operator.h"
#include "src/compiler/machine-operator.h" #include "src/compiler/machine-operator.h"

View File

@ -4,8 +4,8 @@
#include "src/compiler/typed-optimization.h" #include "src/compiler/typed-optimization.h"
#include "src/code-factory.h" #include "src/code-factory.h"
#include "src/compilation-dependencies.h"
#include "src/compiler/access-builder.h" #include "src/compiler/access-builder.h"
#include "src/compiler/compilation-dependencies.h"
#include "src/compiler/js-graph.h" #include "src/compiler/js-graph.h"
#include "src/compiler/js-operator.h" #include "src/compiler/js-operator.h"
#include "src/compiler/machine-operator.h" #include "src/compiler/machine-operator.h"