mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
b1c6d89fb0
- Removes the load port functionality from the service isolate, this was used to load sources in Dart 1 and is pretty much dead code in Dart 2 - Moves resolution of URIs and Package URI (based on package map) to the individual isolates instead of sending a request to the service isolate - Setups the package map lazily as it is needed only if resolveURI is called in Dart code, it is not needed for loading/compiling sources (this is now done in the front end). - Removed Dart_ServiceWaitForLoadPort() methods from the Dart C API as it is not used anywhere. Change-Id: I6c3704bc431bdcd49bf074eb58bee1ed492ccccb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/129742 Commit-Queue: Siva Annamalai <asiva@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
66 lines
1.9 KiB
C++
66 lines
1.9 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,
|
|
};
|
|
|
|
// Setup native resolver method built in library specified in 'id'.
|
|
static void SetNativeResolver(BuiltinLibraryId id);
|
|
|
|
// Check if built in library specified in 'id' is already loaded, if not
|
|
// load it.
|
|
static Dart_Handle LoadAndCheckLibrary(BuiltinLibraryId id);
|
|
|
|
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 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_
|