llvm/clang/lib/AST/ByteCode/InterpState.cpp

//===--- InterpState.cpp - Interpreter for the constexpr VM -----*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "InterpState.h"
#include "InterpFrame.h"
#include "InterpStack.h"
#include "Program.h"
#include "State.h"

usingnamespaceclang;
usingnamespaceclang::interp;

InterpState::InterpState(State &Parent, Program &P, InterpStack &Stk,
                         Context &Ctx, SourceMapper *M)
    :{}

bool InterpState::inConstantContext() const {}

InterpState::~InterpState() {}

void InterpState::cleanup() {}

Frame *InterpState::getCurrentFrame() {}

bool InterpState::reportOverflow(const Expr *E, const llvm::APSInt &Value) {}

void InterpState::deallocate(Block *B) {}

bool InterpState::maybeDiagnoseDanglingAllocations() {}