summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/compiler/allocation-builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/compiler/allocation-builder.h')
-rw-r--r--chromium/v8/src/compiler/allocation-builder.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/v8/src/compiler/allocation-builder.h b/chromium/v8/src/compiler/allocation-builder.h
index 040dd014051..709146950c6 100644
--- a/chromium/v8/src/compiler/allocation-builder.h
+++ b/chromium/v8/src/compiler/allocation-builder.h
@@ -55,6 +55,11 @@ class AllocationBuilder final {
inline void AllocateArray(int length, MapRef map,
AllocationType allocation = AllocationType::kYoung);
+ // Compound allocation of a SloppyArgumentsElements
+ inline void AllocateSloppyArgumentElements(
+ int length, MapRef map,
+ AllocationType allocation = AllocationType::kYoung);
+
// Compound store of a constant into a field.
void Store(const FieldAccess& access, const ObjectRef& value) {
Store(access, jsgraph()->Constant(value));