Searched refs:AstContext (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/compiler/ |
D | ast-graph-builder.h | 63 class AstContext; 82 AstContext* ast_context_; 133 AstContext* ast_context() const { return ast_context_; } in ast_context() 153 void set_ast_context(AstContext* ctx) { ast_context_ = ctx; } in set_ast_context()
|
D | ast-graph-builder.cc | 28 class AstGraphBuilder::AstContext BASE_EMBEDDED { 53 AstContext(AstGraphBuilder* owner, Expression::Context kind); 54 virtual ~AstContext(); 68 AstContext* outer_; 73 class AstGraphBuilder::AstEffectContext final : public AstContext { 76 : AstContext(owner, Expression::kEffect) {} in AstEffectContext() 84 class AstGraphBuilder::AstValueContext final : public AstContext { 87 : AstContext(owner, Expression::kValue) {} in AstValueContext() 95 class AstGraphBuilder::AstTestContext final : public AstContext { 98 : AstContext(owner, Expression::kTest), feedback_id_(feedback_id) {} in AstTestContext() [all …]
|
/external/v8/src/crankshaft/ |
D | hydrogen.h | 731 class AstContext { 765 AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind); 766 virtual ~AstContext(); 781 AstContext* outer_; 786 class EffectContext final : public AstContext { 789 : AstContext(owner, Expression::kEffect) { in EffectContext() 801 class ValueContext final : public AstContext { 804 : AstContext(owner, Expression::kValue), flag_(flag) { in ValueContext() 821 class TestContext final : public AstContext { 827 : AstContext(owner, Expression::kTest), in TestContext() [all …]
|
D | hydrogen.cc | 4150 AstContext::AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind) in AstContext() function in v8::internal::AstContext 4163 AstContext::~AstContext() { in ~AstContext() 4947 AstContext* context = call_context(); in VisitReturnStatement()
|