Home | History | Annotate | Download | only in cctest

Lines Matching refs:v8

1 // Copyright 2014 the V8 project authors. All rights reserved.
31 #include "src/v8.h"
33 namespace v8 {
36 class TraceExtension : public v8::Extension {
38 TraceExtension() : v8::Extension("v8/trace", kSource) { }
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate,
41 v8::Handle<v8::String> name);
42 static void Trace(const v8::FunctionCallbackInfo<v8::Value>& args);
43 static void JSTrace(const v8::FunctionCallbackInfo<v8::Value>& args);
44 static void JSEntrySP(const v8::FunctionCallbackInfo<v8::Value>& args);
45 static void JSEntrySPLevel2(const v8::FunctionCallbackInfo<v8::Value>& args);
50 static Address GetFP(const v8::FunctionCallbackInfo<v8::Value>& args);
54 } } // namespace v8::internal