summaryrefslogtreecommitdiffstats
path: root/js/src/frontend/ExpressionStatementEmitter.cpp
blob: bb00c831b13653728e2745bf06ebb7fdee89de09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 * vim: set ts=8 sts=2 et sw=2 tw=80:
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "frontend/ExpressionStatementEmitter.h"

#include "frontend/BytecodeEmitter.h"
#include "vm/Opcodes.h"

using namespace js;
using namespace js::frontend;

using mozilla::Maybe;

ExpressionStatementEmitter::ExpressionStatementEmitter(BytecodeEmitter* bce,
                                                       ValueUsage valueUsage)
    : bce_(bce), valueUsage_(valueUsage) {}

bool ExpressionStatementEmitter::prepareForExpr(uint32_t beginPos) {
  MOZ_ASSERT(state_ == State::Start);

  if (!bce_->updateSourceCoordNotes(beginPos)) {
    return false;
  }

#ifdef DEBUG
  depth_ = bce_->bytecodeSection().stackDepth();
  state_ = State::Expr;
#endif
  return true;
}

bool ExpressionStatementEmitter::emitEnd() {
  MOZ_ASSERT(state_ == State::Expr);
  MOZ_ASSERT(bce_->bytecodeSection().stackDepth() == depth_ + 1);

  //                [stack] VAL

  JSOp op = valueUsage_ == ValueUsage::WantValue ? JSOp::SetRval : JSOp::Pop;
  if (!bce_->emit1(op)) {
    //              [stack] # if WantValue
    //              [stack] VAL
    //              [stack] # otherwise
    //              [stack]
    return false;
  }

#ifdef DEBUG
  state_ = State::End;
#endif
  return true;
}