Home
last modified time | relevance | path

Searched refs:pretenure (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/interpreter/
Dbytecode-flags.cc33 uint8_t CreateClosureFlags::Encode(bool pretenure, bool is_function_scope, in Encode() argument
35 uint8_t result = PretenuredBit::encode(pretenure); in Encode()
36 if (!might_always_opt && !pretenure && is_function_scope) { in Encode()
Dbytecode-flags.h47 static uint8_t Encode(bool pretenure, bool is_function_scope,
Dbytecode-generator.cc2517 expr->pretenure(), closure_scope()->is_function_scope(), in VisitFunctionLiteral()
/third_party/node/deps/v8/src/ast/
Dast.h2232 bool pretenure() const { return Pretenure::decode(bit_field_); } in pretenure() function
/third_party/node/deps/v8/src/objects/
Dobjects.cc5920 bool pretenure = (new_capacity > kMinCapacityForPretenure) && in Shrink() local
5924 pretenure ? AllocationType::kOld : AllocationType::kYoung, in Shrink()