|
V8 Project
|
#include "src/compiler/pipeline.h"#include "src/base/platform/elapsed-timer.h"#include "src/compiler/ast-graph-builder.h"#include "src/compiler/basic-block-instrumentor.h"#include "src/compiler/change-lowering.h"#include "src/compiler/code-generator.h"#include "src/compiler/graph-replay.h"#include "src/compiler/graph-visualizer.h"#include "src/compiler/instruction.h"#include "src/compiler/instruction-selector.h"#include "src/compiler/js-context-specialization.h"#include "src/compiler/js-generic-lowering.h"#include "src/compiler/js-inlining.h"#include "src/compiler/js-typed-lowering.h"#include "src/compiler/machine-operator-reducer.h"#include "src/compiler/phi-reducer.h"#include "src/compiler/register-allocator.h"#include "src/compiler/schedule.h"#include "src/compiler/scheduler.h"#include "src/compiler/simplified-lowering.h"#include "src/compiler/simplified-operator-reducer.h"#include "src/compiler/typer.h"#include "src/compiler/value-numbering-reducer.h"#include "src/compiler/verifier.h"#include "src/hydrogen.h"#include "src/ostreams.h"#include "src/utils.h"
Include dependency graph for pipeline.cc:Go to the source code of this file.
Classes | |
| class | v8::internal::compiler::PhaseStats |
| class | v8::internal::compiler::AstGraphBuilderWithPositions |
Namespaces | |
| v8 | |
| Debugger support for the V8 JavaScript engine. | |
| v8::internal | |
| v8::internal::compiler | |
Macros | |
| #define | DEF_VISIT(type) |
Functions | |
| static bool | v8::internal::compiler::VerifyGraphs () |
| static void | v8::internal::compiler::TraceSchedule (Schedule *schedule) |
| #define DEF_VISIT | ( | type | ) |
Definition at line 145 of file pipeline.cc.