Home
last modified time | relevance | path

Searched defs:fp (Results 1 – 25 of 37) sorted by relevance

12

/arkcompiler/runtime_core/tests/fuzztest/openuncompressedarchive_fuzzer/
Dopenuncompressedarchive_fuzzer.cpp21 void CloseAndRemoveZipFile(panda::ZipArchiveHandle &handle, FILE *fp, const char *filename) in CloseAndRemoveZipFile()
45 FILE *fp = fopen(zip_filename, mode); in OpenUncompressedArchiveFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dextend_assembler.cpp108 void ExtendedAssembler::PushArgc(int32_t argc, Register op, Register fp) in PushArgc()
114 void ExtendedAssembler::PushArgc(Register argc, Register op, Register fp) in PushArgc()
120 void ExtendedAssembler::Align16(Register fp) in Align16()
/arkcompiler/runtime_core/compiler/tests/
Dpanda_runner.h146 uintptr_t fp; in Hook() local
154 uintptr_t fp, lr; in Hook() local
167 uintptr_t fp, lr; in Hook() local
Dcodegen_runner_test.cpp323 NO_OPTIMIZE int Callback([[maybe_unused]] uintptr_t lr, [[maybe_unused]] uintptr_t fp) in Callback()
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_test.cpp242 auto fp = fopen(file_name_zip_with_entry, "a"); variable
291 auto fp = fopen(ABC_FILE, "rb"); variable
322 auto fp = fopen(ABC_FILE, "w"); variable
346 auto fp = fopen(ARCHIVE_FILENAME, "w+"); variable
/arkcompiler/runtime_core/tests/fuzztest/load_fuzzer/
Dload_fuzzer.cpp27 FILE *fp = fopen(name, "wb"); in LoadFuzzTest() local
/arkcompiler/runtime_core/tests/fuzztest/open_fuzzer/
Dopen_fuzzer.cpp23 FILE *fp = fopen(filename, "w"); in OpenFuzzTest() local
/arkcompiler/runtime_core/tests/fuzztest/readosfile_fuzzer/
Dreadosfile_fuzzer.cpp25 FILE *fp = fopen(filename, "w"); in ReadOsFileFuzzTest() local
/arkcompiler/runtime_core/tests/fuzztest/resolvesymbol_fuzzer/
Dresolvesymbol_fuzzer.cpp27 FILE *fp = fopen(name, "wb"); in ResolveSymbolFuzzTest() local
/arkcompiler/runtime_core/tests/fuzztest/checkheader_fuzzer/
Dcheckheader_fuzzer.cpp24 FILE *fp = fopen(filename, "w+"); in CheckHeaderFuzzTest() local
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch64/
Dcallconv.cpp138 auto fp = GetTarget().GetFrameReg(); in GeneratePrologue() local
199 auto fp = GetTarget().GetFrameReg(); in GenerateEpilogue() local
264 auto fp = GetTarget().GetFrameReg(); in GenerateNativePrologue() local
311 auto fp = GetTarget().GetFrameReg(); in GenerateNativeEpilogue() local
/arkcompiler/runtime_core/runtime/tests/
Dstack_walker_test.cpp172 uintptr_t fp = 0; in PandaRunnerHook() local
282 runner.Run(source, [](uintptr_t lr, [[maybe_unused]] uintptr_t fp) -> int { in TEST_F()
447 runner.Run(source, [](uintptr_t lr, [[maybe_unused]] uintptr_t fp) -> int { in TestModifyManyVregs()
/arkcompiler/runtime_core/runtime/interpreter/arch/aarch64/
Dglobal_regs.h84 ALWAYS_INLINE inline void SetFp(void *fp) in SetFp()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch32/
Dcallconv.cpp109 auto fp = GetTarget().GetFrameReg().GetId(); in PushRegs() local
148 auto fp = GetTarget().GetFrameReg().GetId(); in PopRegs() local
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dfile.h130 auto fp = _fullpath(buffer.data(), relative_path.data(), buffer.size() - 1); in GetAbsolutePath() local
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dfile.h169 auto fp = realpath(relative_path.data(), buffer.data()); in GetAbsolutePath() local
/arkcompiler/runtime_core/libziparchive/
Dzip_archive.cpp42 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp) in OpenArchiveFile()
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Doptimized_call.cpp62 Register fp(FP); in CallRuntime() local
449 Register fp(X29); in JSCallInternal() local
694 Register fp = __ AvailableRegister1(); in JSBoundFunctionCallInternal() local
828 Register fp(X29); in CallRuntimeWithArgv() local
862 Register fp(X6); in PopJSFunctionArgs() local
884 Register fp(X29); in PushJSFunctionEntryFrame() local
899 Register fp(X29); in PopJSFunctionEntryFrame() local
1189 Register fp(FP); in DeoptHandlerAsm() local
Dcommon_call.cpp37 Register fp(X29); in PushAsmInterpBridgeFrame() local
Dasm_interpreter_call.cpp659 Register fp(X8); in ResumeRspAndDispatch() local
791 Register fp(X5); in ResumeCaughtFrameAndDispatch() local
821 Register fp(X5); in ResumeUncaughtFrameAndReturn() local
1083 void AsmInterpreterCall::PushFrameState(ExtendedAssembler *assembler, Register prevSp, Register fp, in PushFrameState()
1119 Register fp(X29); in PushAsmInterpEntryFrame() local
1250 Register fp, Register op) in ThrowStackOverflowExceptionAndReturn()
/arkcompiler/runtime_core/runtime/include/
Dthread.h85 LockedObjectInfo(ObjectHeader *obj, void *fp) : object(obj), stack(fp) {} in LockedObjectInfo()
/arkcompiler/runtime_core/libpandafile/
Dfile.cpp175 std::unique_ptr<const panda_file::File> HandleArchive(ZipArchiveHandle &handle, FILE *fp, std::stri… in HandleArchive()
203 FILE *fp = fopen(std::string(location).c_str(), mode); in OpenPandaFile() local
/arkcompiler/ets_runtime/ecmascript/
Dframes.cpp781 bool StepArkManagedNativeFrame(int pid, uintptr_t *pc, uintptr_t *fp, uintptr_t *sp, in StepArkManagedNativeFrame()
819 int pid, uintptr_t *pc, uintptr_t *fp, uintptr_t *sp, char *buf, size_t buf_sz) in step_ark_managed_native_frame()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dframe_handler.cpp32 FrameHandler::FrameHandler(const JSThread *thread, void *fp) in FrameHandler()
/arkcompiler/runtime_core/runtime/
Dstack_walker.cpp41 StackWalker::StackWalker(void *fp, bool is_frame_compiled, uintptr_t npc, UnwindPolicy policy) in StackWalker()

12