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:vector_bb_
(Results
1 - 2
of
2
) sorted by relevance
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
graph.cpp
110
block->SetId(
vector_bb_
.size());
in AddBlock()
111
vector_bb_
.push_back(block);
in AddBlock()
119
if (
vector_bb_
.size() <= id) {
in AddBlock()
121
vector_bb_
.resize((id + 1U) << 1U, nullptr);
in AddBlock()
123
ASSERT(
vector_bb_
[id] == nullptr);
in AddBlock()
125
vector_bb_
[id] = block;
in AddBlock()
326
vector_bb_
[block->GetId()] = nullptr;
in EraseBlock()
336
ASSERT(
vector_bb_
[block->GetId()] == nullptr);
in RestoreBlock()
337
vector_bb_
[block->GetId()] = block;
in RestoreBlock()
H
A
D
graph.h
150
vector_bb_
(allocator->Adapter()),
in Graph()
243
// get
vector_bb_
246
return
vector_bb_
;
in GetVectorBlocks()
251
return std::count_if(
vector_bb_
.begin(),
vector_bb_
.end(), [](BasicBlock *block) { return block != nullptr; });
in GetAliveBlocksCount()
601
return
vector_bb_
.begin();
in begin()
605
return
vector_bb_
.begin();
in begin()
609
return
vector_bb_
.end();
in end()
613
return
vector_bb_
.end();
in end()
1040
ArenaVector<BasicBlock *>
vector_bb_
;
member
[all...]
Completed in 3 milliseconds