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:saves_fp
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/compiler/backend/arm/
H
A
D
code-generator-arm.cc
3669
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleArchInstruction()
3670
if (!
saves_fp
.is_empty()) {
in AssembleArchInstruction()
3674
if (!
saves_fp
.is_empty()) {
in AssembleArchInstruction()
3677
uint32_t last = base::bits::CountLeadingZeros32(
saves_fp
.bits()) - 1;
in AssembleArchInstruction()
3678
uint32_t first = base::bits::CountTrailingZeros32(
saves_fp
.bits());
in AssembleArchInstruction()
3679
DCHECK_EQ((last - first + 1),
saves_fp
.Count());
in AssembleArchInstruction()
3744
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleArchInstruction()
3785
required_slots -= 2 *
saves_fp
.Count();
in AssembleArchInstruction()
3791
if (!
saves_fp
.is_empty()) {
in AssembleArchInstruction()
3794
__ vstm(db_w, sp,
saves_fp
in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/arm64/
H
A
D
code-generator-arm64.cc
3016
CPURegList
saves_fp
=
in AssembleArchInstruction()
3018
int saved_count =
saves_fp
.Count();
in AssembleArchInstruction()
3020
DCHECK(
saves_fp
.bits() == CPURegList::GetCalleeSavedV().bits());
in AssembleArchInstruction()
3046
CPURegList
saves_fp
=
in AssembleArchInstruction()
3048
DCHECK_EQ(
saves_fp
.Count() % 2, 0);
in AssembleArchInstruction()
3132
required_slots -=
saves_fp
.Count();
in AssembleArchInstruction()
3201
DCHECK_IMPLIES(
saves_fp
.Count() != 0,
in AssembleArchInstruction()
3202
saves_fp
.bits() == CPURegList::GetCalleeSavedV().bits());
in AssembleArchInstruction()
3203
__ PushCPURegList(
saves_fp
);
in AssembleArchInstruction()
3227
CPURegList
saves_fp
in AssembleArchInstruction()
[all...]
/third_party/node/deps/v8/src/compiler/backend/x64/
H
A
D
code-generator-x64.cc
4639
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in FinishFrame()
local
4640
if (!
saves_fp
.is_empty()) { // Save callee-saved XMM registers.
in FinishFrame()
4642
const uint32_t saves_fp_count =
saves_fp
.Count();
in FinishFrame()
4707
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleConstructFrame()
local
4746
required_slots -=
saves_fp
.Count() * (kQuadWordSize / kSystemPointerSize);
in AssembleConstructFrame()
4753
if (!
saves_fp
.is_empty()) { // Save callee-saved XMM registers.
in AssembleConstructFrame()
4754
const uint32_t saves_fp_count =
saves_fp
.Count();
in AssembleConstructFrame()
4760
for (XMMRegister reg :
saves_fp
) {
in AssembleConstructFrame()
4792
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleReturn()
local
4793
if (!
saves_fp
in AssembleReturn()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ppc/
H
A
D
code-generator-ppc.cc
4085
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleConstructFrame()
local
4131
required_slots -= (kDoubleSize / kSystemPointerSize) *
saves_fp
.Count();
in AssembleConstructFrame()
4136
if (!
saves_fp
.is_empty()) {
in AssembleConstructFrame()
4137
__ MultiPushDoubles(
saves_fp
);
in AssembleConstructFrame()
4138
DCHECK_EQ(kNumCalleeSavedDoubles,
saves_fp
.Count());
in AssembleConstructFrame()
/third_party/node/deps/v8/src/compiler/backend/s390/
H
A
D
code-generator-s390.cc
3442
const DoubleRegList
saves_fp
= call_descriptor->CalleeSavedFPRegisters();
in AssembleConstructFrame()
local
3484
required_slots -= (kDoubleSize / kSystemPointerSize) *
saves_fp
.Count();
in AssembleConstructFrame()
3489
if (!
saves_fp
.is_empty()) {
in AssembleConstructFrame()
3490
__ MultiPushDoubles(
saves_fp
);
in AssembleConstructFrame()
3491
DCHECK_EQ(kNumCalleeSavedDoubles,
saves_fp
.Count());
in AssembleConstructFrame()
Completed in 33 milliseconds