Home
last modified time | relevance | path

Searched refs:ProfileOpType (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Doperations_stub_builder.cpp144 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in Less()
219 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in Less()
249 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in LessEq()
324 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in LessEq()
353 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in Greater()
398 callback.ProfileOpType(type); in Greater()
428 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in Greater()
457 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in GreaterEq()
533 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in GreaterEq()
554 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in Add()
[all …]
Dprofiler_operation.h56 inline void ProfileOpType(GateRef type) const in ProfileOpType() function
Dprofiler_stub_builder.cpp31 ProfileOpType(glue, pc, func, profileTypeInfo, values[0]); in PGOProfiler()
50 void ProfilerStubBuilder::ProfileOpType(GateRef glue, GateRef pc, GateRef func, GateRef profileType… in ProfileOpType() function in panda::ecmascript::kungfu::ProfilerStubBuilder
66 CallNGCRuntime(glue, RTSTUB_ID(ProfileOpType), { glue, func, offset, type }); in ProfileOpType()
101 CallNGCRuntime(glue, RTSTUB_ID(ProfileOpType), { glue, func, offset, *curType }); in ProfileOpType()
Dprofiler_stub_builder.h35 … void ProfileOpType(GateRef glue, GateRef pc, GateRef func, GateRef profileTypeInfo, GateRef type);
Dcall_signature.h421 V(ProfileOpType) \
Dstub_builder.cpp4095 callback.ProfileOpType(Int32(PGOSampleType::StringType())); in FastStrictEqual()
4109 callback.ProfileOpType(Int32(PGOSampleType::BigIntType())); in FastStrictEqual()
4116 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in FastStrictEqual()
4143 callback.ProfileOpType(Int32(PGOSampleType::DoubleType())); in FastEqual()
4168 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in FastEqual()
4173 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in FastEqual()
4193 callback.ProfileOpType(Int32(PGOSampleType::IntType())); in FastEqual()
4224 callback.ProfileOpType(*curType); in FastEqual()
4250 callback.ProfileOpType(Int32(PGOSampleType::AnyType())); in FastEqual()
4508 callback.ProfileOpType(Int32(PGOSampleType::NumberType())); in FastBinaryOp()
[all …]
Dcall_signature.cpp1469 DEF_CALL_SIGNATURE(ProfileOpType) in DEF_CALL_SIGNATURE() argument
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler.h33 void ProfileOpType(JSTaggedType func, int32_t offset, uint32_t type);
Dpgo_profiler.cpp76 void PGOProfiler::ProfileOpType(JSTaggedType func, int32_t offset, uint32_t type) in ProfileOpType() function in panda::ecmascript::PGOProfiler
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h102 V(ProfileOpType) \
361 static void ProfileOpType(uintptr_t argGlue, uintptr_t func, int32_t offset, int32_t type);
Druntime_stubs.cpp439 void RuntimeStubs::ProfileOpType(uintptr_t argGlue, uintptr_t func, int32_t offset, int32_t type) in ProfileOpType() function in panda::ecmascript::RuntimeStubs
442 thread->GetEcmaVM()->GetPGOProfiler()->ProfileOpType(func, offset, type); in ProfileOpType()