30aa464f77
- Remove all code that generates the corelib and dart:io library sources into C++ arrays and link them into dart_bootstrap - Remove the executable dart_bootstrap and all uses of it - Remove bootstrap_nolib.cc and builtin_nocore.cc - Remove the Dart 1 code in core lib bootstrap path Change-Id: Ifd33496204285a08b42fe09e39428e7a92b416b6 Reviewed-on: https://dart-review.googlesource.com/c/77241 Commit-Queue: Siva Annamalai <asiva@google.com> Reviewed-by: Zach Anderson <zra@google.com>
80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_BIN_BUILTIN_H_
|
|
#define RUNTIME_BIN_BUILTIN_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "include/dart_api.h"
|
|
|
|
#include "platform/assert.h"
|
|
#include "platform/globals.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
#define FUNCTION_NAME(name) Builtin_##name
|
|
#define REGISTER_FUNCTION(name, count) {"" #name, FUNCTION_NAME(name), count},
|
|
#define DECLARE_FUNCTION(name, count) \
|
|
extern void FUNCTION_NAME(name)(Dart_NativeArguments args);
|
|
|
|
class Builtin {
|
|
public:
|
|
// Note: Changes to this enum should be accompanied with changes to
|
|
// the builtin_libraries_ array in builtin.cc and builtin_nolib.cc.
|
|
enum BuiltinLibraryId {
|
|
kInvalidLibrary = -1,
|
|
kBuiltinLibrary = 0,
|
|
kIOLibrary,
|
|
kHttpLibrary,
|
|
kCLILibrary,
|
|
};
|
|
|
|
// Get source of part file specified in 'uri'.
|
|
static Dart_Handle PartSource(BuiltinLibraryId id, const char* part_uri);
|
|
|
|
// Setup native resolver method built in library specified in 'id'.
|
|
static void SetNativeResolver(BuiltinLibraryId id);
|
|
|
|
static BuiltinLibraryId FindId(const char* url_string);
|
|
|
|
// Check if built in library specified in 'id' is already loaded, if not
|
|
// load it.
|
|
static Dart_Handle LoadAndCheckLibrary(BuiltinLibraryId id);
|
|
|
|
static Dart_Handle SetLoadPort(Dart_Port port);
|
|
|
|
static Dart_Port LoadPort() {
|
|
ASSERT(load_port_ != ILLEGAL_PORT);
|
|
return load_port_;
|
|
}
|
|
|
|
private:
|
|
// Native method support.
|
|
static Dart_NativeFunction NativeLookup(Dart_Handle name,
|
|
int argument_count,
|
|
bool* auto_setup_scope);
|
|
|
|
static const uint8_t* NativeSymbol(Dart_NativeFunction nf);
|
|
|
|
static Dart_Port load_port_;
|
|
static const int num_libs_;
|
|
|
|
typedef struct {
|
|
const char* url_;
|
|
bool has_natives_;
|
|
} builtin_lib_props;
|
|
static builtin_lib_props builtin_libraries_[];
|
|
|
|
DISALLOW_ALLOCATION();
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(Builtin);
|
|
};
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_BIN_BUILTIN_H_
|