056f927861
Tbr: ahaas@chromium.org,leszeks@chromium.org,verwaest@chromium.org Bug: v8:3770 Change-Id: Ia6530fbb70dac05e9972283781c3550d8b50e1eb Reviewed-on: https://chromium-review.googlesource.com/c/1390116 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Alexei Filippov <alph@chromium.org> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Ulan Degenbaev <ulan@chromium.org> Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#58470}
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef V8_CCTEST_ASSEMBLER_HELPER_ARM_H_
|
|
#define V8_CCTEST_ASSEMBLER_HELPER_ARM_H_
|
|
|
|
#include <functional>
|
|
|
|
#include "src/handles.h"
|
|
#include "src/simulator.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
// TODO(arm): Refine these signatures per test case, they can have arbitrary
|
|
// return and argument types and arbitrary number of arguments.
|
|
using F_iiiii = void*(int x, int p1, int p2, int p3, int p4);
|
|
using F_piiii = void*(void* p0, int p1, int p2, int p3, int p4);
|
|
using F_ppiii = void*(void* p0, void* p1, int p2, int p3, int p4);
|
|
using F_pppii = void*(void* p0, void* p1, void* p2, int p3, int p4);
|
|
using F_ippii = void*(int p0, void* p1, void* p2, int p3, int p4);
|
|
|
|
Handle<Code> AssembleCodeImpl(std::function<void(Assembler&)> assemble);
|
|
|
|
template <typename Signature>
|
|
GeneratedCode<Signature> AssembleCode(
|
|
std::function<void(Assembler&)> assemble) {
|
|
return GeneratedCode<Signature>::FromCode(*AssembleCodeImpl(assemble));
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_CCTEST_ASSEMBLER_HELPER_ARM_H_
|