| /arkcompiler/ets_frontend/es2panda/binder/ |
| D | variable.cpp | 43 void LocalVariable::SetLexical(Scope *scope, util::PatchFix *patchFixHelper) in SetLexical() argument 54 if (patchFixHelper && patchFixHelper->IsScopeValidToPatchLexical(varScope)) { in SetLexical() 55 slot = patchFixHelper->GetSlotIdFromSymbolTable(std::string(name)); in SetLexical() 56 if (patchFixHelper->IsPatchVar(slot)) { in SetLexical() 57 patchFixHelper->AllocSlotfromPatchEnv(std::string(name)); in SetLexical() 69 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument 70 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument 71 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument 72 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument 73 …able::SetLexical([[maybe_unused]] Scope *scope, [[maybe_unused]] util::PatchFix *patchFixHelper) {} in SetLexical() argument [all …]
|
| D | variable.h | 119 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/ |
| D | es2panda.cpp | 51 …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() 110 CleanPatchFixHelper(patchFixHelper); in Compile() 115 CleanPatchFixHelper(patchFixHelper); in Compile() 123 util::PatchFix *patchFixHelper = nullptr; in InitPatchFixHelper() local 136 …patchFixHelper = new util::PatchFix(needDumpSymbolFile, needGeneratePatch, patchFixKind, input.rec… in InitPatchFixHelper() 138 parser_->AddPatchFixHelper(patchFixHelper); in InitPatchFixHelper() 139 compiler_->AddPatchFixHelper(patchFixHelper); in InitPatchFixHelper() [all …]
|
| D | es2panda.h | 202 static void CleanPatchFixHelper(const util::PatchFix *patchFixHelper);
|
| /arkcompiler/ets_frontend/es2panda/compiler/core/ |
| D | compilerContext.cpp | 26 util::PatchFix *patchFixHelper) in CompilerContext() argument 29 …urceFile_(sourceFile), pkgName_(pkgName), recordName_(recordName), patchFixHelper_(patchFixHelper), in CompilerContext()
|
| D | compilerImpl.h | 50 void AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument 52 patchFixHelper_ = patchFixHelper; in AddPatchFixHelper()
|
| D | compilerContext.h | 48 … std::string pkgName, util::StringView recordName, util::PatchFix *patchFixHelper);
|
| /arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
| D | emitter.h | 77 void Generate(util::PatchFix *patchFixHelper); 117 panda::pandasm::Program *Finalize(bool dumpDebugInfo, util::PatchFix *patchFixHelper);
|
| D | emitter.cpp | 62 void FunctionEmitter::Generate(util::PatchFix *patchFixHelper) in Generate() argument 72 if (patchFixHelper != nullptr) { in Generate() 73 patchFixHelper->ProcessFunction(pg_, func_, literalBuffers_); in Generate() 578 panda::pandasm::Program *Emitter::Finalize(bool dumpDebugInfo, util::PatchFix *patchFixHelper) in Finalize() argument 590 if (patchFixHelper) { in Finalize() 591 patchFixHelper->Finalize(&prog_); in Finalize()
|
| /arkcompiler/ets_frontend/es2panda/parser/program/ |
| D | program.h | 143 void AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument 145 patchFixHelper_ = patchFixHelper; in AddPatchFixHelper()
|
| /arkcompiler/ets_frontend/es2panda/parser/ |
| D | parserImpl.h | 186 void AddPatchFixHelper(util::PatchFix *patchFixHelper);
|
| D | parserImpl.cpp | 3823 void ParserImpl::AddPatchFixHelper(util::PatchFix *patchFixHelper) in AddPatchFixHelper() argument 3825 program_.AddPatchFixHelper(patchFixHelper); in AddPatchFixHelper()
|