/arkcompiler/runtime_core/static_core/plugins/ets/compiler/ |
H A D | intrinsics_peephole_ets.inl.h | 26 bool TryFuseGetPropertyAndCast(IntrinsicInst *intrinsic, RuntimeInterface::IntrinsicId newId); 30 bool TryFuseCastAndSetProperty(IntrinsicInst *intrinsic, RuntimeInterface::IntrinsicId newId);
|
/arkcompiler/runtime_core/static_core/libpandafile/tests/ |
H A D | panda_cache_test.cpp | 173 EntityId newId(id.GetOffset() << 2U); 174 Field *f = cache_->GetFieldFromCache(newId); 185 EntityId newId(id.GetOffset() << 2U); 187 cache_->SetFieldCache(newId, f); 262 EntityId newId(id.GetOffset() << 2U); in CleanFieldMocks() 263 auto *m = reinterpret_cast<ElementMock *>(cache->GetFieldFromCache(newId)); in CleanFieldMocks()
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
H A D | pgo_context_mock.h | 71 void AddAbcIdRemap(ApEntityId oldId, ApEntityId newId) const override 73 abcIdRemap_[oldId] = newId;
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | panda_file_translator.cpp | 406 uint16_t newId = static_cast<uint16_t>(id); in FixOpcode() local 407 if (memcpy_s(pc + 1, sizeof(uint16_t), &newId, sizeof(uint16_t)) != EOK) { in FixOpcode() 1268 uint16_t newId = static_cast<uint16_t>(id); in FixOpcode() local 1269 if (memcpy_s(pc + 2, sizeof(uint16_t), &newId, sizeof(uint16_t)) != EOK) { // 2: skip opcode and ic slot in FixOpcode() 1281 uint16_t newId = static_cast<uint16_t>(id); in FixOpcode() local 1282 if (memcpy_s(pc + 2, sizeof(uint16_t), &newId, sizeof(uint16_t)) != EOK) { // 2: skip opcode and ic slot in FixOpcode() 1295 uint16_t newId = static_cast<uint16_t>(id); in FixOpcode() local 1296 if (memcpy_s(pc + 2, sizeof(uint16_t), &newId, sizeof(uint16_t)) != EOK) { // 2: skip opcode and ic slot in FixOpcode() 1309 uint16_t newId = static_cast<uint16_t>(id); in FixOpcode() local 1310 if (memcpy_s(pc + 2, sizeof(uint16_t), &newId, sizeo in FixOpcode() 1323 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local 1337 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local 1351 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local 1365 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local 1387 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local 1401 uint16_t newId = static_cast<uint16_t>(id); FixOpcode() local [all...] |
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/objects_passing/ |
H A D | objects_passing.js | 135 function updateObjectId(obj, newId) { 136 obj.id = newId;
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_context.h | 43 virtual void AddAbcIdRemap(ApEntityId oldId, ApEntityId newId) const = 0;
|
H A D | pgo_profiler_info.h | 542 void AddAbcIdRemap(ApEntityId oldId, ApEntityId newId) const override 544 abcIdRemap_[oldId] = newId; 744 void AddAbcIdRemap(ApEntityId oldId, ApEntityId newId) const override 746 abcIdRemap_[oldId] = newId;
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/ |
H A D | pool_template.h | 114 ApEntityId newId(0); in Merge() 115 TryAdd(entry.second.GetData(), newId); in Merge() 117 callback(entry.first, newId); in Merge()
|
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/ |
H A D | ets_intrinsics_peephole.cpp | 372 bool Peepholes::TryFuseGetPropertyAndCast(IntrinsicInst *intrinsic, RuntimeInterface::IntrinsicId newId) in TryFuseGetPropertyAndCast() argument 388 input->CastToIntrinsic()->SetIntrinsicId(newId); in TryFuseGetPropertyAndCast() 414 bool Peepholes::TryFuseCastAndSetProperty(IntrinsicInst *intrinsic, RuntimeInterface::IntrinsicId newId) in TryFuseCastAndSetProperty() argument 431 storeInst->CastToIntrinsic()->SetIntrinsicId(newId); in TryFuseCastAndSetProperty()
|
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/optimizations/interop_js/ |
H A D | interop_intrinsic_optimization.cpp | 789 auto newId = GetUnwrapIntrinsicId(commonId); in TryRemoveUnwrapToJSValue() local 790 if (newId == RuntimeInterface::IntrinsicId::INVALID) { in TryRemoveUnwrapToJSValue() 794 inst->CastToIntrinsic()->SetIntrinsicId(newId); in TryRemoveUnwrapToJSValue()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | profiler_stub_builder.cpp | 393 GateRef newId = TryGetBuiltinFunctionId(target); in ProfileNativeCall() local 394 BRANCH(Int32Equal(oldId, newId), &exit, &invalidate); in ProfileNativeCall() 405 GateRef newId = TryGetBuiltinFunctionId(target); in ProfileNativeCall() local 406 SetValueToTaggedArray(VariableType::JS_ANY(), glue, profileTypeInfo, slotId, IntToTaggedInt(newId)); in ProfileNativeCall()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | bytecode_instruction.h | 257 void UpdateId(BytecodeId newId, uint32_t idx = 0);
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | lambdaLowering.cpp | 167 auto newId = util::NodeAllocator::ForceSetParent<ir::Identifier>( in CreateLambdaCalleeParameters() local 169 auto param = util::NodeAllocator::ForceSetParent<ir::ETSParameterExpression>(allocator, newId, nullptr); in CreateLambdaCalleeParameters()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | operand.h | 1959 void UpdateOpnd(uint32 bbId, uint32 newId, RegOperand &phiParam) in UpdateOpnd() argument 1961 (void)phiList.emplace(std::pair(newId, &phiParam)); in UpdateOpnd()
|