mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:28:02 +00:00
c403804d9c
Add regression test. This fixes issue 36084. Issue 36293 filed against ddc, which fails on the new test. Change-Id: I1112572d72671fbc1d78a768ee85affff41951a0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97142 Reviewed-by: Alexander Markov <alexmarkov@google.com>
85 lines
5.9 KiB
C++
85 lines
5.9 KiB
C++
// Copyright (c) 2011, 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_VM_RUNTIME_ENTRY_LIST_H_
|
|
#define RUNTIME_VM_RUNTIME_ENTRY_LIST_H_
|
|
|
|
namespace dart {
|
|
|
|
#define RUNTIME_ENTRY_LIST(V) \
|
|
V(AllocateArray) \
|
|
V(AllocateContext) \
|
|
V(AllocateObject) \
|
|
V(AllocateSubtypeTestCache) \
|
|
V(BreakpointRuntimeHandler) \
|
|
V(SingleStepHandler) \
|
|
V(CloneContext) \
|
|
V(ExtractMethod) \
|
|
V(GetFieldForDispatch) \
|
|
V(ResolveCallFunction) \
|
|
V(FixCallersTarget) \
|
|
V(FixAllocationStubTarget) \
|
|
V(InlineCacheMissHandlerOneArg) \
|
|
V(InlineCacheMissHandlerTwoArgs) \
|
|
V(StaticCallMissHandlerOneArg) \
|
|
V(StaticCallMissHandlerTwoArgs) \
|
|
V(InterpretedInterfaceCallMissHandler) \
|
|
V(Instanceof) \
|
|
V(SubtypeCheck) \
|
|
V(TypeCheck) \
|
|
V(BadTypeError) \
|
|
V(NonBoolTypeError) \
|
|
V(InstantiateType) \
|
|
V(InstantiateTypeArguments) \
|
|
V(InvokeClosureNoSuchMethod) \
|
|
V(InvokeNoSuchMethod) \
|
|
V(InvokeNoSuchMethodDispatcher) \
|
|
V(MegamorphicCacheMissHandler) \
|
|
V(OptimizeInvokedFunction) \
|
|
V(TraceICCall) \
|
|
V(PatchStaticCall) \
|
|
V(RangeError) \
|
|
V(NullError) \
|
|
V(NullErrorWithSelector) \
|
|
V(ArgumentNullError) \
|
|
V(ArgumentError) \
|
|
V(ArgumentErrorUnboxedInt64) \
|
|
V(IntegerDivisionByZeroException) \
|
|
V(ReThrow) \
|
|
V(StackOverflow) \
|
|
V(Throw) \
|
|
V(DeoptimizeMaterialize) \
|
|
V(RewindPostDeopt) \
|
|
V(UpdateFieldCid) \
|
|
V(InitStaticField) \
|
|
V(CompileFunction) \
|
|
V(MonomorphicMiss) \
|
|
V(SingleTargetMiss) \
|
|
V(UnlinkedCall)
|
|
|
|
#define LEAF_RUNTIME_ENTRY_LIST(V) \
|
|
V(void, PrintStopMessage, const char*) \
|
|
V(intptr_t, DeoptimizeCopyFrame, uword, uword) \
|
|
V(void, DeoptimizeFillFrame, uword) \
|
|
V(void, StoreBufferBlockProcess, Thread*) \
|
|
V(void, MarkingStackBlockProcess, Thread*) \
|
|
V(void, RememberCard, RawObject*, RawObject**) \
|
|
V(double, LibcPow, double, double) \
|
|
V(double, DartModulo, double, double) \
|
|
V(double, LibcFloor, double) \
|
|
V(double, LibcCeil, double) \
|
|
V(double, LibcTrunc, double) \
|
|
V(double, LibcRound, double) \
|
|
V(double, LibcCos, double) \
|
|
V(double, LibcSin, double) \
|
|
V(double, LibcTan, double) \
|
|
V(double, LibcAcos, double) \
|
|
V(double, LibcAsin, double) \
|
|
V(double, LibcAtan, double) \
|
|
V(double, LibcAtan2, double, double) \
|
|
V(RawBool*, CaseInsensitiveCompareUC16, RawString*, RawSmi*, RawSmi*, RawSmi*)
|
|
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_VM_RUNTIME_ENTRY_LIST_H_
|