Home
last modified time | relevance | path

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

/external/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.cc2148 expr->pretenure(), closure_scope()->is_function_scope(), in VisitFunctionLiteral()
/external/v8/src/ast/
Dast.h2187 bool pretenure() const { return Pretenure::decode(bit_field_); } in pretenure() function
/external/v8/src/objects/
Dobjects.cc5786 bool pretenure = (new_capacity > kMinCapacityForPretenure) && in Shrink() local
5790 pretenure ? AllocationType::kOld : AllocationType::kYoung, in Shrink()