HomeSort by relevance Sort by last modified time
    Searched refs:AstContext (Results 1 - 4 of 4) sorted by null

  /external/v8/src/compiler/
ast-graph-builder.h 68 class AstContext;
87 AstContext* ast_context_;
140 AstContext* ast_context() const { return ast_context_; }
160 void set_ast_context(AstContext* ctx) { ast_context_ = ctx; }
406 // - Expressions pop operands and push result, depending on {AstContext}.
ast-graph-builder.cc 29 class AstGraphBuilder::AstContext BASE_EMBEDDED {
36 // that is about to be plugged into this AstContext.
54 AstContext(AstGraphBuilder* owner, Expression::Context kind);
55 virtual ~AstContext();
69 AstContext* outer_;
74 class AstGraphBuilder::AstEffectContext final : public AstContext {
77 : AstContext(owner, Expression::kEffect) {}
85 class AstGraphBuilder::AstValueContext final : public AstContext {
88 : AstContext(owner, Expression::kValue) {}
96 class AstGraphBuilder::AstTestContext final : public AstContext {
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h 759 class AstContext {
793 AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind);
794 virtual ~AstContext();
809 AstContext* outer_;
814 class EffectContext final : public AstContext {
817 : AstContext(owner, Expression::kEffect) {
829 class ValueContext final : public AstContext {
832 : AstContext(owner, Expression::kValue), flag_(flag) {
849 class TestContext final : public AstContext {
855 : AstContext(owner, Expression::kTest)
    [all...]
hydrogen.cc     [all...]

Completed in 662 milliseconds