Home
last modified time | relevance | path

Searched refs:bytecodeHitTimeMap_ (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_hcr_lowering.cpp66 if (bytecodeHitTimeMap_.find(a.first) != bytecodeHitTimeMap_.end()) { in RunTSHCRLowering()
67 … double rate = static_cast<double>(bytecodeHitTimeMap_[a.first]) / static_cast<double>(a.second); in RunTSHCRLowering()
70 << "(" << std::to_string(bytecodeHitTimeMap_[a.first]) in RunTSHCRLowering()
1518 if (bytecodeHitTimeMap_.find(currentOp_) != bytecodeHitTimeMap_.end()) { in AddHitBytecodeCount()
1519 bytecodeHitTimeMap_[currentOp_]++; in AddHitBytecodeCount()
1521 bytecodeHitTimeMap_[currentOp_] = 1; in AddHitBytecodeCount()
Dts_hcr_lowering.h199 std::unordered_map<EcmaOpcode, uint32_t> bytecodeHitTimeMap_; variable