OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VFP3
(Results
1 - 15
of
15
) sorted by null
/external/v8/src/arm/
cpu-arm.cc
50
return CpuFeatures::IsSupported(
VFP3
);
assembler-arm.cc
64
answer |= 1u <<
VFP3
| 1u << ARMv7;
67
answer |= 1u <<
VFP3
| 1u << ARMv7;
83
supported_ |= 1u <<
VFP3
| 1u << ARMv7;
96
if (OS::ArmCpuHasFeature(
VFP3
)) {
100
supported_ |= 1u <<
VFP3
| 1u << ARMv7;
101
found_by_runtime_probing_ |= 1u <<
VFP3
| 1u << ARMv7;
[
all
...]
code-stubs-arm.cc
379
// floating point registers
VFP3
must be supported. If core registers are
380
// requested when
VFP3
is supported d6 and d7 will be scratched.
389
// floating point registers
VFP3
must be supported. If core registers are
390
// requested when
VFP3
is supported d6 and d7 will still be scratched. If
435
// scratch3 is not used when
VFP3
is supported.
446
// Generate non
VFP3
code to check if a double can be exactly represented by a
468
// registers. (Used when
VFP3
is not supported.)
501
if (CpuFeatures::IsSupported(
VFP3
)) {
502
CpuFeatures::Scope scope(
VFP3
);
569
if (CpuFeatures::IsSupported(
VFP3
) &
[
all
...]
code-stubs-arm.h
82
use_vfp3_ = CpuFeatures::IsSupported(
VFP3
);
stub-cache-arm.cc
[
all
...]
macro-assembler-arm.cc
[
all
...]
builtins-arm.cc
[
all
...]
deoptimizer-arm.cc
545
CpuFeatures::Scope scope(
VFP3
);
assembler-arm.h
484
if (f ==
VFP3
&& !FLAG_enable_vfp3) return false;
[
all
...]
full-codegen-arm.cc
564
if (CpuFeatures::IsSupported(
VFP3
)) {
565
CpuFeatures::Scope scope(
VFP3
);
[
all
...]
lithium-codegen-arm.cc
83
CpuFeatures::Scope scope1(
VFP3
);
[
all
...]
/external/v8/test/cctest/
test-assembler-arm.cc
249
if (CpuFeatures::IsSupported(
VFP3
)) {
250
CpuFeatures::Scope scope(
VFP3
);
442
if (CpuFeatures::IsSupported(
VFP3
)) {
443
CpuFeatures::Scope scope(
VFP3
);
645
if (CpuFeatures::IsSupported(
VFP3
)) {
646
CpuFeatures::Scope scope(
VFP3
);
756
if (CpuFeatures::IsSupported(
VFP3
)) {
757
CpuFeatures::Scope scope(
VFP3
);
871
if (CpuFeatures::IsSupported(
VFP3
)) {
872
CpuFeatures::Scope scope(
VFP3
);
[
all
...]
test-disasm-arm.cc
418
if (CpuFeatures::IsSupported(
VFP3
)) {
419
CpuFeatures::Scope scope(
VFP3
);
/external/v8/src/
v8globals.h
469
VFP3
= 1, // ARM
platform-linux.cc
96
// that we have
VFP3
instructions. If gcc can assume it then so can
98
return 1u <<
VFP3
| 1u << ARMv7;
153
case
VFP3
:
167
if (feature ==
VFP3
) {
Completed in 260 milliseconds