OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsRegisterPair
(Results
1 - 11
of
11
) sorted by null
/art/compiler/utils/arm/
managed_register_arm.cc
38
if (
IsRegisterPair
()) {
54
if (other.
IsRegisterPair
() || other.IsOverlappingDRegister()) {
62
CHECK(IsOverlappingDRegister() ||
IsRegisterPair
());
69
CHECK(
IsRegisterPair
());
90
} else if (
IsRegisterPair
()) {
managed_register_arm.h
115
CHECK(
IsRegisterPair
());
125
CHECK(
IsRegisterPair
());
131
CHECK(
IsRegisterPair
());
160
bool
IsRegisterPair
() const {
173
(
IsRegisterPair
() && test.
IsRegisterPair
());
239
!IsOverlappingDRegister() && !
IsRegisterPair
());
managed_register_arm_test.cc
36
EXPECT_TRUE(!reg.
IsRegisterPair
());
45
EXPECT_TRUE(!reg.
IsRegisterPair
());
54
EXPECT_TRUE(!reg.
IsRegisterPair
());
63
EXPECT_TRUE(!reg.
IsRegisterPair
());
75
EXPECT_TRUE(!reg.
IsRegisterPair
());
84
EXPECT_TRUE(!reg.
IsRegisterPair
());
93
EXPECT_TRUE(!reg.
IsRegisterPair
());
102
EXPECT_TRUE(!reg.
IsRegisterPair
());
111
EXPECT_TRUE(!reg.
IsRegisterPair
());
120
EXPECT_TRUE(!reg.
IsRegisterPair
());
[
all
...]
assembler_arm.cc
[
all
...]
/art/compiler/utils/mips/
managed_register_mips.cc
40
if (
IsRegisterPair
()) {
56
if (other.
IsRegisterPair
() || other.IsOverlappingDRegister()) {
64
CHECK(IsOverlappingDRegister() ||
IsRegisterPair
());
71
CHECK(
IsRegisterPair
());
92
} else if (
IsRegisterPair
()) {
managed_register_mips.h
117
CHECK(
IsRegisterPair
());
123
CHECK(
IsRegisterPair
());
152
bool
IsRegisterPair
() const {
197
CHECK(IsValidManagedRegister() && !IsOverlappingDRegister() && !
IsRegisterPair
());
assembler_mips.cc
477
} else if (dst.
IsRegisterPair
()) {
615
} else if (src.
IsRegisterPair
()) {
738
CHECK(dest.
IsRegisterPair
()) << dest;
739
CHECK(src.
IsRegisterPair
()) << src;
[
all
...]
/art/compiler/utils/x86/
managed_register_x86.cc
75
if (
IsRegisterPair
()) {
81
if (other.
IsRegisterPair
()) {
89
CHECK(
IsRegisterPair
());
98
CHECK(
IsRegisterPair
());
115
} else if (
IsRegisterPair
()) {
managed_register_x86.h
113
CHECK(
IsRegisterPair
());
119
CHECK(
IsRegisterPair
());
141
bool
IsRegisterPair
() const {
187
CHECK(IsValidManagedRegister() && !
IsRegisterPair
());
managed_register_x86_test.cc
36
EXPECT_TRUE(!reg.
IsRegisterPair
());
44
EXPECT_TRUE(!reg.
IsRegisterPair
());
52
EXPECT_TRUE(!reg.
IsRegisterPair
());
60
EXPECT_TRUE(!reg.
IsRegisterPair
());
70
EXPECT_TRUE(!reg.
IsRegisterPair
());
78
EXPECT_TRUE(!reg.
IsRegisterPair
());
86
EXPECT_TRUE(!reg.
IsRegisterPair
());
96
EXPECT_TRUE(!reg.
IsRegisterPair
());
104
EXPECT_TRUE(!reg.
IsRegisterPair
());
112
EXPECT_TRUE(!reg.
IsRegisterPair
());
[
all
...]
assembler_x86.cc
[
all
...]
Completed in 295 milliseconds