Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1374)

Unified Diff: test/cctest/test-fuzz-a64.cc

Issue 181253002: A64: Make the Decoder a template (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-disasm-a64.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-fuzz-a64.cc
diff --git a/test/cctest/test-fuzz-a64.cc b/test/cctest/test-fuzz-a64.cc
index 3f091d75862eb7ce766b004cbdf45dc6bb710c0d..f773c678ca6f52b0c95200488578e366016848fa 100644
--- a/test/cctest/test-fuzz-a64.cc
+++ b/test/cctest/test-fuzz-a64.cc
@@ -26,6 +26,7 @@
#include "cctest.h"
#include "a64/decoder-a64.h"
+#include "a64/decoder-a64-inl.h"
#include "a64/disasm-a64.h"
using namespace v8::internal;
@@ -38,7 +39,7 @@ TEST(FUZZ_decoder) {
uint16_t seed[3] = {1, 2, 3};
seed48(seed);
- Decoder decoder;
+ Decoder<DispatchingDecoderVisitor> decoder;
Instruction buffer[kInstructionSize];
for (int i = 0; i < instruction_count; i++) {
@@ -57,7 +58,7 @@ TEST(FUZZ_disasm) {
uint16_t seed[3] = {42, 43, 44};
seed48(seed);
- Decoder decoder;
+ Decoder<DispatchingDecoderVisitor> decoder;
Disassembler disasm;
Instruction buffer[kInstructionSize];
« no previous file with comments | « test/cctest/test-disasm-a64.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698