Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
builtin_gen_snapshot.cc
Go to the documentation of this file.
1// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8
9#include "include/dart_api.h"
10
11#include "bin/builtin.h"
12#include "bin/io_natives.h"
13
14namespace dart {
15namespace bin {
16
17// Lists the native function implementing basic logging facility.
18#define BUILTIN_NATIVE_LIST(V) V(Builtin_PrintString, 1)
19
21
27
28Dart_NativeFunction Builtin::NativeLookup(Dart_Handle name,
30 bool* auto_setup_scope) {
31 const char* function_name = nullptr;
33 if (Dart_IsError(result)) {
35 }
36 ASSERT(function_name != nullptr);
37 ASSERT(auto_setup_scope != nullptr);
38 *auto_setup_scope = true;
39 int num_entries = sizeof(BuiltinEntries) / sizeof(struct NativeEntries);
40 for (int i = 0; i < num_entries; i++) {
41 struct NativeEntries* entry = &(BuiltinEntries[i]);
42 if ((strcmp(function_name, entry->name_) == 0) &&
43 (entry->argument_count_ == argument_count)) {
44 return reinterpret_cast<Dart_NativeFunction>(entry->function_);
45 }
46 }
47 return IONativeLookup(name, argument_count, auto_setup_scope);
48}
49
50const uint8_t* Builtin::NativeSymbol(Dart_NativeFunction nf) {
51 int num_entries = sizeof(BuiltinEntries) / sizeof(struct NativeEntries);
52 for (int i = 0; i < num_entries; i++) {
53 struct NativeEntries* entry = &(BuiltinEntries[i]);
54 if (reinterpret_cast<Dart_NativeFunction>(entry->function_) == nf) {
55 return reinterpret_cast<const uint8_t*>(entry->name_);
56 }
57 }
58 return IONativeSymbol(nf);
59}
60
61// Implementation of native functions which are used for some
62// test/debug functionality in standalone dart mode.
65 intptr_t length = 0;
66 uint8_t* chars = nullptr;
69 if (Dart_IsError(result)) {
70 // TODO(turnidge): Consider propagating some errors here. What if
71 // an isolate gets interrupted by the embedder in the middle of
72 // Dart_StringToUTF8? We need to make sure not to swallow the
73 // interrupt.
74 fputs(Dart_GetError(result), stdout);
75 } else {
76 fwrite(chars, sizeof(*chars), length, stdout);
77 }
78 fputc('\n', stdout);
79 fflush(stdout);
81}
82
83} // namespace bin
84} // namespace dart
#define FUNCTION_NAME(name)
Definition builtin.h:19
#define BUILTIN_NATIVE_LIST(V)
struct _Dart_Handle * Dart_Handle
Definition dart_api.h:258
struct _Dart_NativeArguments * Dart_NativeArguments
Definition dart_api.h:3010
void(* Dart_NativeFunction)(Dart_NativeArguments arguments)
Definition dart_api.h:3198
#define ASSERT(E)
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
GAsyncResult * result
#define REGISTER_FUNCTION(name, count)
Definition fuchsia.cc:41
int argument_count
Definition fuchsia.cc:52
#define DECLARE_FUNCTION(name, count)
Definition fuchsia.cc:42
size_t length
static struct dart::bin::NativeEntries BuiltinEntries[]
const uint8_t * IONativeSymbol(Dart_NativeFunction nf)
Dart_NativeFunction IONativeLookup(Dart_Handle name, int argument_count, bool *auto_setup_scope)
void FUNCTION_NAME() Builtin_PrintString(Dart_NativeArguments args)
DART_EXPORT Dart_Handle Dart_StringToUTF8(Dart_Handle str, uint8_t **utf8_array, intptr_t *length)
DART_EXPORT void Dart_EnterScope()
const char *const name
DART_EXPORT void Dart_PropagateError(Dart_Handle handle)
DART_EXPORT const char * Dart_GetError(Dart_Handle handle)
DART_EXPORT bool Dart_IsError(Dart_Handle handle)
DART_EXPORT Dart_Handle Dart_GetNativeArgument(Dart_NativeArguments args, int index)
const char *const function_name
DART_EXPORT Dart_Handle Dart_StringToCString(Dart_Handle object, const char **cstr)