HomeSort by relevance Sort by last modified time
    Searched refs:is_double (Results 1 - 18 of 18) sorted by null

  /external/v8/src/arm/
constants-arm.cc 104 const char* VFPRegisters::Name(int reg, bool is_double) {
106 return names_[reg + (is_double ? kNumVFPSingleRegisters : 0)];
110 int VFPRegisters::Number(const char* name, bool* is_double) {
114 *is_double = false;
117 *is_double = true;
constants-arm.h 760 static const char* Name(int reg, bool is_double);
763 // Set flag pointed by is_double to true if register
765 static int Number(const char* name, bool* is_double);
lithium-arm.cc 425 int LChunk::GetNextSpillIndex(bool is_double) {
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
    [all...]
lithium-arm.h 609 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
simulator-arm.cc 194 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) {
    [all...]
lithium-codegen-arm.cc     [all...]
  /dalvik/vm/mterp/x86/
OP_CMPG_DOUBLE.S 1 %default {"is_double":"1","nanval":"1"}
9 .if $is_double
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.inl 745 bool is_double) {
748 add_fp(args, 0, is_double);
749 add_m(args, m, is_double ? size_64 : size_32);
771 bool is_double, bool pop_stk)
774 add_m(args, m, is_double ? size_64 : size_32);
776 add_fp(args, 0, is_double);
encoder.h 617 //!char * fp_op_mem(char * stream, FP_Opcode opc,const M_Opnd& mem,int is_double);
636 ENCODER_DECLARE_EXPORT char * fld(char * stream, const M_Opnd & m, bool is_double);
652 ENCODER_DECLARE_EXPORT char * fst(char * stream, const M_Opnd & m, bool is_double, bool pop_stk);
  /external/v8/src/mips/
lithium-mips.cc 425 int LChunk::GetNextSpillIndex(bool is_double) {
427 if (is_double) spill_slot_count_++;
432 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
433 int index = GetNextSpillIndex(is_double);
434 if (is_double) {
    [all...]
lithium-mips.h 608 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/v8/src/ia32/
lithium-ia32.h 584 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-ia32.cc 369 int LChunk::GetNextSpillIndex(bool is_double) {
371 if (is_double) spill_slot_count_++;
376 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
377 int index = GetNextSpillIndex(is_double);
378 if (is_double) {
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/x64/
lithium-x64.h 593 bool is_double() const { function in class:v8::internal::LCmpIDAndBranch
    [all...]
lithium-x64.cc 366 int LChunk::GetNextSpillIndex(bool is_double) {
371 LOperand* LChunk::GetNextSpillSlot(bool is_double) {
375 int index = GetNextSpillIndex(is_double);
376 if (is_double) {
    [all...]
lithium-codegen-x64.cc     [all...]

Completed in 354 milliseconds