Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:profMap
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/vmstat/
H
A
D
opt_code_profiler.cpp
93
auto &
profMap
= JitWarmupProfiler::GetInstance()->profMap_;
in FilterMethodToPrint()
local
94
for (auto it =
profMap
.begin(); it !=
profMap
.end();) {
in FilterMethodToPrint()
97
profMap
.erase(it++);
in FilterMethodToPrint()
128
if (
profMap
.size() != 0) {
in FilterMethodToPrint()
129
for (auto it =
profMap
.begin(); it !=
profMap
.end(); it++) {
in FilterMethodToPrint()
145
auto &
profMap
= JitWarmupProfiler::GetInstance()->profMap_;
in FilterMethodToPrint()
local
146
if (
profMap
.find(methodInfo) !=
profMap
in FilterMethodToPrint()
[all...]
/arkcompiler/ets_runtime/ecmascript/jit/
H
A
D
jit.cpp
340
auto &
profMap
= JitWarmupProfiler::GetInstance()->profMap_;
in CountInterpExecFuncs()
local
341
if (
profMap
.find(methodInfo) ==
profMap
.end()) {
in CountInterpExecFuncs()
342
profMap
.insert({methodInfo, false});
in CountInterpExecFuncs()
459
auto &
profMap
= JitWarmupProfiler::GetInstance()->profMap_;
in CheckJitCompileStatus()
local
460
if (
profMap
.find(methodName) !=
profMap
.end()) {
in CheckJitCompileStatus()
461
profMap
.erase(methodName);
in CheckJitCompileStatus()
H
A
D
jit_task.cpp
324
auto &
profMap
= JitWarmupProfiler::GetInstance()->profMap_;
in InstallCodeByCompilerTier()
local
325
if (
profMap
.find(GetMethodName()) !=
profMap
.end()) {
in InstallCodeByCompilerTier()
326
profMap
[GetMethodName()] = true;
in InstallCodeByCompilerTier()
Completed in 3 milliseconds