Home
last modified time | relevance | path

Searched refs:decorator_ (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/compiler/
Dcompiler-source-position-table.cc29 decorator_(nullptr), in SourcePositionTable()
34 DCHECK_NULL(decorator_); in AddDecorator()
35 decorator_ = new (graph_->zone()) Decorator(this); in AddDecorator()
36 graph_->AddDecorator(decorator_); in AddDecorator()
40 DCHECK_NOT_NULL(decorator_); in RemoveDecorator()
41 graph_->RemoveDecorator(decorator_); in RemoveDecorator()
42 decorator_ = nullptr; in RemoveDecorator()
Dnode-origin-table.cc43 decorator_(nullptr), in NodeOriginTable()
49 DCHECK_NULL(decorator_); in AddDecorator()
50 decorator_ = new (graph_->zone()) Decorator(this); in AddDecorator()
51 graph_->AddDecorator(decorator_); in AddDecorator()
55 DCHECK_NOT_NULL(decorator_); in RemoveDecorator()
56 graph_->RemoveDecorator(decorator_); in RemoveDecorator()
57 decorator_ = nullptr; in RemoveDecorator()
Dtyper.h49 Decorator* decorator_; variable
Dcompiler-source-position-table.h62 Decorator* decorator_; in NON_EXPORTED_BASE() local
Dnode-origin-table.h128 Decorator* decorator_; in NON_EXPORTED_BASE() local
Dtyper.cc40 decorator_(nullptr), in Typer()
47 decorator_ = new (zone()) Decorator(this); in Typer()
48 graph_->AddDecorator(decorator_); in Typer()
53 graph_->RemoveDecorator(decorator_); in ~Typer()
Dwasm-compiler.h345 compiler::WasmDecorator* decorator_ = nullptr; variable
Dwasm-compiler.cc3984 DCHECK_NULL(decorator_); in AddBytecodePositionDecorator()
3985 decorator_ = new (graph()->zone()) WasmDecorator(node_origins, decoder); in AddBytecodePositionDecorator()
3986 graph()->AddDecorator(decorator_); in AddBytecodePositionDecorator()
3990 DCHECK_NOT_NULL(decorator_); in RemoveBytecodePositionDecorator()
3991 graph()->RemoveDecorator(decorator_); in RemoveBytecodePositionDecorator()
3992 decorator_ = nullptr; in RemoveBytecodePositionDecorator()