• Home
  • Raw
  • Download

Lines Matching full:encode

217     // Encode the flags.  in Create()
219 ScopeTypeBits::encode(scope->scope_type()) | in Create()
220 SloppyEvalCanExtendVarsBit::encode(sloppy_eval_can_extend_vars) | in Create()
221 LanguageModeBit::encode(scope->language_mode()) | in Create()
222 DeclarationScopeBit::encode(scope->is_declaration_scope()) | in Create()
223 ReceiverVariableBits::encode(receiver_info) | in Create()
224 ClassScopeHasPrivateBrandBit::encode(has_brand) | in Create()
225 HasSavedClassVariableBit::encode(should_save_class_variable_index) | in Create()
226 HasNewTargetBit::encode(has_new_target) | in Create()
227 FunctionVariableBits::encode(function_name_info) | in Create()
228 HasInferredFunctionNameBit::encode(has_inferred_function_name) | in Create()
229 IsAsmModuleBit::encode(is_asm_module) | in Create()
230 HasSimpleParametersBit::encode(has_simple_parameters) | in Create()
231 FunctionKindBits::encode(function_kind) | in Create()
232 HasOuterScopeInfoBit::encode(has_outer_scope_info) | in Create()
233 IsDebugEvaluateScopeBit::encode(scope->is_debug_evaluate_scope()) | in Create()
234 ForceContextAllocationBit::encode( in Create()
236 PrivateNameLookupSkipsOuterClassBit::encode( in Create()
238 HasContextExtensionSlotBit::encode(scope->HasContextExtensionSlot()) | in Create()
239 IsReplModeScopeBit::encode(scope->is_repl_mode_scope()) | in Create()
240 HasLocalsBlockListBit::encode(false); in Create()
272 VariableModeBits::encode(var->mode()) | in Create()
273 InitFlagBit::encode(var->initialization_flag()) | in Create()
274 MaybeAssignedFlagBit::encode(var->maybe_assigned()) | in Create()
275 ParameterNumberBits::encode(ParameterNumberBits::kMax) | in Create()
276 IsStaticFlagBit::encode(var->is_static_flag()); in Create()
301 VariableModeBits::encode(var->mode()) | in Create()
302 InitFlagBit::encode(var->initialization_flag()) | in Create()
303 MaybeAssignedFlagBit::encode(var->maybe_assigned()) | in Create()
304 ParameterNumberBits::encode(ParameterNumberBits::kMax) | in Create()
305 IsStaticFlagBit::encode(var->is_static_flag()); in Create()
431 // Encode the flags. in CreateForWithScope()
433 ScopeTypeBits::encode(WITH_SCOPE) | in CreateForWithScope()
434 SloppyEvalCanExtendVarsBit::encode(false) | in CreateForWithScope()
435 LanguageModeBit::encode(LanguageMode::kSloppy) | in CreateForWithScope()
436 DeclarationScopeBit::encode(false) | in CreateForWithScope()
437 ReceiverVariableBits::encode(VariableAllocationInfo::NONE) | in CreateForWithScope()
438 ClassScopeHasPrivateBrandBit::encode(false) | in CreateForWithScope()
439 HasSavedClassVariableBit::encode(false) | HasNewTargetBit::encode(false) | in CreateForWithScope()
440 FunctionVariableBits::encode(VariableAllocationInfo::NONE) | in CreateForWithScope()
441 IsAsmModuleBit::encode(false) | HasSimpleParametersBit::encode(true) | in CreateForWithScope()
442 FunctionKindBits::encode(FunctionKind::kNormalFunction) | in CreateForWithScope()
443 HasOuterScopeInfoBit::encode(has_outer_scope_info) | in CreateForWithScope()
444 IsDebugEvaluateScopeBit::encode(false) | in CreateForWithScope()
445 ForceContextAllocationBit::encode(false) | in CreateForWithScope()
446 PrivateNameLookupSkipsOuterClassBit::encode(false) | in CreateForWithScope()
447 HasContextExtensionSlotBit::encode(true) | in CreateForWithScope()
448 IsReplModeScopeBit::encode(false) | HasLocalsBlockListBit::encode(false); in CreateForWithScope()
505 // Encode the flags. in CreateForBootstrapping()
507 ScopeTypeBits::encode(is_empty_function ? FUNCTION_SCOPE : SCRIPT_SCOPE) | in CreateForBootstrapping()
508 SloppyEvalCanExtendVarsBit::encode(false) | in CreateForBootstrapping()
509 LanguageModeBit::encode(LanguageMode::kSloppy) | in CreateForBootstrapping()
510 DeclarationScopeBit::encode(true) | in CreateForBootstrapping()
511 ReceiverVariableBits::encode(is_script ? VariableAllocationInfo::CONTEXT in CreateForBootstrapping()
513 ClassScopeHasPrivateBrandBit::encode(false) | in CreateForBootstrapping()
514 HasSavedClassVariableBit::encode(false) | HasNewTargetBit::encode(false) | in CreateForBootstrapping()
515 FunctionVariableBits::encode(is_empty_function in CreateForBootstrapping()
518 HasInferredFunctionNameBit::encode(has_inferred_function_name) | in CreateForBootstrapping()
519 IsAsmModuleBit::encode(false) | HasSimpleParametersBit::encode(true) | in CreateForBootstrapping()
520 FunctionKindBits::encode(FunctionKind::kNormalFunction) | in CreateForBootstrapping()
521 HasOuterScopeInfoBit::encode(false) | in CreateForBootstrapping()
522 IsDebugEvaluateScopeBit::encode(false) | in CreateForBootstrapping()
523 ForceContextAllocationBit::encode(false) | in CreateForBootstrapping()
524 PrivateNameLookupSkipsOuterClassBit::encode(false) | in CreateForBootstrapping()
525 HasContextExtensionSlotBit::encode(is_native_context) | in CreateForBootstrapping()
526 IsReplModeScopeBit::encode(false) | HasLocalsBlockListBit::encode(false); in CreateForBootstrapping()
541 VariableModeBits::encode(VariableMode::kConst) | in CreateForBootstrapping()
542 InitFlagBit::encode(kCreatedInitialized) | in CreateForBootstrapping()
543 MaybeAssignedFlagBit::encode(kNotAssigned) | in CreateForBootstrapping()
544 ParameterNumberBits::encode(ParameterNumberBits::kMax) | in CreateForBootstrapping()
545 IsStaticFlagBit::encode(IsStaticFlag::kNotStatic); in CreateForBootstrapping()
787 set_flags(Flags() | IsDebugEvaluateScopeBit::encode(true)); in SetIsDebugEvaluateScope()