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:labels_
(Results
1 - 10
of
10
) sorted by relevance
/third_party/node/deps/v8/src/interpreter/
H
A
D
bytecode-label.h
86
explicit BytecodeLabels(Zone* zone) :
labels_
(zone), is_bound_(false) {}
in BytecodeLabels()
97
std::all_of(
labels_
.begin(),
labels_
.end(), [](const BytecodeLabel& l) {
in is_bound()
103
bool empty() const { return
labels_
.empty(); }
in empty()
106
ZoneLinkedList<BytecodeLabel>
labels_
;
member in v8::internal::interpreter::BytecodeLabels
H
A
D
bytecode-label.cc
16
labels_
.emplace_back(BytecodeLabel());
in New()
17
return &
labels_
.back();
in New()
23
for (auto& label :
labels_
) {
in Bind()
H
A
D
bytecode-generator.cc
1028
labels_
(bytecode_generator->zone()) {
in OptionalChainNullLabelScope()
1030
bytecode_generator_->optional_chaining_null_labels_ = &
labels_
;
in OptionalChainNullLabelScope()
1037
BytecodeLabels* labels() { return &
labels_
; }
in labels()
1041
BytecodeLabels
labels_
;
member in v8::internal::interpreter::final
/third_party/vixl/benchmarks/aarch64/
H
A
D
bench-utils.cc
210
if (!
labels_
.empty()) {
in GenerateTrivialSequence()
211
__ Adr(PickX(),
labels_
.begin()->target);
in GenerateTrivialSequence()
291
std::list<LabelPair>::iterator it =
labels_
.begin();
in BindPendingLabels()
292
while ((it !=
labels_
.end()) && (bind_mask != 0)) {
in BindPendingLabels()
299
it =
labels_
.erase(it);
in BindPendingLabels()
309
while (!
labels_
.empty()) {
in BindAllPendingLabels()
322
labels_
.push_front(pair);
in GenerateBranchSequence()
331
labels_
.push_front(pair);
in GenerateBranchSequence()
338
labels_
.push_front(pair);
in GenerateBranchSequence()
H
A
D
bench-utils.h
261
std::list<LabelPair>
labels_
;
member in BenchCodeGenerator
/third_party/node/deps/v8/src/baseline/
H
A
D
baseline-compiler.h
186
if (
labels_
[i] == nullptr) {
in EnsureLabels()
187
labels_
[i] = zone_.New<BaselineLabels>();
in EnsureLabels()
189
return
labels_
[i];
in EnsureLabels()
192
BaselineLabels**
labels_
;
member in v8::internal::baseline::BaselineCompiler
H
A
D
baseline-compiler.cc
278
labels_
(zone_.NewArray<BaselineLabels*>(bytecode_->length())) {
in BaselineCompiler()
279
MemsetPointer(
labels_
, nullptr, bytecode_->length());
in BaselineCompiler()
471
if (
labels_
[offset]) {
in VisitSingleBytecode()
474
for (auto&& label :
labels_
[offset]->linked) {
in VisitSingleBytecode()
478
labels_
[offset]->linked.Clear();
in VisitSingleBytecode()
480
__ BindWithoutJumpTarget(&
labels_
[offset]->unlinked);
in VisitSingleBytecode()
1973
Label* label = &
labels_
[iterator().GetJumpTargetOffset()]->unlinked;
in VisitJumpLoop()
/third_party/node/deps/v8/src/compiler/backend/
H
A
D
code-generator.h
148
Label* GetLabel(RpoNumber rpo) { return &
labels_
[rpo.ToSize()]; }
in GetLabel()
413
Label* const
labels_
;
member in v8::internal::compiler::final
H
A
D
code-generator.cc
61
labels_
(
in CodeGenerator()
89
new (&
labels_
[i]) Label;
in CodeGenerator()
/third_party/node/deps/v8/src/parsing/
H
A
D
parser-base.h
369
labels_
(labels),
in Target()
384
const ZonePtrList<const AstRawString>* labels() const { return
labels_
; }
in labels()
396
const ZonePtrList<const AstRawString>* const
labels_
;
member in v8::internal::ParseFunctionFlag::ParserBase::Target
Completed in 30 milliseconds