Home
last modified time | relevance | path

Searched defs:context (Results 1 – 25 of 96) sorted by relevance

1234

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/
Dpgo_profile_type.cpp26 ProfileTypeRef::ProfileTypeRef(PGOContext &context, const ProfileType &type) in ProfileTypeRef()
33 ProfileTypeRef &ProfileTypeRef::Remap([[maybe_unused]] const PGOContext &context) in Remap()
39 ProfileType::ProfileType(PGOContext &context, ProfileTypeRef typeRef) in ProfileType()
55 ProfileType &ProfileType::Remap([[maybe_unused]]const PGOContext &context) in Remap()
/arkcompiler/runtime_core/static_core/runtime/
Dsignal_handler.cpp46 [[maybe_unused]] const void *context) in DumpStackTrace()
70 static bool CallSignalActionHandler(int sig, siginfo_t *info, void *context) in CallSignalActionHandler()
75 bool SignalManager::SignalActionHandler(int sig, siginfo_t *info, void *context) in SignalActionHandler()
96 …Manager::InOatCode([[maybe_unused]] const siginfo_t *siginfo, [[maybe_unused]] const void *context, in InOatCode()
170 [[maybe_unused]] const void *context, in GetMethodAndReturnPcAndSp()
269 bool DetectSEGVFromCompiledCode(int sig, siginfo_t *siginfo, void *context) in DetectSEGVFromCompiledCode()
281 bool DetectSEGVFromHandler(int sig, siginfo_t *siginfo, void *context) in DetectSEGVFromHandler()
296 bool DetectSEGVFromMemory(int sig, siginfo_t *siginfo, void *context) in DetectSEGVFromMemory()
309 bool DetectSEGVFromCode(int sig, siginfo_t *siginfo, void *context) in DetectSEGVFromCode()
340 bool DetectSEGVFromNullCheck(int sig, siginfo_t *siginfo, void *context) in DetectSEGVFromNullCheck()
[all …]
Dclass_linker.cpp48 …lassLinker::AddPandaFile(std::unique_ptr<const panda_file::File> &&pf, ClassLinkerContext *context) in AddPandaFile()
197 Class *ClassLinker::FindLoadedClass(const uint8_t *descriptor, ClassLinkerContext *context) in FindLoadedClass()
287 … Span<Class *> interfaces, ClassLinkerContext *context) in GetClassInfo()
733ClassLinkerContext *context, ClassLinkerErrorHandler *errorHandler) in LoadBaseClass()
755 ClassLinkerContext *context, in LoadInterfaces()
818 … Class *baseClass, Span<Class *> interfaces, ClassLinkerContext *context, in LoadClass()
881 ClassLinkerContext *context = GetExtension(lang)->GetBootContext(); in LoadClass() local
886 ClassLinkerContext *context, ClassLinkerErrorHandler *errorHandler, in LoadClass()
988 ClassLinkerContext *context, bool isInterface) in BuildClass()
1091 …er::LoadArrayClass(const uint8_t *descriptor, bool needCopyDescriptor, ClassLinkerContext *context, in LoadArrayClass()
[all …]
/arkcompiler/ets_runtime/ecmascript/
Decma_handle_scope.cpp23 auto context = thread_->GetCurrentEcmaContext(); in EcmaHandleScope() local
36 auto context = thread_->GetCurrentEcmaContext(); in ~EcmaHandleScope() local
51 auto context = thread->GetCurrentEcmaContext(); in NewHandle() local
/arkcompiler/ets_frontend/ets2panda/util/
Dplugin.h50 void AfterParse(es2panda_Context *context) const in AfterParse()
57 void AfterCheck(es2panda_Context *context) const in AfterCheck()
64 void AfterLowerings(es2panda_Context *context) const in AfterLowerings()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DcompilerImpl.cpp51 void CompilerImpl::HandleContextLiterals(CompilerContext *context) in HandleContextLiterals()
63 panda::pandasm::Program *CompilerImpl::Emit(CompilerContext *context) in Emit()
81 compiler::ProgramElement *programElement) -> void { in MakeCompileJob()
91 static void SetupPublicContext(public_lib::Context *context, const SourceFile *sourceFile, ArenaAll… in SetupPublicContext()
107 static void Verify(const parser::Program &program, const CompilerContext &context, Phase *phase, in Verify()
147 CompilerContext context(varbinder, &checker, unit.options, in CreateCompiler() local
DJSemitter.h45 explicit JSEmitter(const CompilerContext *context) : Emitter(context) {} in JSEmitter()
DcompileJob.h51 void SetContext(CompilerContext *context, varbinder::FunctionScope *scope) in SetContext()
DETSemitter.h66 explicit ETSEmitter(const CompilerContext *context) : Emitter(context) {} in ETSEmitter()
/arkcompiler/ets_runtime/ecmascript/tests/
Decma_context_test.cpp54 auto context = EcmaContext::CreateAndInitialize(thread); in HWTEST_F_L0() local
70 auto context = EcmaContext::CreateAndInitialize(thread); in HWTEST_F_L0() local
81 auto context = EcmaContext::CreateAndInitialize(thread); in HWTEST_F_L0() local
92 auto context = EcmaContext::CreateAndInitialize(thread); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/
Dpgo_profile_type_pool.h65 … uint32_t ProcessToBinary([[maybe_unused]] PGOContext &context, std::fstream &stream) override in ProcessToBinary()
72 uint32_t ParseFromBinary([[maybe_unused]] PGOContext &context, void **buffer, in ParseFromBinary()
85 void Remap(PGOContext &context) in Remap()
163 void Remap(PGOContext &context) in Remap()
Dpgo_record_pool.h58 … uint32_t ProcessToBinary([[maybe_unused]] PGOContext &context, std::fstream &stream) override in ProcessToBinary()
64 uint32_t ParseFromBinary([[maybe_unused]] PGOContext &context, void **buffer, in ParseFromBinary()
141 uint32_t ProcessToBinary(PGOContext &context, std::fstream &stream) override in ProcessToBinary()
162 uint32_t ParseFromBinary(PGOContext &context, void **buffer, in ParseFromBinary()
266 void Merge(const PGOContext &context, PGOAbcFilePool &pool) in Merge()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompileQueue.h38 explicit CompileFunctionJob(CompilerContext *context) : context_(context) {}; in CompileFunctionJob()
62 explicit CompileModuleRecordJob(CompilerContext *context) : context_(context) {}; in CompileModuleRecordJob()
96 explicit CompileFuncQueue(size_t threadCount, CompilerContext *context) in CompileFuncQueue()
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dperformance_build.py279 def add_row(context): argument
283 def add_td(context): argument
287 def add_th(context): argument
291 def test_type_title(context): argument
295 def app_title(context): argument
/arkcompiler/ets_frontend/ets2panda/public/
Des2panda_lib.cpp417 static void CompileJob(compiler::CompilerContext *context, varbinder::FunctionScope *scope, in CompileJob()
678 extern "C" es2panda_Context *ProceedToState(es2panda_Context *context, es2panda_ContextState state) in ProceedToState()
710 extern "C" void DestroyContext(es2panda_Context *context) in DestroyContext()
726 extern "C" es2panda_ContextState ContextState(es2panda_Context *context) in ContextState()
732 extern "C" char const *ContextErrorMessage(es2panda_Context *context) in ContextErrorMessage()
738 extern "C" es2panda_Program *ContextProgram(es2panda_Context *context) in ContextProgram()
807 extern "C" void AstNodeSetDecorators(es2panda_Context *context, es2panda_AstNode *ast, es2panda_Ast… in AstNodeSetDecorators()
909 extern "C" es2panda_AstNode *CreateAsExpression(es2panda_Context *context, es2panda_AstNode *expr, in CreateAsExpression()
971 extern "C" es2panda_AstNode *CreateAssignmentExpression(es2panda_Context *context, es2panda_AstNode… in CreateAssignmentExpression()
1035 extern "C" es2panda_AstNode *CreateBinaryExpression(es2panda_Context *context, es2panda_AstNode *le… in CreateBinaryExpression()
[all …]
/arkcompiler/runtime_core/static_core/compiler/aot/
Daot_manager.cpp81 static void FancyClassContextPrint(std::string_view context) in FancyClassContextPrint()
94 static bool CheckFilesInClassContext(std::string_view context, std::string_view aotContext) in CheckFilesInClassContext()
121 auto context = aotFile->IsBootPandaFile() ? bootClassContext_ : completeContext; in VerifyClassHierarchy() local
Daot_manager.h52 void SetBootClassContext(PandaString context) in SetBootClassContext()
62 void SetAppClassContext(PandaString context) in SetAppClassContext()
/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dcoroutine.cpp24 …tine *Coroutine::Create(Runtime *runtime, PandaVM *vm, PandaString name, CoroutineContext *context, in Create()
36 … panda::panda_file::SourceLang threadLang, PandaString name, CoroutineContext *context, in Coroutine()
54 void Coroutine::ReInitialize(PandaString name, CoroutineContext *context, std::optional<EntrypointI… in ReInitialize()
Dcoroutine_manager.cpp44 auto *context = main->GetContext<CoroutineContext>(); in DestroyMainCoroutine() local
79 auto *context = co->GetContext<CoroutineContext>(); in DestroyEntrypointlessCoroutine() local
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsAsExpression.cpp85 … auto context = checker::SavedCheckerContext(checker, checker::CheckerStatus::IN_CONST_CONTEXT); in Check() local
98 auto context = checker::SavedCheckerContext(checker, checker::CheckerStatus::NO_OPTS); in Check() local
/arkcompiler/ets_frontend/es2panda/ir/statements/
DvariableDeclarator.cpp133 auto context = checker::SavedCheckerContext(checker, checker::CheckerStatus::FORCE_TUPLE); in Check() local
143 auto context = checker::SavedCheckerContext(checker, checker::CheckerStatus::FORCE_TUPLE); in Check() local
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.cpp22 auto context = vm->GetJSThread()->GetCurrentEcmaContext(); in GetDeserializedConstantPool() local
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp348 Emitter::Emitter(const CompilerContext *context) in Emitter()
412 void Emitter::GenJsonContentRecord(const CompilerContext *context) in GenJsonContentRecord()
426 void Emitter::AddFunction(FunctionEmitter *func, CompilerContext *context) in AddFunction()
444 void Emitter::AddSourceTextModuleRecord(ModuleRecordEmitter *module, CompilerContext *context) in AddSourceTextModuleRecord()
484 void Emitter::AddHasTopLevelAwaitRecord(bool hasTLA, const CompilerContext *context) in AddHasTopLevelAwaitRecord()
509 void Emitter::FillTypeInfoRecord(CompilerContext *context, bool typeFlag, int64_t typeSummaryIndex, in FillTypeInfoRecord()
/arkcompiler/ets_runtime/test/fuzztest/jsnapicontext_fuzzer/
Djsnapicontext_fuzzer.cpp33 EcmaContext *context = JSNApi::CreateJSContext(vm); in JSNApiSwitchCurrentContextFuzztest() local
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dterminate.cpp45 char *context; in Terminate() local

1234