Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/runtime_core/docs/diagrams/
Dgc-trigger-sequence-threshold.pusequence18 title GC triggered by threshold
28 Allocator -> Allocator: threshold for heap occupancy reached
Dg1-concurrent-marking-activity.puactivity19 triggered when threshold reached after Young GC;
Dg1gc-gc-activity.puactivity32 Note: only if occupied by alive objects space in region < some threshold;
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.h442 bool IsFilter(uint32_t threshold) const in IsFilter() argument
444 if (count_ < threshold && mode_ == SampleMode::CALL_MODE) { in IsFilter()
845 …bool ParseFromBinary(Chunk *chunk, uint32_t threshold, void **buffer, PGOProfilerHeader *const hea…
846 …bool ProcessToBinary(uint32_t threshold, const CString &recordName, const SaveTask *task, std::fst…
849 bool ParseFromText(Chunk *chunk, uint32_t threshold, const std::vector<std::string> &content);
850 void ProcessToText(uint32_t threshold, const CString &recordName, std::ofstream &stream) const;
930 bool ParseFromBinary(uint32_t threshold, void **buffer, PGOProfilerHeader *const header);
1071 explicit PGORecordSimpleInfos(uint32_t threshold) : hotnessThreshold_(threshold) in PGORecordSimpleInfos() argument
Dpgo_profiler_info.cpp729 bool PGOMethodInfoMap::ParseFromBinary(Chunk *chunk, uint32_t threshold, void **buffer, PGOProfiler… in ParseFromBinary() argument
734 if (info->IsFilter(threshold)) { in ParseFromBinary()
760 bool PGOMethodInfoMap::ProcessToBinary(uint32_t threshold, const CString &recordName, const SaveTas… in ProcessToBinary() argument
774 if (curMethodInfo->IsFilter(threshold)) { in ProcessToBinary()
808 bool PGOMethodInfoMap::ParseFromText(Chunk *chunk, uint32_t threshold, const std::vector<std::strin… in ParseFromText() argument
826 if (count < threshold && mode == SampleMode::CALL_MODE) { in ParseFromText()
867 void PGOMethodInfoMap::ProcessToText(uint32_t threshold, const CString &recordName, std::ofstream &… in ProcessToText() argument
873 if (methodInfo->IsFilter(threshold)) { in ProcessToText()
904 bool PGOMethodIdSet::ParseFromBinary(uint32_t threshold, void **buffer, PGOProfilerHeader *const he… in ParseFromBinary() argument
909 if (info->IsFilter(threshold)) { in ParseFromBinary()
/arkcompiler/ets_runtime/ecmascript/
Djs_runtime_options.h823 void SetTypeThreshold(double threshold) in SetTypeThreshold() argument
825 typeThreshold_ = threshold; in SetTypeThreshold()
878 void SetPGOHotnessThreshold(uint32_t threshold) in SetPGOHotnessThreshold() argument
880 pgoHotnessThreshold_ = threshold; in SetPGOHotnessThreshold()
/arkcompiler/runtime_core/tests/checked/
Dtlab_test.pa15 #! RUN options: "--compiler-hotness-threshold=0 --no-async-jit=false --compiler-enable-jit…
43 #! RUN options: "--compiler-hotness-threshold=0 --no-async-jit=false --compiler-enable-jit…
/arkcompiler/runtime_core/compiler/docs/
Daot_resolve_string.md29 - `--resolve-string-aot-threshold` controls how many strings could be save to PLT-slots (option app…
38 - if amount of already filled PLT-slots is above `--resolve-string-aot-threshold` then the resolved…
/arkcompiler/runtime_core/tests/cts-generator/
DCMakeLists.txt187 -o "--compiler-hotness-threshold=0"
/arkcompiler/runtime_core/docs/
Don-stack-replacement.md117 return false if hotness_counter < threshold:
Druntime-compiled_code-interaction.md72 When the hotness counter gets saturated (reaches the threshold) the interpreter triggers compilatio…
73 …ovides a command line option to tune the hotness counter threshold: `--compiler-hotness-threshold`.
Dmemory-management.md462 Concurrent marking(triggered when we reach some threshold for tenured generation size):
Ddoxygen.config2249 # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2251 # for no limit. Note that the threshold may be exceeded by 50% before the limit
2252 # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
/arkcompiler/runtime_core/tests/
DCMakeLists.txt450 …"${CUR_RUNTIME_OPTIONS}" "--compiler-enable-jit=true --compiler-hotness-threshold=0 --no-async-jit…
467 …"${CUR_RUNTIME_OPTIONS}" "--compiler-enable-jit=true --compiler-hotness-threshold=0 --no-async-jit…
484 …"${CUR_RUNTIME_OPTIONS}" "--compiler-enable-jit=true --compiler-hotness-threshold=2 --compiler-ena…
519 …RUNTIME_OPTIONS "${CUR_RUNTIME_OPTIONS}" "--compiler-hotness-threshold=0 --no-async-jit=true --com…
551 …RUNTIME_OPTIONS "${CUR_RUNTIME_OPTIONS}" "--compiler-hotness-threshold=0 --no-async-jit=true --com…
867 …SOURCE_DIR}/cts-assembly/oom-01.pa" COMPILER_OPTIONS --compiler-hotness-threshold=0 --compiler-inl…
/arkcompiler/runtime_core/tests/benchmarks/
DCMakeLists.txt184 …NS ${ENABLE_GC_OPTION} "--compiler-enable-jit=true" "--compiler-hotness-threshold=0" "--limit-stan…
/arkcompiler/ets_runtime/docs/
DREADME_zh.md689 | --pgo-hotness-threshold | 热点函数的阈值,当函数的调用次数大于该值,则认为是热点函数。默认值:“2” |
705 | --pgo-hotness-threshold | 使能pgo编译的函数调用次数阈值,profile文件中记录的调用次数大于该阈值的函数才会进行编译。默认值:“2”|
Dusing-the-toolchain.md106 …466"><a name="p1044510362466"></a><a name="p1044510362466"></a>Specifies the timeout threshold.</p>
/arkcompiler/ets_frontend/
DREADME.md318 …2028600"><a name="p37282028600"></a><a name="p37282028600"></a>Specifies the timeout threshold.</p>
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js60240 t.threshold = this.threshold;
60261 this._items = Array.from(t).sort((({threshold: t}, {threshold: e}) => t - e)); property
60270 const e = new O0(t, this, this._items, this._items.map((({threshold: t}) => t)), 0); property
60482 Qi.copy(t.threshold, this.threshold);
60518 …const e = new $0(t, this, this._items, this._items.map((({threshold: t}) => t)), this.algorithm, [… property
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2 …"set output file.","").option("-t, --timeout <time>","js to abc timeout threshold(unit: seconds)."…