f721d52163
Allow pc_marker slot to hold a Code object or a new Bytecode object. Change-Id: If11c1df6dafc5b1cfcce6f0322c36d1d68e86df9 Reviewed-on: https://dart-review.googlesource.com/c/82526 Commit-Queue: Régis Crelier <regis@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
// Copyright (c) 2018, 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.
|
|
|
|
#include "vm/globals.h"
|
|
#if !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
|
#include "vm/instructions.h"
|
|
#include "vm/instructions_kbc.h"
|
|
|
|
#include "vm/constants_kbc.h"
|
|
#include "vm/native_entry.h"
|
|
|
|
namespace dart {
|
|
|
|
RawTypedData* KBCNativeCallPattern::GetNativeEntryDataAt(
|
|
uword pc,
|
|
const Bytecode& bytecode) {
|
|
ASSERT(bytecode.ContainsInstructionAt(pc));
|
|
const uword call_pc = pc - sizeof(KBCInstr);
|
|
KBCInstr call_instr = KernelBytecode::At(call_pc);
|
|
ASSERT(KernelBytecode::DecodeOpcode(call_instr) ==
|
|
KernelBytecode::kNativeCall);
|
|
intptr_t native_entry_data_pool_index = KernelBytecode::DecodeD(call_instr);
|
|
const ObjectPool& obj_pool = ObjectPool::Handle(bytecode.object_pool());
|
|
TypedData& native_entry_data = TypedData::Handle();
|
|
native_entry_data ^= obj_pool.ObjectAt(native_entry_data_pool_index);
|
|
// Native calls to recognized functions should never be patched.
|
|
ASSERT(NativeEntryData(native_entry_data).kind() ==
|
|
MethodRecognizer::kUnknown);
|
|
return native_entry_data.raw();
|
|
}
|
|
|
|
} // namespace dart
|
|
|
|
#endif // !defined(DART_PRECOMPILED_RUNTIME)
|