Home
last modified time | relevance | path

Searched refs:boilerplate_value (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/ast/
Dast.cc697 Object boilerplate_value = *GetBoilerplateValue(element, isolate); in BuildBoilerplateDescription() local
701 if (boilerplate_value.IsTheHole(isolate)) { in BuildBoilerplateDescription()
706 if (boilerplate_value.IsUninitialized(isolate)) { in BuildBoilerplateDescription()
707 boilerplate_value = Smi::zero(); in BuildBoilerplateDescription()
711 kind, boilerplate_value.OptimalElementsKind( in BuildBoilerplateDescription()
714 FixedArray::cast(*elements).set(array_index, boilerplate_value); in BuildBoilerplateDescription()
/third_party/node/deps/v8/src/compiler/
Djs-create-lowering.cc1750 ObjectRef boilerplate_value = maybe_boilerplate_value.value(); in TryAllocateFastLiteral() local
1762 if (boilerplate_value.equals(uninitialized_oddball) || in TryAllocateFastLiteral()
1763 (boilerplate_value.IsHeapNumber() && in TryAllocateFastLiteral()
1764 boilerplate_value.AsHeapNumber().value_as_bits() == kHoleNanInt64)) { in TryAllocateFastLiteral()
1769 if (boilerplate_value.IsJSObject()) { in TryAllocateFastLiteral()
1770 JSObjectRef boilerplate_object = boilerplate_value.AsJSObject(); in TryAllocateFastLiteral()
1777 double number = boilerplate_value.AsHeapNumber().value(); in TryAllocateFastLiteral()
1791 !boilerplate_value.IsSmi(), in TryAllocateFastLiteral()
1792 boilerplate_value.equals(uninitialized_oddball)); in TryAllocateFastLiteral()
1793 value = jsgraph()->Constant(boilerplate_value); in TryAllocateFastLiteral()