Searched defs:is_double (Results 1 - 10 of 10) sorted by relevance

/external/v8/src/arm/
H A Dconstants-arm.cc104 const char* VFPRegisters::Name(int reg, bool is_double) { argument
106 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
110 int VFPRegisters::Number(const char* name, bool* is_double) { argument
114 *is_double = false;
117 *is_double = true;
H A Dlithium-arm.cc425 int LChunk::GetNextSpillIndex(bool is_double) { argument
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
H A Dlithium-arm.h609 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2201 int GetNextSpillIndex(bool is_double);
2202 LOperand* GetNextSpillSlot(bool is_double);
H A Dsimulator-arm.cc194 bool is_double; local
195 int regnum = VFPRegisters::Number(desc, &is_double);
196 if (regnum != kNoRegister && !is_double) {
205 bool is_double; local
206 int regnum = VFPRegisters::Number(desc, &is_double);
207 if (regnum != kNoRegister && is_double) {
/external/v8/src/ia32/
H A Dlithium-ia32.cc369 int LChunk::GetNextSpillIndex(bool is_double) { argument
371 if (is_double) spill_slot_count_++;
376 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
377 int index = GetNextSpillIndex(is_double);
378 if (is_double) {
H A Dlithium-ia32.h584 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2299 int GetNextSpillIndex(bool is_double);
2300 LOperand* GetNextSpillSlot(bool is_double);
/external/v8/src/mips/
H A Dlithium-mips.cc425 int LChunk::GetNextSpillIndex(bool is_double) { argument
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
H A Dlithium-mips.h608 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2181 int GetNextSpillIndex(bool is_double);
2182 LOperand* GetNextSpillSlot(bool is_double);
/external/v8/src/x64/
H A Dlithium-x64.cc366 int LChunk::GetNextSpillIndex(bool is_double) { argument
371 LOperand* LChunk::GetNextSpillSlot(bool is_double) { argument
375 int index = GetNextSpillIndex(is_double);
376 if (is_double) {
H A Dlithium-x64.h593 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
2163 int GetNextSpillIndex(bool is_double);
2164 LOperand* GetNextSpillSlot(bool is_double);

Completed in 136 milliseconds