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:spill_range
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/deps/v8/src/compiler/backend/
H
A
D
mid-tier-register-allocator.cc
355
if (HasSpillRange())
spill_range
()->ClearDeferredBlockSpills();
in MarkAsNeedsSpillAtOutput()
486
SpillRange*
spill_range
() const {
in spill_range()
function in v8::internal::compiler::final
663
return HasSpillRange() &&
spill_range
()->HasDeferredBlockSpills();
in NeedsSpillAtDeferredBlocks()
669
for (auto deferred_spill : *
spill_range
()->deferred_spill_outputs()) {
in EmitDeferredSpillOutputs()
3268
vreg_data.
spill_range
()->IsLiveAt(block->first_instruction_index(),
in UpdateSpillRangesForLoops()
3270
vreg_data.
spill_range
()->ExtendRangeTo(last_loop_instr);
in UpdateSpillRangesForLoops()
3383
VirtualRegisterData::SpillRange*
spill_range
=
in Allocate()
local
3384
virtual_register->
spill_range
();
in Allocate()
3387
Range live_range =
spill_range
->live_range();
in Allocate()
3419
return a->
spill_range
()
in AllocateSpillSlots()
[all...]
H
A
D
register-allocator.cc
901
void TopLevelLiveRange::SetSpillRange(SpillRange*
spill_range
) {
in SetSpillRange()
argument
903
DCHECK(
spill_range
);
in SetSpillRange()
904
spill_range_ =
spill_range
;
in SetSpillRange()
908
SpillRange*
spill_range
= GetSpillRange();
in GetSpillRangeOperand()
local
909
int index =
spill_range
->assigned_slot();
in GetSpillRangeOperand()
1476
SpillRange*
spill_range
= range->GetAllocatedSpillRange();
in AssignSpillRangeToLiveRange()
local
1477
if (
spill_range
== nullptr) {
in AssignSpillRangeToLiveRange()
1478
spill_range
= allocation_zone()->New<SpillRange>(range, allocation_zone());
in AssignSpillRangeToLiveRange()
1487
spill_ranges()[range->vreg()] =
spill_range
;
in AssignSpillRangeToLiveRange()
1488
return
spill_range
;
in AssignSpillRangeToLiveRange()
[all...]
H
A
D
register-allocator.h
857
void SetSpillRange(SpillRange*
spill_range
);
Completed in 21 milliseconds