OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 value = factory->NewNumberFromInt(Smi::kMinValue); | 153 value = factory->NewNumberFromInt(Smi::kMinValue); |
154 CHECK(value->IsSmi()); | 154 CHECK(value->IsSmi()); |
155 CHECK(value->IsNumber()); | 155 CHECK(value->IsNumber()); |
156 CHECK_EQ(Smi::kMinValue, Handle<Smi>::cast(value)->value()); | 156 CHECK_EQ(Smi::kMinValue, Handle<Smi>::cast(value)->value()); |
157 | 157 |
158 value = factory->NewNumberFromInt(Smi::kMaxValue); | 158 value = factory->NewNumberFromInt(Smi::kMaxValue); |
159 CHECK(value->IsSmi()); | 159 CHECK(value->IsSmi()); |
160 CHECK(value->IsNumber()); | 160 CHECK(value->IsNumber()); |
161 CHECK_EQ(Smi::kMaxValue, Handle<Smi>::cast(value)->value()); | 161 CHECK_EQ(Smi::kMaxValue, Handle<Smi>::cast(value)->value()); |
162 | 162 |
163 #if !defined(V8_TARGET_ARCH_X64) && !defined(V8_TARGET_ARCH_ARM64) && \ | 163 #if !defined(V8_TARGET_ARCH_64_BIT) |
164 !defined(V8_TARGET_ARCH_MIPS64) | |
165 // TODO(lrn): We need a NumberFromIntptr function in order to test this. | 164 // TODO(lrn): We need a NumberFromIntptr function in order to test this. |
166 value = factory->NewNumberFromInt(Smi::kMinValue - 1); | 165 value = factory->NewNumberFromInt(Smi::kMinValue - 1); |
167 CHECK(value->IsHeapNumber()); | 166 CHECK(value->IsHeapNumber()); |
168 CHECK(value->IsNumber()); | 167 CHECK(value->IsNumber()); |
169 CHECK_EQ(static_cast<double>(Smi::kMinValue - 1), value->Number()); | 168 CHECK_EQ(static_cast<double>(Smi::kMinValue - 1), value->Number()); |
170 #endif | 169 #endif |
171 | 170 |
172 value = factory->NewNumberFromUint(static_cast<uint32_t>(Smi::kMaxValue) + 1); | 171 value = factory->NewNumberFromUint(static_cast<uint32_t>(Smi::kMaxValue) + 1); |
173 CHECK(value->IsHeapNumber()); | 172 CHECK(value->IsHeapNumber()); |
174 CHECK(value->IsNumber()); | 173 CHECK(value->IsNumber()); |
(...skipping 4917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5092 #ifdef DEBUG | 5091 #ifdef DEBUG |
5093 TEST(PathTracer) { | 5092 TEST(PathTracer) { |
5094 CcTest::InitializeVM(); | 5093 CcTest::InitializeVM(); |
5095 v8::HandleScope scope(CcTest::isolate()); | 5094 v8::HandleScope scope(CcTest::isolate()); |
5096 | 5095 |
5097 v8::Local<v8::Value> result = CompileRun("'abc'"); | 5096 v8::Local<v8::Value> result = CompileRun("'abc'"); |
5098 Handle<Object> o = v8::Utils::OpenHandle(*result); | 5097 Handle<Object> o = v8::Utils::OpenHandle(*result); |
5099 CcTest::i_isolate()->heap()->TracePathToObject(*o); | 5098 CcTest::i_isolate()->heap()->TracePathToObject(*o); |
5100 } | 5099 } |
5101 #endif // DEBUG | 5100 #endif // DEBUG |
OLD | NEW |