arkcompiler_ets_runtime/ecmascript/compiler/stub.h
wuzhefeng 6002abbef1 Implement debug information framework (Part-3)
To faciliate aot debuggging, we need to provide the ability of code
commenting, so we will add api of adding debug-information to our gate
compilation framework and pass the information to LLVM-IR. At last, the
generated machine code can be associated with specific code comments.

Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I6VRHQ

Signed-off-by: wuzhefeng <wuzhefeng1@huawei.com>
Change-Id: I6a1eef5588231f3aa31cc6b2efea9667d0eda929
2023-04-26 14:19:53 +08:00

59 lines
1.6 KiB
C++

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ECMASCRIPT_COMPILER_STUB_H
#define ECMASCRIPT_COMPILER_STUB_H
#include "ecmascript/compiler/circuit_builder-inl.h"
#include "ecmascript/compiler/variable_type.h"
#include "ecmascript/compiler/call_signature.h"
namespace panda::ecmascript::kungfu {
class StubBuilder;
class Stub {
public:
Stub(const CallSignature *callSignature, Circuit *circuit);
~Stub();
NO_MOVE_SEMANTIC(Stub);
NO_COPY_SEMANTIC(Stub);
const CallSignature *GetCallSignature() const
{
return callSignature_;
}
const std::string &GetMethodName() const
{
return callSignature_->GetName();
}
Circuit *GetCircuit()
{
return env_.GetCircuit();
}
void GenerateCircuit(const CompilationConfig *cfg);
private:
void InitializeArguments();
const CallSignature *callSignature_;
CircuitBuilder builder_;
GateAccessor acc_;
Environment env_;
StubBuilder *stubBuilder_ {nullptr};
};
} // namespace panda::ecmascript::kungfu
#endif // ECMASCRIPT_COMPILER_STUB_H