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:branch
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/jit/
H
A
D
profiling_data.h
274
auto
branch
= FindBranchData(pc);
in UpdateBranchTaken()
local
275
ASSERT(
branch
!= nullptr);
in UpdateBranchTaken()
276
branch
->IncrementTaken();
in UpdateBranchTaken()
281
auto
branch
= FindBranchData(pc);
in UpdateBranchNotTaken()
local
282
ASSERT(
branch
!= nullptr);
in UpdateBranchNotTaken()
283
branch
->IncrementNotTaken();
in UpdateBranchNotTaken()
288
auto
branch
= FindBranchData(pc);
in GetBranchTakenCounter()
local
289
ASSERT(
branch
!= nullptr);
in GetBranchTakenCounter()
290
return
branch
->GetTakenCounter();
in GetBranchTakenCounter()
295
auto
branch
in GetBranchNotTakenCounter()
local
[all...]
/arkcompiler/runtime_core/libpandafile/
H
A
D
bytecode_emitter.cpp
225
for (std::pair<const uint32_t, Label> &
branch
: branches_) {
in UpdateBranches()
226
uint32_t insn_pc =
branch
.first;
in UpdateBranches()
227
Label label =
branch
.second;
in UpdateBranches()
269
// Do we support
branch
to itself?
in EstimateMaxDistance()
284
for (const std::pair<const uint32_t, Label> &
branch
: branches_) {
in CheckLabels()
285
const Label &label =
branch
.second;
in CheckLabels()
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
bytecode_emitter.cpp
225
for (std::pair<const uint32_t, Label> &
branch
: branches_) {
in UpdateBranches()
226
uint32_t insnPc =
branch
.first;
in UpdateBranches()
227
Label label =
branch
.second;
in UpdateBranches()
264
// Do we support
branch
to itself?
in EstimateMaxDistance()
279
for (const std::pair<const uint32_t, Label> &
branch
: branches_) {
in CheckLabels()
280
const Label &label =
branch
.second;
in CheckLabels()
/arkcompiler/runtime_core/scripts/
H
A
D
install-third-party
109
if [[ "$commit_type" == "
branch
" || "$commit_type" == "tag" ]] ; then
110
GIT_SSL_NO_VERIFY=true git clone --verbose --depth=1 --
branch
"$commit_id" "$lib_repo" "$lib_dir"
/arkcompiler/runtime_core/static_core/scripts/
H
A
D
install-third-party
110
local commit_id="$3" #
branch
or tag name, the syntax is the same
116
GIT_SSL_NO_VERIFY=true git clone --verbose --depth=1 --
branch
"$commit_id" \
194
if [[ "$commit_type" == "
branch
" || "$commit_type" == "tag" ]] ; then
/arkcompiler/ets_runtime/ecmascript/regexp/
H
A
D
regexp_parser.cpp
163
uint32_t
branch
= ptr;
in ParseDisjunction()
local
167
branch
= ptr + offset + opSplitSize;
in ParseDisjunction()
171
uint8_t opCodeChar = buffer_.GetU8(
branch
);
in ParseDisjunction()
173
chars.push_back(buffer_.GetU16(
branch
+ 1));
in ParseDisjunction()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H
A
D
llvm_ir_constructor.cpp
1983
/* Creating
branch
*/
in CreateDeoptimizationBranch()
1987
auto
branch
= builder_.CreateCondBr(deoptimize, throwPath, continuation, branchWeights);
in CreateDeoptimizationBranch()
local
1999
branch
->setMetadata(llvm::LLVMContext::MD_make_implicit, metadata);
in CreateDeoptimizationBranch()
Completed in 16 milliseconds