aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/api-arguments.cc
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2018-05-31 11:11:57 +0200
committerMyles Borins <mylesborins@google.com>2018-06-01 09:58:27 +0200
commit352a525eb984b8fa2d6f0f6fd68395e6a080bba4 (patch)
treea105ae93f8fd8f533cce19a429f1b6e95d6e11ca /deps/v8/src/api-arguments.cc
parentfaf449ca0490f5371dc6cbbc94a87eb697b00fcc (diff)
downloadandroid-node-v8-352a525eb984b8fa2d6f0f6fd68395e6a080bba4.tar.gz
android-node-v8-352a525eb984b8fa2d6f0f6fd68395e6a080bba4.tar.bz2
android-node-v8-352a525eb984b8fa2d6f0f6fd68395e6a080bba4.zip
deps: update V8 to 6.7.288.43
PR-URL: https://github.com/nodejs/node/pull/19989 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matheus Marchini <matheus@sthima.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/v8/src/api-arguments.cc')
-rw-r--r--deps/v8/src/api-arguments.cc57
1 files changed, 0 insertions, 57 deletions
diff --git a/deps/v8/src/api-arguments.cc b/deps/v8/src/api-arguments.cc
deleted file mode 100644
index 502b8cbdca..0000000000
--- a/deps/v8/src/api-arguments.cc
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "src/api-arguments.h"
-#include "src/api-arguments-inl.h"
-
-#include "src/debug/debug.h"
-#include "src/objects-inl.h"
-#include "src/tracing/trace-event.h"
-#include "src/vm-state-inl.h"
-
-namespace v8 {
-namespace internal {
-
-Handle<Object> FunctionCallbackArguments::Call(CallHandlerInfo* handler) {
- Isolate* isolate = this->isolate();
- LOG(isolate, ApiObjectAccess("call", holder()));
- RuntimeCallTimerScope timer(isolate, RuntimeCallCounterId::kFunctionCallback);
- v8::FunctionCallback f =
- v8::ToCData<v8::FunctionCallback>(handler->callback());
- if (isolate->needs_side_effect_check() &&
- !isolate->debug()->PerformSideEffectCheckForCallback(FUNCTION_ADDR(f))) {
- return Handle<Object>();
- }
- VMState<EXTERNAL> state(isolate);
- ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
- FunctionCallbackInfo<v8::Value> info(begin(), argv_, argc_);
- f(info);
- return GetReturnValue<Object>(isolate);
-}
-
-Handle<JSObject> PropertyCallbackArguments::CallNamedEnumerator(
- Handle<InterceptorInfo> interceptor) {
- DCHECK(interceptor->is_named());
- LOG(isolate(), ApiObjectAccess("interceptor-named-enumerator", holder()));
- RuntimeCallTimerScope timer(isolate(),
- RuntimeCallCounterId::kNamedEnumeratorCallback);
- return CallPropertyEnumerator(interceptor);
-}
-
-Handle<JSObject> PropertyCallbackArguments::CallIndexedEnumerator(
- Handle<InterceptorInfo> interceptor) {
- DCHECK(!interceptor->is_named());
- LOG(isolate(), ApiObjectAccess("interceptor-indexed-enumerator", holder()));
- RuntimeCallTimerScope timer(isolate(),
- RuntimeCallCounterId::kIndexedEnumeratorCallback);
- return CallPropertyEnumerator(interceptor);
-}
-
-bool PropertyCallbackArguments::PerformSideEffectCheck(Isolate* isolate,
- Address function) {
- return isolate->debug()->PerformSideEffectCheckForCallback(function);
-}
-
-} // namespace internal
-} // namespace v8