Searched defs:temp_offset (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_x86.cc3135 uint32_t temp_offset,
3156 Location stack_temp = Location::StackSlot(temp_offset);
3159 __ flds(Address(ESP, temp_offset));
3161 __ filds(Address(ESP, temp_offset));
3164 Location stack_temp = Location::DoubleStackSlot(temp_offset);
3167 __ fldl(Address(ESP, temp_offset));
3169 __ fildl(Address(ESP, temp_offset));
3134 PushOntoFPStack(Location source, uint32_t temp_offset, uint32_t stack_adjustment, bool is_fp, bool is_wide) argument
H A Dcode_generator_x86_64.cc3203 void InstructionCodeGeneratorX86_64::PushOntoFPStack(Location source, uint32_t temp_offset, argument
3214 Location stack_temp = Location::StackSlot(temp_offset);
3216 __ flds(Address(CpuRegister(RSP), temp_offset));
3218 Location stack_temp = Location::DoubleStackSlot(temp_offset);
3220 __ fldl(Address(CpuRegister(RSP), temp_offset));

Completed in 76 milliseconds