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:kNeedI64RegPair
(Results
1 - 4
of
4
) sorted by relevance
/third_party/node/deps/v8/src/wasm/baseline/
H
A
D
liftoff-register.h
19
static constexpr bool
kNeedI64RegPair
= kSystemPointerSize == 4;
member
25
kGpRegPair = kFpReg + 1 + (kNeedS128RegPair && !
kNeedI64RegPair
),
26
kFpRegPair = kFpReg + 1 +
kNeedI64RegPair
,
29
// | |
kNeedI64RegPair
|
41
static_assert(
kNeedI64RegPair
== (kGpRegPair != kNoReg),
49
return
kNeedI64RegPair
&& kind == kI64;
in needs_gp_reg_pair()
66
return
kNeedI64RegPair
? kGpRegPair : kGpReg;
in reg_class_for()
82
// -
kNeedI64RegPair
is true
135
std::max(
kNeedI64RegPair
|| kNeedS128RegPair ? kBitsPerRegPair : 0,
206
DCHECK(
kNeedI64RegPair
);
in ForPair()
[all...]
H
A
D
liftoff-assembler.cc
144
// {
kNeedI64RegPair
} is false.
in LoadI64HalfIntoRegister()
145
CHECK(
kNeedI64RegPair
);
in LoadI64HalfIntoRegister()
950
const bool is_gp_pair =
kNeedI64RegPair
&& kind == kI64;
in PrepareStackTransfers()
1133
if (
kNeedI64RegPair
&& dst.is_gp_pair()) {
in Move()
1248
if ((
kNeedI64RegPair
|| kNeedS128RegPair) && reg.is_pair()) {
in ValidateCacheState()
H
A
D
liftoff-assembler.h
235
if (
kNeedI64RegPair
&& rc == kGpRegPair) {
256
if (
kNeedI64RegPair
&& rc == kGpRegPair) {
560
if (
kNeedI64RegPair
&& rc == kGpRegPair) {
in GetUnusedRegister()
H
A
D
liftoff-compiler.cc
1743
LiftoffRegister c_call_dst =
kNeedI64RegPair
? dst.low() : dst;
in UnOp()
2808
kNeedI64RegPair
&& index.is_gp_pair() ? index.low_gp() : index.gp();
3207
if (env_->module->is_memory64 &&
kNeedI64RegPair
) {
3231
if (
kNeedI64RegPair
) {
3261
if (
kNeedI64RegPair
) result64 = __ GetUnusedRegister(kGpRegPair, pinned);
4186
if (
kNeedI64RegPair
) {
4221
if (
kNeedI64RegPair
) {
4663
// 64 bit systems (
kNeedI64RegPair
== false):
4665
// 32 bit systems (
kNeedI64RegPair
== true):
4667
auto target = kTargets[
kNeedI64RegPair
][kin
[all...]
Completed in 18 milliseconds