Searched refs:is_double (Results 1 - 25 of 28) sorted by relevance

12

/external/v8/src/arm/
H A Dconstants-arm.cc70 const char* VFPRegisters::Name(int reg, bool is_double) { argument
72 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
76 int VFPRegisters::Number(const char* name, bool* is_double) { argument
80 *is_double = false;
83 *is_double = true;
H A Dconstants-arm.h709 static const char* Name(int reg, bool is_double);
712 // Set flag pointed by is_double to true if register
714 static int Number(const char* name, bool* is_double);
H A Dsimulator-arm.cc173 bool is_double; local
174 int regnum = VFPRegisters::Number(desc, &is_double);
175 if (regnum != kNoRegister && !is_double) {
184 bool is_double; local
185 int regnum = VFPRegisters::Number(desc, &is_double);
186 if (regnum != kNoRegister && is_double) {
/external/v8/src/
H A Dfield-index-inl.h26 bool is_double) {
39 is_double, inobject_properties, first_inobject_offset);
48 bool is_double = field_index & 1; local
60 FieldIndex result(is_inobject, field_index, is_double,
85 return is_double() ? (result | 1) : result;
24 ForPropertyIndex(Map* map, int property_index, bool is_double) argument
H A Dfield-index.h26 bool is_double = false);
41 bool is_double() const { function in class:v8::internal::final
78 FieldIndex(bool is_inobject, int local_index, bool is_double, argument
83 IsDoubleBits::encode(is_double) |
H A Dlookup.cc559 bool is_double = representation().IsDouble(); local
560 return FieldIndex::ForPropertyIndex(holder_map, index, is_double);
H A Dcode-stub-assembler.cc817 bool is_double = IsFastDoubleElementsKind(kind); local
852 Handle<Map> elements_map(is_double ? heap->fixed_double_array_map()
866 if (is_double) {
909 if (is_double) {
2318 bool is_double = IsFastDoubleElementsKind(kind); local
2319 int element_size_shift = is_double ? kDoubleSizeLog2 : kPointerSizeLog2;
H A Dcode-stubs-hydrogen.cc1118 Representation representation = index.is_double()
1125 if (index.is_double() &&
1315 DCHECK(!index.is_double() || representation.IsDouble());
/external/v8/test/cctest/
H A Dtest-unboxed-doubles.cc1053 CHECK(field_index.is_inobject() && field_index.is_double());
1130 CHECK(field_index.is_inobject() && field_index.is_double());
1135 CHECK(field_index.is_inobject() && !field_index.is_double());
1198 bool expected_tagged = !index.is_double();
/external/v8/src/crankshaft/arm/
H A Dlithium-arm.h825 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-arm.cc2225 if (instr->is_double()) {
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.h812 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-ia32.cc2009 instr->is_double() ||
2023 if (instr->is_double()) {
/external/v8/src/crankshaft/mips/
H A Dlithium-mips.h800 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-mips.cc2098 if (instr->is_double()) {
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.h818 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-mips64.cc2217 if (instr->is_double()) {
/external/v8/src/crankshaft/ppc/
H A Dlithium-ppc.h807 bool is_double() const { return hydrogen()->representation().IsDouble(); } function in class:v8::internal::final
/external/v8/src/crankshaft/s390/
H A Dlithium-s390.h770 bool is_double() const { return hydrogen()->representation().IsDouble(); } function in class:v8::internal::final
/external/v8/src/crankshaft/x64/
H A Dlithium-x64.h809 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-x64.cc2147 instr->is_double() ||
2161 if (instr->is_double()) {
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h826 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-x87.cc2285 instr->is_double() ||
2299 if (instr->is_double()) {
/external/v8/src/crankshaft/arm64/
H A Dlithium-arm64.h1111 bool is_double() const { function in class:v8::internal::final
H A Dlithium-codegen-arm64.cc2320 if (instr->is_double()) {

Completed in 316 milliseconds

12