Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
Dinitialization_analysis.cpp45 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in Analyse() local
46 switch (ecmaOpcode) { in Analyse()
133 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in IsThisFromSuperCall() local
134 switch (ecmaOpcode) { in IsThisFromSuperCall()
181 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in CheckSimpleJSGate() local
182 switch (ecmaOpcode) { in CheckSimpleJSGate()
285 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in HasEscapedThis() local
286 switch (ecmaOpcode) { in HasEscapedThis()
Dpgo_type_infer.cpp73 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in RunTypeInfer() local
74 switch (ecmaOpcode) { in RunTypeInfer()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dntype_hcr_lowering.cpp47 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in Lower() local
50 switch (ecmaOpcode) { in Lower()
251 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
252 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
271 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
272 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
Dts_inline_lowering.cpp42 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in CandidateInlineCall() local
43 switch (ecmaOpcode) { in CandidateInlineCall()
160 auto ecmaOpcode = ctx_->GetByteCodes()->GetOpcode(pc); in FilterInlinedMethod() local
161 switch (ecmaOpcode) { in FilterInlinedMethod()
656 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in GetAccessorReceiver() local
657 if (UNLIKELY(ecmaOpcode == EcmaOpcode::STTHISBYNAME_IMM8_ID16 || in GetAccessorReceiver()
658 ecmaOpcode == EcmaOpcode::STTHISBYNAME_IMM16_ID16)) { in GetAccessorReceiver()
666 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in GetCallSetterValue() local
667 if (ecmaOpcode == EcmaOpcode::STTHISBYNAME_IMM8_ID16 || in GetCallSetterValue()
668 ecmaOpcode == EcmaOpcode::STTHISBYNAME_IMM16_ID16) { in GetCallSetterValue()
[all …]
Dtype_recorder.cpp101 EcmaOpcode ecmaOpcode = bytecodes_->GetOpcode(pcOffsets_[bcIdx]); in CollectLiteralGT() local
103 switch (ecmaOpcode) { in CollectLiteralGT()
161 EcmaOpcode ecmaOpcode = bytecodes_->GetOpcode(pcOffsets_[bcIdx]); in CreateTypesForPGO() local
162 if (jsPandaFile->HasTSTypes(recordName) && Bytecodes::IsCallOp(ecmaOpcode)) { in CreateTypesForPGO()
Dts_hcr_lowering.cpp100 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in IsTrustedType() local
101 switch (ecmaOpcode) { in IsTrustedType()
128 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in Lower() local
131 AddBytecodeCount(ecmaOpcode); in Lower()
132 switch (ecmaOpcode) { in Lower()
294 DeleteBytecodeCount(ecmaOpcode); in Lower()
1469 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
1470 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
1489 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
1490 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
Dcompiler_log.cpp251 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in CollectGateTypeLogInfo() local
252 log_ += "bytecode: " + GetEcmaOpcodeStr(ecmaOpcode); in CollectGateTypeLogInfo()
Dasync_function_lowering.cpp61 EcmaOpcode ecmaOpcode = accessor_.GetByteCodeOpcode(gate); in ProcessJumpTable() local
62 if (ecmaOpcode == EcmaOpcode::RESUMEGENERATOR) { in ProcessJumpTable()
Dbytecodes.h663 bool IsBc(EcmaOpcode ecmaOpcode) const in IsBc() argument
665 return metaData_.GetOpcode() == ecmaOpcode; in IsBc()
Dslowpath_lowering.cpp195 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in Lower() local
199 switch (ecmaOpcode) { in Lower()
2795 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
2796 …if ((ecmaOpcode == EcmaOpcode::SUSPENDGENERATOR_V8 || ecmaOpcode == EcmaOpcode::RESUMEGENERATOR) && in AddProfiling()
2800 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
2809 EcmaOpcode ecmaOpcode = acc_.GetByteCodeOpcode(gate); in AddProfiling() local
2810 …if ((ecmaOpcode == EcmaOpcode::SUSPENDGENERATOR_V8 || ecmaOpcode == EcmaOpcode::RESUMEGENERATOR) && in AddProfiling()
2814 auto ecmaOpcodeGate = builder_.Int32(static_cast<uint32_t>(ecmaOpcode)); in AddProfiling()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp1899 int ecmaOpcode = GetArg(argv, argc, 0).GetInt(); in DEF_RUNTIME_STUBS() local
1901 std::string result = kungfu::GetEcmaOpcodeStr(static_cast<EcmaOpcode>(ecmaOpcode)); in DEF_RUNTIME_STUBS()
1910 EcmaOpcode ecmaOpcode = static_cast<EcmaOpcode>(GetArg(argv, argc, 0).GetInt()); in DEF_RUNTIME_STUBS() local
1913 profiler->Update(ecmaOpcode, mode); in DEF_RUNTIME_STUBS()