Lines Matching defs:shared
18 #include "src/objects/shared-function-info.h"
32 #include "torque-generated/src/objects/shared-function-info-tq-inl.inc"
512 IsCompiledScope::IsCompiledScope(const SharedFunctionInfo shared,
514 : is_compiled_(shared.is_compiled()) {
515 if (shared.HasBaselineCode()) {
516 retain_code_ = handle(shared.baseline_code(kAcquireLoad), isolate);
517 } else if (shared.HasBytecodeArray()) {
518 retain_code_ = handle(shared.GetBytecodeArray(isolate), isolate);
526 IsCompiledScope::IsCompiledScope(const SharedFunctionInfo shared,
528 : is_compiled_(shared.is_compiled()) {
529 if (shared.HasBaselineCode()) {
531 shared.baseline_code(kAcquireLoad));
532 } else if (shared.HasBytecodeArray()) {
534 isolate->heap()->NewPersistentHandle(shared.GetBytecodeArray(isolate));