| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 3960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3971 JSObject::cast(result->holder())->property_dictionary(); | 3971 JSObject::cast(result->holder())->property_dictionary(); |
| 3972 value = dict->ValueAt(result->GetDictionaryEntry()); | 3972 value = dict->ValueAt(result->GetDictionaryEntry()); |
| 3973 if (value->IsTheHole()) { | 3973 if (value->IsTheHole()) { |
| 3974 return Heap::undefined_value(); | 3974 return Heap::undefined_value(); |
| 3975 } | 3975 } |
| 3976 return value; | 3976 return value; |
| 3977 } | 3977 } |
| 3978 case FIELD: | 3978 case FIELD: |
| 3979 value = | 3979 value = |
| 3980 JSObject::cast( | 3980 JSObject::cast( |
| 3981 result->holder())->properties()->get(result->GetFieldIndex()); | 3981 result->holder())->FastPropertyAt(result->GetFieldIndex()); |
| 3982 if (value->IsTheHole()) { | 3982 if (value->IsTheHole()) { |
| 3983 return Heap::undefined_value(); | 3983 return Heap::undefined_value(); |
| 3984 } | 3984 } |
| 3985 return value; | 3985 return value; |
| 3986 case CONSTANT_FUNCTION: | 3986 case CONSTANT_FUNCTION: |
| 3987 return result->GetConstantFunction(); | 3987 return result->GetConstantFunction(); |
| 3988 case CALLBACKS: | 3988 case CALLBACKS: |
| 3989 case INTERCEPTOR: | 3989 case INTERCEPTOR: |
| 3990 case MAP_TRANSITION: | 3990 case MAP_TRANSITION: |
| 3991 case CONSTANT_TRANSITION: | 3991 case CONSTANT_TRANSITION: |
| (...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5330 | 5330 |
| 5331 void Runtime::PerformGC(Object* result) { | 5331 void Runtime::PerformGC(Object* result) { |
| 5332 Failure* failure = Failure::cast(result); | 5332 Failure* failure = Failure::cast(result); |
| 5333 // Try to do a garbage collection; ignore it if it fails. The C | 5333 // Try to do a garbage collection; ignore it if it fails. The C |
| 5334 // entry stub will throw an out-of-memory exception in that case. | 5334 // entry stub will throw an out-of-memory exception in that case. |
| 5335 Heap::CollectGarbage(failure->requested(), failure->allocation_space()); | 5335 Heap::CollectGarbage(failure->requested(), failure->allocation_space()); |
| 5336 } | 5336 } |
| 5337 | 5337 |
| 5338 | 5338 |
| 5339 } } // namespace v8::internal | 5339 } } // namespace v8::internal |
| OLD | NEW |