OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1967 | 1967 |
1968 push(eax); | 1968 push(eax); |
1969 push(Immediate(p0)); | 1969 push(Immediate(p0)); |
1970 push(Immediate(reinterpret_cast<intptr_t>(Smi::FromInt(p1 - p0)))); | 1970 push(Immediate(reinterpret_cast<intptr_t>(Smi::FromInt(p1 - p0)))); |
1971 CallRuntime(Runtime::kAbort, 2); | 1971 CallRuntime(Runtime::kAbort, 2); |
1972 // will not return here | 1972 // will not return here |
1973 int3(); | 1973 int3(); |
1974 } | 1974 } |
1975 | 1975 |
1976 | 1976 |
| 1977 void MacroAssembler::LoadInstanceDescriptors(Register map, |
| 1978 Register descriptors) { |
| 1979 mov(descriptors, |
| 1980 FieldOperand(map, Map::kInstanceDescriptorsOrBitField3Offset)); |
| 1981 Label not_smi; |
| 1982 JumpIfNotSmi(descriptors, ¬_smi); |
| 1983 mov(descriptors, isolate()->factory()->empty_descriptor_array()); |
| 1984 bind(¬_smi); |
| 1985 } |
| 1986 |
| 1987 |
1977 void MacroAssembler::LoadPowerOf2(XMMRegister dst, | 1988 void MacroAssembler::LoadPowerOf2(XMMRegister dst, |
1978 Register scratch, | 1989 Register scratch, |
1979 int power) { | 1990 int power) { |
1980 ASSERT(is_uintn(power + HeapNumber::kExponentBias, | 1991 ASSERT(is_uintn(power + HeapNumber::kExponentBias, |
1981 HeapNumber::kExponentBits)); | 1992 HeapNumber::kExponentBits)); |
1982 mov(scratch, Immediate(power + HeapNumber::kExponentBias)); | 1993 mov(scratch, Immediate(power + HeapNumber::kExponentBias)); |
1983 movd(dst, Operand(scratch)); | 1994 movd(dst, Operand(scratch)); |
1984 psllq(dst, HeapNumber::kMantissaBits); | 1995 psllq(dst, HeapNumber::kMantissaBits); |
1985 } | 1996 } |
1986 | 1997 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2088 | 2099 |
2089 // Check that the code was patched as expected. | 2100 // Check that the code was patched as expected. |
2090 ASSERT(masm_.pc_ == address_ + size_); | 2101 ASSERT(masm_.pc_ == address_ + size_); |
2091 ASSERT(masm_.reloc_info_writer.pos() == address_ + size_ + Assembler::kGap); | 2102 ASSERT(masm_.reloc_info_writer.pos() == address_ + size_ + Assembler::kGap); |
2092 } | 2103 } |
2093 | 2104 |
2094 | 2105 |
2095 } } // namespace v8::internal | 2106 } } // namespace v8::internal |
2096 | 2107 |
2097 #endif // V8_TARGET_ARCH_IA32 | 2108 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |