Changeset 227609 in webkit for trunk/Source/JavaScriptCore/runtime/HashMapImpl.h
- Timestamp:
- Jan 25, 2018, 9:21:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/HashMapImpl.h
r227592 r227609 1 1 /* 2 * Copyright (C) 2016-201 8Apple Inc. All rights reserved.2 * Copyright (C) 2016-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 208 208 auto scope = DECLARE_THROW_SCOPE(vm); 209 209 size_t allocationSize = HashMapBuffer::allocationSize(capacity); 210 void* data = vm.jsValueGigacageAuxiliarySpace.allocateNonVirtual( vm,allocationSize, nullptr, AllocationFailureMode::ReturnNull);210 void* data = vm.jsValueGigacageAuxiliarySpace.allocateNonVirtual(allocationSize, nullptr, AllocationFailureMode::ReturnNull); 211 211 if (!data) { 212 212 throwOutOfMemoryError(exec, scope);
Note:
See TracChangeset
for help on using the changeset viewer.