Home
last modified time | relevance | path

Searched refs:Runtime (Results 1 - 25 of 194) sorted by relevance

12345678

/third_party/node/deps/v8/src/runtime/
H A Druntime.cc35 Runtime::k##name, Runtime::RUNTIME, #name, FUNCTION_ADDR(Runtime_##name), \
43 Runtime::kInline##name, Runtime::INLINE, "_" #name, \
48 static const Runtime::Function kIntrinsicFunctions[] = {
85 const Runtime::Function* function = &kIntrinsicFunctions[i]; in InitializeIntrinsicFunctionNames()
91 entry->value = const_cast<Runtime::Function*>(function); in InitializeIntrinsicFunctionNames()
98 bool Runtime::NeedsExactContext(FunctionId id) { in NeedsExactContext()
100 case Runtime::kInlineAsyncFunctionReject: in NeedsExactContext()
101 case Runtime in NeedsExactContext()
[all...]
/third_party/node/deps/v8/src/inspector/
H A Dv8-webdriver-serializer.cc23 std::unique_ptr<protocol::Runtime::WebDriverValue> webDriver_value; in _serializeRecursively()
75 std::unique_ptr<protocol::Runtime::WebDriverValue>* result) { in _serializeRegexp()
76 *result = protocol::Runtime::WebDriverValue::create() in _serializeRegexp()
77 .setType(protocol::Runtime::WebDriverValue::TypeEnum::Regexp) in _serializeRegexp()
98 std::unique_ptr<protocol::Runtime::WebDriverValue>* result) { in _serializeDate()
99 *result = protocol::Runtime::WebDriverValue::create() in _serializeDate()
100 .setType(protocol::Runtime::WebDriverValue::TypeEnum::Date) in _serializeDate()
132 std::unique_ptr<protocol::Runtime::WebDriverValue>* result) { in _serializeArray()
133 *result = protocol::Runtime::WebDriverValue::create() in _serializeArray()
134 .setType(protocol::Runtime in _serializeArray()
[all...]
H A Dinjected-script.h44 #include "src/inspector/protocol/Runtime.h"
62 std::unique_ptr<protocol::Runtime::RemoteObject> result,
63 protocol::Maybe<protocol::Runtime::ExceptionDetails>
82 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
84 Maybe<protocol::Runtime::ExceptionDetails>*);
90 protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>*
93 protocol::Array<protocol::Runtime::PrivatePropertyDescriptor>>*
100 std::unique_ptr<protocol::Runtime::RemoteObject>* result);
105 std::unique_ptr<protocol::Runtime::RemoteObject>* result);
109 std::unique_ptr<protocol::Runtime
[all...]
H A Dv8-console-message.cc31 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Log; in consoleAPITypeValue()
33 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Debug; in consoleAPITypeValue()
35 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Info; in consoleAPITypeValue()
37 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Error; in consoleAPITypeValue()
39 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Warning; in consoleAPITypeValue()
41 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Clear; in consoleAPITypeValue()
43 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dir; in consoleAPITypeValue()
45 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Dirxml; in consoleAPITypeValue()
47 return protocol::Runtime::ConsoleAPICalled::TypeEnum::Table; in consoleAPITypeValue()
49 return protocol::Runtime in consoleAPITypeValue()
[all...]
H A Dv8-runtime-agent-impl.h40 #include "src/inspector/protocol/Runtime.h"
58 class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
85 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments,
97 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>*
99 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>*
101 Maybe<protocol::Array<protocol::Runtime::PrivatePropertyDescriptor>>*
103 Maybe<protocol::Runtime::ExceptionDetails>*) override;
112 Maybe<protocol::Runtime::ExceptionDetails>*) override;
120 std::unique_ptr<protocol::Runtime::RemoteObject>* objects) override;
134 Maybe<protocol::Runtime
[all...]
H A Dv8-debugger-agent-impl.h72 std::unique_ptr<protocol::Runtime::StackTraceId> inStackTraceId,
73 std::unique_ptr<protocol::Runtime::StackTrace>* outStackTrace) override;
89 Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace,
90 Maybe<protocol::Runtime::StackTraceId>* optOutAsyncStackTraceId,
91 Maybe<protocol::Runtime::ExceptionDetails>* optOutCompileError) override;
96 Maybe<protocol::Runtime::StackTrace>* asyncStackTrace,
97 Maybe<protocol::Runtime::StackTraceId>* asyncStackTraceId) override;
110 Response pauseOnAsyncCall(std::unique_ptr<protocol::Runtime::StackTraceId>
119 std::unique_ptr<protocol::Runtime::RemoteObject>* result,
120 Maybe<protocol::Runtime
[all...]
H A Dv8-stack-trace-impl.h14 #include "src/inspector/protocol/Runtime.h"
39 std::unique_ptr<protocol::Runtime::CallFrame> buildInspectorObject(
65 std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectImpl(
68 std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectImpl(
81 std::unique_ptr<protocol::Runtime::API::StackTrace> buildInspectorObject(
123 std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObject(
H A Dvalue-mirror.h14 #include "src/inspector/protocol/Runtime.h"
57 std::unique_ptr<protocol::Runtime::RemoteObject>* result) const = 0;
60 std::unique_ptr<protocol::Runtime::PropertyPreview>*) const {} in buildPropertyPreview()
64 std::unique_ptr<protocol::Runtime::ObjectPreview>*) const {} in buildObjectPreview()
67 std::unique_ptr<protocol::Runtime::ObjectPreview>*) const {} in buildEntryPreview()
71 std::unique_ptr<protocol::Runtime::WebDriverValue>* result) const = 0;
H A Dv8-stack-trace-impl.cc70 std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectCommon( in buildInspectorObjectCommon()
82 std::make_unique<protocol::Array<protocol::Runtime::CallFrame>>(); in buildInspectorObjectCommon()
89 std::unique_ptr<protocol::Runtime::StackTrace> stackTrace = in buildInspectorObjectCommon()
90 protocol::Runtime::StackTrace::create() in buildInspectorObjectCommon()
100 protocol::Runtime::StackTraceId::create() in buildInspectorObjectCommon()
108 protocol::Runtime::StackTraceId::create() in buildInspectorObjectCommon()
195 std::unique_ptr<protocol::Runtime::CallFrame> StackFrame::buildInspectorObject( in buildInspectorObject()
210 return protocol::Runtime::CallFrame::create() in buildInspectorObject()
316 std::unique_ptr<protocol::Runtime::StackTrace>
321 std::unique_ptr<protocol::Runtime
[all...]
H A Dinjected-script.cc66 using protocol::Runtime::InternalPropertyDescriptor;
67 using protocol::Runtime::PrivatePropertyDescriptor;
68 using protocol::Runtime::PropertyDescriptor;
69 using protocol::Runtime::RemoteObject;
212 std::unique_ptr<protocol::Runtime::RemoteObject> wrappedValue; in thenCallback()
220 Maybe<protocol::Runtime::ExceptionDetails>()); in thenCallback()
233 std::unique_ptr<protocol::Runtime::RemoteObject> wrappedValue; in catchCallback()
254 protocol::PtrMaybe<protocol::Runtime::ExceptionDetails> exceptionDetails; in catchCallback()
292 std::unique_ptr<protocol::Runtime::ExceptionDetails> exceptionDetails = in catchCallback()
293 protocol::Runtime in catchCallback()
[all...]
H A Dv8-runtime-agent-impl.cc66 using protocol::Runtime::RemoteObject;
78 void sendSuccess(std::unique_ptr<protocol::Runtime::RemoteObject> result,
79 protocol::Maybe<protocol::Runtime::ExceptionDetails>
102 Maybe<protocol::Runtime::ExceptionDetails> exceptionDetails; in wrapEvaluateResultAsync()
118 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, in innerCallFunctionOn()
127 protocol::Array<protocol::Runtime::CallArgument>* arguments = in innerCallFunctionOn()
369 Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, in callFunctionOn()
432 std::unique_ptr<protocol::Array<protocol::Runtime::PropertyDescriptor>>* in getProperties()
434 Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* in getProperties()
436 Maybe<protocol::Array<protocol::Runtime in getProperties()
[all...]
H A Dvalue-mirror.cc29 using protocol::Runtime::EntryPreview;
30 using protocol::Runtime::ObjectPreview;
31 using protocol::Runtime::PropertyPreview;
32 using protocol::Runtime::RemoteObject;
444 std::unique_ptr<protocol::Runtime::WebDriverValue>* result)
450 protocol::Runtime::WebDriverValue::create()
451 .setType(protocol::Runtime::WebDriverValue::TypeEnum::Undefined)
456 *result = protocol::Runtime::WebDriverValue::create()
457 .setType(protocol::Runtime::WebDriverValue::TypeEnum::Null)
463 protocol::Runtime
[all...]
H A Dv8-inspector-session-impl.cc70 protocol::Runtime::Metainfo::commandPrefix) || in canDispatchMethod()
116 this, this, agentState(protocol::Runtime::Metainfo::domainName))); in V8InspectorSessionImpl()
117 protocol::Runtime::Dispatcher::wire(&m_dispatcher, m_runtimeAgent.get()); in V8InspectorSessionImpl()
313 std::unique_ptr<protocol::Runtime::API::RemoteObject>
320 std::unique_ptr<protocol::Runtime::RemoteObject>
328 std::unique_ptr<protocol::Runtime::RemoteObject> result; in wrapObject()
335 std::unique_ptr<protocol::Runtime::RemoteObject>
418 .setName(protocol::Runtime::Metainfo::domainName) in supportedDomainsImpl()
419 .setVersion(protocol::Runtime::Metainfo::version) in supportedDomainsImpl()
/third_party/node/deps/v8/src/compiler/
H A Dlinkage.cc263 bool Linkage::NeedsFrameStateInput(Runtime::FunctionId function) { in NeedsFrameStateInput()
268 case Runtime::kAbort: in NeedsFrameStateInput()
269 case Runtime::kAllocateInOldGeneration: in NeedsFrameStateInput()
270 case Runtime::kCreateIterResultObject: in NeedsFrameStateInput()
271 case Runtime::kIncBlockCounter: in NeedsFrameStateInput()
272 case Runtime::kIsFunction: in NeedsFrameStateInput()
273 case Runtime::kNewClosure: in NeedsFrameStateInput()
274 case Runtime::kNewClosure_Tenured: in NeedsFrameStateInput()
275 case Runtime::kNewFunctionContext: in NeedsFrameStateInput()
276 case Runtime in NeedsFrameStateInput()
[all...]
H A Djs-intrinsic-lowering.cc31 const Runtime::Function* const f = in Reduce()
32 Runtime::FunctionForId(CallRuntimeParametersOf(node->op()).id()); in Reduce()
34 case Runtime::kIsBeingInterpreted: in Reduce()
36 case Runtime::kTurbofanStaticAssert: in Reduce()
38 case Runtime::kVerifyType: in Reduce()
43 if (f->intrinsic_type != Runtime::IntrinsicType::INLINE) return NoChange(); in Reduce()
45 case Runtime::kInlineCopyDataProperties: in Reduce()
47 case Runtime::kInlineCopyDataPropertiesWithExcludedPropertiesOnStack: in Reduce()
49 case Runtime::kInlineCreateIterResultObject: in Reduce()
51 case Runtime in Reduce()
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-intrinsics.cc14 bool IntrinsicsHelper::IsSupported(Runtime::FunctionId function_id) { in IsSupported()
16 #define SUPPORTED(name, lower_case, count) case Runtime::kInline##name: in IsSupported()
27 Runtime::FunctionId function_id) { in FromRuntimeId()
30 case Runtime::kInline##name: \ in FromRuntimeId()
40 Runtime::FunctionId IntrinsicsHelper::ToRuntimeId( in ToRuntimeId()
45 return Runtime::kInline##name; in ToRuntimeId()
H A Dinterpreter-intrinsics.h47 V8_EXPORT_PRIVATE static bool IsSupported(Runtime::FunctionId function_id);
48 static IntrinsicId FromRuntimeId(Runtime::FunctionId function_id);
49 static Runtime::FunctionId ToRuntimeId(IntrinsicId intrinsic_id);
H A Dinterpreter-generator.cc334 TNode<Object> result = CallRuntime(Runtime::kLoadLookupSlot, context, name); in IGNITION_HANDLER()
347 CallRuntime(Runtime::kLoadLookupSlotInsideTypeof, context, name); in IGNITION_HANDLER()
359 void LookupContextSlot(Runtime::FunctionId function_id) { in LookupContextSlot()
393 LookupContextSlot(Runtime::kLoadLookupSlot); in IGNITION_HANDLER()
402 LookupContextSlot(Runtime::kLoadLookupSlotInsideTypeof); in IGNITION_HANDLER()
411 void LookupGlobalSlot(Runtime::FunctionId function_id) { in LookupGlobalSlot()
426 function_id == Runtime::kLoadLookupSlotInsideTypeof in LookupGlobalSlot()
449 LookupGlobalSlot(Runtime::kLoadLookupSlot); in IGNITION_HANDLER()
458 LookupGlobalSlot(Runtime::kLoadLookupSlotInsideTypeof); in IGNITION_HANDLER()
485 CallRuntime(Runtime in IGNITION_HANDLER()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-lazy-gen.cc26 Runtime::FunctionId function_id, TNode<JSFunction> function) { in GenerateTailCallToReturnedCode()
34 Runtime::FunctionId function_id, TNode<JSFunction> function) { in TailCallRuntimeIfStateEquals()
61 // TODO(ishell): introduce Runtime::kHandleTieringState and check in MaybeTailCallOptimizedCodeSlot()
67 Runtime::kCompileTurbofan_Synchronous, function); in MaybeTailCallOptimizedCodeSlot()
69 Runtime::kCompileTurbofan_Concurrent, function); in MaybeTailCallOptimizedCodeSlot()
71 Runtime::kCompileMaglev_Synchronous, function); in MaybeTailCallOptimizedCodeSlot()
73 Runtime::kCompileMaglev_Concurrent, function); in MaybeTailCallOptimizedCodeSlot()
106 GenerateTailCallToReturnedCode(Runtime::kHealOptimizedCodeSlot, function); in MaybeTailCallOptimizedCodeSlot()
166 return CAST(CallRuntime(Runtime::kInstallBaselineCode, in CompileLazy()
176 GenerateTailCallToReturnedCode(Runtime in CompileLazy()
[all...]
H A Dbuiltins-handler-gen.cc171 TailCallRuntime(Runtime::kElementsTransitionAndStoreIC_Miss, context, in Generate_ElementsTransitionAndStore()
314 TailCallRuntime(Runtime::kKeyedStoreIC_Miss, context, in Generate_StoreFastElementIC()
346 TailCallRuntime(Runtime::kLoadIC_Miss, context, receiver, name, slot, vector); in TF_BUILTIN()
359 TailCallRuntime(Runtime::kStoreGlobalIC_Slow, context, value, slot, vector, in TF_BUILTIN()
378 TailCallRuntime(Runtime::kKeyedLoadIC_Miss, context, receiver, key, slot, in TF_BUILTIN()
398 TailCallRuntime(Runtime::kKeyedStoreIC_Miss, context, value, slot, vector, in Generate_KeyedStoreIC_SloppyArguments()
431 TailCallRuntime(Runtime::kLoadElementWithInterceptor, context, receiver, key); in TF_BUILTIN()
434 TailCallRuntime(Runtime::kKeyedLoadIC_Miss, context, receiver, key, slot, in TF_BUILTIN()
453 TailCallRuntime(Runtime::kKeyedHasIC_Miss, context, receiver, key, slot, in TF_BUILTIN()
468 TailCallRuntime(Runtime in TF_BUILTIN()
[all...]
H A Dbuiltins-intl-gen.cc26 Runtime::FunctionId format_func_id,
132 const TNode<Object> result = CallRuntime(Runtime::kStringToLowerCaseIntl, in TF_BUILTIN()
150 Runtime::FunctionId format_func_id, in ListFormatCommon()
188 Runtime::kFormatList, "Intl.ListFormat.prototype.format"); in TF_BUILTIN()
195 Runtime::kFormatListToParts, "Intl.ListFormat.prototype.formatToParts"); in TF_BUILTIN()
H A Dbuiltins-lazy-gen.h22 void GenerateTailCallToReturnedCode(Runtime::FunctionId function_id,
26 Runtime::FunctionId function_id,
/third_party/node/deps/v8/src/baseline/
H A Dbaseline-compiler.cc498 TraceBytecode(Runtime::kTraceUnoptimizedBytecodeEntry); in VisitSingleBytecode()
529 TraceBytecode(Runtime::kTraceUnoptimizedBytecodeExit); in VisitSingleBytecode()
558 void BaselineCompiler::TraceBytecode(Runtime::FunctionId function_id) { in TraceBytecode()
561 function_id == Runtime::kTraceUnoptimizedBytecodeEntry in TraceBytecode()
589 CallRuntime(Runtime::kBytecodeBudgetInterruptWithStackCheck, in UpdateInterruptBudgetAndJumpToLabel()
641 void BaselineCompiler::CallRuntime(Runtime::FunctionId function, Args... args) { in CallRuntime()
778 CallRuntime(Runtime::kLoadLookupSlot, Constant<Name>(0)); in VisitLdaLookupSlot()
792 CallRuntime(Runtime::kLoadLookupSlotInsideTypeof, Constant<Name>(0)); in VisitLdaLookupSlotInsideTypeof()
807 Runtime::FunctionId function_id; in VisitStaLookupSlot()
809 function_id = Runtime in VisitStaLookupSlot()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DParserInternalState.cs38 using System.Runtime.CompilerServices;
39 using System.Runtime.InteropServices;
H A DWriterInternalState.cs38 using System.Runtime.CompilerServices;
39 using System.Runtime.InteropServices;

Completed in 20 milliseconds

12345678