Searched refs:hotnessThreshold (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_manager.h | 45 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,
|
D | pgo_profiler_manager.cpp | 27 …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()
|
D | pgo_profiler_encoder.h | 28 PGOProfilerEncoder(const std::string &outDir, uint32_t hotnessThreshold, ApGenMode mode) in PGOProfilerEncoder() argument 29 : outDir_(outDir), hotnessThreshold_(hotnessThreshold), mode_(mode) {} in PGOProfilerEncoder()
|
D | pgo_profiler_decoder.h | 30 PGOProfilerDecoder(const std::string &inPath, uint32_t hotnessThreshold) in PGOProfilerDecoder() argument 31 : inPath_(inPath), hotnessThreshold_(hotnessThreshold) {} in PGOProfilerDecoder()
|
D | pgo_profiler_info.h | 1013 explicit PGORecordDetailInfos(uint32_t hotnessThreshold) : hotnessThreshold_(hotnessThreshold) in PGORecordDetailInfos() argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | pass_manager.h | 176 const std::string &profIn, uint32_t hotnessThreshold, PassOptions *passOptions) in PassManager() argument 179 profilerDecoder_(profIn, hotnessThreshold), passOptions_(passOptions) {}; in PassManager()
|
D | aot_compiler.cpp | 173 uint32_t hotnessThreshold = runtimeOptions.GetPGOHotnessThreshold(); in Main() local 186 maxMethodsInModule, profilerIn, hotnessThreshold, &passOptions); in Main()
|