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:kNeedS128RegPair
(Results
1 - 4
of
4
) sorted by relevance
/third_party/node/deps/v8/src/wasm/baseline/
H
A
D
liftoff-register.h
20
static constexpr bool
kNeedS128RegPair
= kFPAliasing == AliasingKind::kCombine;
member
25
kGpRegPair = kFpReg + 1 + (
kNeedS128RegPair
&& !kNeedI64RegPair),
27
kNoReg = kFpRegPair +
kNeedS128RegPair
,
31
// |
kNeedS128RegPair
| true | false |
43
static_assert(
kNeedS128RegPair
== (kFpRegPair != kNoReg),
53
return
kNeedS128RegPair
&& kind == kS128;
in needs_fp_reg_pair()
68
return
kNeedS128RegPair
? kFpRegPair : kFpReg;
in reg_class_for()
83
// -
kNeedS128RegPair
is true
128
(
kNeedS128RegPair
? 2 : 1) + 2 * kBitsPerGpRegCode;
135
std::max(kNeedI64RegPair ||
kNeedS128RegPair
[all...]
H
A
D
liftoff-assembler.cc
340
if (
kNeedS128RegPair
&& load->kind == kS128) {
in ExecuteLoads()
1137
} else if (
kNeedS128RegPair
&& dst.is_fp_pair()) {
in Move()
1248
if ((kNeedI64RegPair ||
kNeedS128RegPair
) && reg.is_pair()) {
in ValidateCacheState()
1291
// [1]
kNeedS128RegPair
, and
in SpillAdjacentFpRegisters()
1293
CHECK(
kNeedS128RegPair
);
in SpillAdjacentFpRegisters()
H
A
D
liftoff-assembler.h
239
} else if (
kNeedS128RegPair
&& rc == kFpRegPair) {
260
} else if (
kNeedS128RegPair
&& rc == kFpRegPair) {
565
} else if (
kNeedS128RegPair
&& rc == kFpRegPair) {
in GetUnusedRegister()
H
A
D
liftoff-compiler.cc
4045
static constexpr bool pin_src2 =
kNeedS128RegPair
&& src2_rc == kFpReg;
Completed in 23 milliseconds