Home
last modified time | relevance | path

Searched refs:hotnessThreshold (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_manager.h45 void Initialize(const std::string &outDir, uint32_t hotnessThreshold) in Initialize() argument
48 encoder_ = std::make_unique<PGOProfilerEncoder>(outDir, hotnessThreshold, ApGenMode::MERGE); in Initialize()
123 …_API TextToBinary(const std::string &inPath, const std::string &outPath, uint32_t hotnessThreshold, in TextToBinary() argument
126 PGOProfilerEncoder encoder(outPath, hotnessThreshold, mode); in TextToBinary()
139 …_API BinaryToText(const std::string &inPath, const std::string &outPath, uint32_t hotnessThreshold) in BinaryToText() argument
141 PGOProfilerDecoder decoder(inPath, hotnessThreshold); in BinaryToText()
150 …ool MergeApFiles(const std::string &inFiles, const std::string &outPath, uint32_t hotnessThreshold,
Dpgo_profiler_manager.cpp27 …er::MergeApFiles(const std::string &inFiles, const std::string &outPath, uint32_t hotnessThreshold, in MergeApFiles() argument
31 PGOProfilerEncoder merger(outPath, hotnessThreshold, mode); in MergeApFiles()
34 << " ,hotnessThreshold: " << hotnessThreshold; in MergeApFiles()
44 PGOProfilerDecoder decoder(fileName, hotnessThreshold); in MergeApFiles()
70 uint32_t hotnessThreshold = merger.GetHotnessThreshold(); in MergeApFiles() local
80 PGOProfilerDecoder decoder(fileName, hotnessThreshold); in MergeApFiles()
Dpgo_profiler_encoder.h28 PGOProfilerEncoder(const std::string &outDir, uint32_t hotnessThreshold, ApGenMode mode) in PGOProfilerEncoder() argument
29 : outDir_(outDir), hotnessThreshold_(hotnessThreshold), mode_(mode) {} in PGOProfilerEncoder()
Dpgo_profiler_decoder.h30 PGOProfilerDecoder(const std::string &inPath, uint32_t hotnessThreshold) in PGOProfilerDecoder() argument
31 : inPath_(inPath), hotnessThreshold_(hotnessThreshold) {} in PGOProfilerDecoder()
Dpgo_profiler_info.h1013 explicit PGORecordDetailInfos(uint32_t hotnessThreshold) : hotnessThreshold_(hotnessThreshold) in PGORecordDetailInfos() argument
/arkcompiler/ets_runtime/ecmascript/compiler/
Dpass_manager.h176 const std::string &profIn, uint32_t hotnessThreshold, PassOptions *passOptions) in PassManager() argument
179 profilerDecoder_(profIn, hotnessThreshold), passOptions_(passOptions) {}; in PassManager()
Daot_compiler.cpp173 uint32_t hotnessThreshold = runtimeOptions.GetPGOHotnessThreshold(); in Main() local
186 maxMethodsInModule, profilerIn, hotnessThreshold, &passOptions); in Main()