Home
last modified time | relevance | path

Searched refs:patchFixHelper (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_frontend/es2panda/binder/
Dvariable.cpp43 void LocalVariable::SetLexical(Scope *scope, util::PatchFix *patchFixHelper) in SetLexical() argument
54 if (patchFixHelper && patchFixHelper->IsScopeValidToPatchLexical(varScope)) { in SetLexical()
56 slot = patchFixHelper->GetSlotIdFromSymbolTable(std::string(name)); in SetLexical()
58 if (patchFixHelper->IsAdditionalVarInPatch(slot)) { in SetLexical()
59 patchFixHelper->AllocSlotfromPatchEnv(std::string(name)); in SetLexical()
62 varScope->RestoreFuncMain0LexEnv(patchFixHelper->GetEnvSizeOfFuncMain0()); in SetLexical()
74 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument
75 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument
76 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument
77 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument
[all …]
Dvariable.h119 virtual void SetLexical(Scope *scope, util::PatchFix *patchFixHelper = nullptr) = 0; in VARIABLE_TYPES()
162 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
178 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
190 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
260 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
278 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
308 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
342 …void SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper = n…
/arkcompiler/ets_frontend/es2panda/
Des2panda.cpp51 …ogram *CreateJsonContentProgram(std::string src, std::string rname, util::PatchFix *patchFixHelper) in CreateJsonContentProgram() argument
54 … src, "", util::StringView(rname), patchFixHelper); in CreateJsonContentProgram()
70 auto *patchFixHelper = InitPatchFixHelper(input, options, symbolTable); in Compile() local
73 return CreateJsonContentProgram(src, rname, patchFixHelper); in Compile()
109 CleanPatchFixHelper(patchFixHelper); in Compile()
114 CleanPatchFixHelper(patchFixHelper); in Compile()
122 util::PatchFix *patchFixHelper = nullptr; in InitPatchFixHelper() local
135patchFixHelper = new util::PatchFix(needDumpSymbolFile, needGeneratePatch, patchFixKind, input.rec… in InitPatchFixHelper()
137 parser_->AddPatchFixHelper(patchFixHelper); in InitPatchFixHelper()
138 compiler_->AddPatchFixHelper(patchFixHelper); in InitPatchFixHelper()
[all …]
Des2panda.h205 static void CleanPatchFixHelper(const util::PatchFix *patchFixHelper);
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompilerImpl.h50 void AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument
52 patchFixHelper_ = patchFixHelper; in AddPatchFixHelper()
DcompilerContext.cpp26 util::StringView recordName, util::PatchFix *patchFixHelper) in CompilerContext() argument
30 patchFixHelper_(patchFixHelper), emitter_(std::make_unique<class Emitter>(this)) in CompilerContext()
DcompilerContext.h49 util::PatchFix *patchFixHelper);
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.h77 void Generate(util::PatchFix *patchFixHelper);
119 panda::pandasm::Program *Finalize(bool dumpDebugInfo, util::PatchFix *patchFixHelper);
Demitter.cpp62 void FunctionEmitter::Generate(util::PatchFix *patchFixHelper) in Generate() argument
73 if (patchFixHelper != nullptr) { in Generate()
74 patchFixHelper->ProcessFunction(pg_, func_, literalBuffers_); in Generate()
658 panda::pandasm::Program *Emitter::Finalize(bool dumpDebugInfo, util::PatchFix *patchFixHelper) in Finalize() argument
670 if (patchFixHelper) { in Finalize()
671 patchFixHelper->Finalize(&prog_); in Finalize()
/arkcompiler/ets_frontend/es2panda/parser/program/
Dprogram.h143 void AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument
145 patchFixHelper_ = patchFixHelper; in AddPatchFixHelper()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.h195 void AddPatchFixHelper(util::PatchFix *patchFixHelper); in DEFINE_BITOPS()
DparserImpl.cpp4235 void ParserImpl::AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument
4237 program_.AddPatchFixHelper(patchFixHelper); in AddPatchFixHelper()