/external/v8/src/arm/ |
D | constants-arm.cc | 70 const char* VFPRegisters::Name(int reg, bool is_double) { in Name() argument 72 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)]; in Name() 76 int VFPRegisters::Number(const char* name, bool* is_double) { in Number() argument 80 *is_double = false; in Number() 83 *is_double = true; in Number()
|
D | constants-arm.h | 693 static const char* Name(int reg, bool is_double); 698 static int Number(const char* name, bool* is_double);
|
D | simulator-arm.cc | 172 bool is_double; in GetVFPSingleValue() local 173 int regnum = VFPRegisters::Number(desc, &is_double); in GetVFPSingleValue() 174 if (regnum != kNoRegister && !is_double) { in GetVFPSingleValue() 183 bool is_double; in GetVFPDoubleValue() local 184 int regnum = VFPRegisters::Number(desc, &is_double); in GetVFPDoubleValue() 185 if (regnum != kNoRegister && is_double) { in GetVFPDoubleValue()
|
/external/v8/src/ |
D | field-index-inl.h | 26 bool is_double) { in ForPropertyIndex() argument 39 is_double, inobject_properties, first_inobject_offset); in ForPropertyIndex() 48 bool is_double = field_index & 1; in ForLoadByFieldIndex() local 60 FieldIndex result(is_inobject, field_index, is_double, in ForLoadByFieldIndex() 85 return is_double() ? (result | 1) : result; in GetLoadByFieldIndex()
|
D | field-index.h | 26 bool is_double = false); 41 bool is_double() const { in is_double() function 78 FieldIndex(bool is_inobject, int local_index, bool is_double, 83 IsDoubleBits::encode(is_double) |
|
D | lookup.cc | 475 bool is_double = representation().IsDouble(); in GetFieldIndex() local 476 return FieldIndex::ForPropertyIndex(*holder_map_, index, is_double); in GetFieldIndex()
|
D | code-stubs-hydrogen.cc | 831 Representation representation = index.is_double() in BuildLoadNamedField() 838 if (index.is_double() && in BuildLoadNamedField() 1040 DCHECK(!index.is_double() || representation.IsDouble()); in BuildStoreNamedField()
|
D | objects.cc | 9143 if (field_index.is_double()) { in SlowReverseLookup()
|
/external/v8/test/cctest/ |
D | test-unboxed-doubles.cc | 1053 CHECK(field_index.is_inobject() && field_index.is_double()); in TEST() 1131 CHECK(field_index.is_inobject() && field_index.is_double()); in TEST() 1136 CHECK(field_index.is_inobject() && !field_index.is_double()); in TEST() 1199 bool expected_tagged = !index.is_double(); in TestLayoutDescriptorHelper() 1389 CHECK(field_index.is_inobject() && field_index.is_double()); in TEST()
|
/external/v8/src/crankshaft/ppc/ |
D | lithium-ppc.h | 814 bool is_double() const { return hydrogen()->representation().IsDouble(); } in is_double() function
|
D | lithium-codegen-ppc.cc | 2303 if (instr->is_double()) { in DoShiftI()
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-ia32.h | 821 bool is_double() const { in is_double() function
|
D | lithium-codegen-ia32.cc | 2161 instr->is_double() || in DoCompareNumericAndBranch() 2174 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/mips/ |
D | lithium-mips.h | 810 bool is_double() const { in is_double() function
|
D | lithium-codegen-mips.cc | 2166 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/x64/ |
D | lithium-x64.h | 818 bool is_double() const { in is_double() function
|
D | lithium-codegen-x64.cc | 2202 instr->is_double() || in DoCompareNumericAndBranch() 2215 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/x87/ |
D | lithium-x87.h | 837 bool is_double() const { in is_double() function
|
D | lithium-codegen-x87.cc | 2437 instr->is_double() || in DoCompareNumericAndBranch() 2450 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/mips64/ |
D | lithium-mips64.h | 828 bool is_double() const { in is_double() function
|
D | lithium-codegen-mips64.cc | 2284 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/arm/ |
D | lithium-arm.h | 836 bool is_double() const { in is_double() function
|
D | lithium-codegen-arm.cc | 2267 if (instr->is_double()) { in DoCompareNumericAndBranch()
|
/external/v8/src/crankshaft/arm64/ |
D | lithium-arm64.h | 1181 bool is_double() const { in is_double() function
|
D | lithium-codegen-arm64.cc | 2367 if (instr->is_double()) { in DoCompareNumericAndBranch()
|