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

  /external/v8/src/compiler/
ast-graph-builder.cc 28 class AstGraphBuilder::AstContext BASE_EMBEDDED {
35 // that is about to be plugged into this AstContext.
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) {}
84 class AstGraphBuilder::AstValueContext final : public AstContext {
87 : AstContext(owner, Expression::kValue) {}
95 class AstGraphBuilder::AstTestContext final : public AstContext {
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h 766 class AstContext {
800 AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind);
801 virtual ~AstContext();
816 AstContext* outer_;
821 class EffectContext final : public AstContext {
824 : AstContext(owner, Expression::kEffect) {
836 class ValueContext final : public AstContext {
839 : AstContext(owner, Expression::kValue), flag_(flag) {
856 class TestContext final : public AstContext {
862 : AstContext(owner, Expression::kTest)
    [all...]
hydrogen.cc     [all...]

Completed in 51 milliseconds