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

Side by Side Diff: unittest/BitcodeMunge.h

Issue 800883006: Add ability to test parsing of bitcode records in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in last patch set. Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/llvm2ice.cpp ('k') | unittest/BitcodeMunge.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 //===- BitcodeMunge.h - Subzero Bitcode Munger ------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Test harness for testing malformed bitcode files in Subzero. Uses NaCl's
11 // bitcode munger to do this.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef SUBZERO_UNITTEST_BITCODEMUNGE_H
16 #define SUBZERO_UNITTEST_BITCODEMUNGE_H
17
18 #include "llvm/Bitcode/NaCl/NaClBitcodeMunge.h"
19
20 namespace IceTest {
21
22 // Class to run tests on Subzero's bitcode parser. Runs a Subzero
23 // translation, using (possibly) edited bitcode record values. For
24 // more details on how to represent the input arrays, see
25 // NaClBitcodeMunge.h.
26 class SubzeroBitcodeMunger : public llvm::NaClBitcodeMunger {
27 public:
28 SubzeroBitcodeMunger(const uint64_t Records[], size_t RecordSize,
29 uint64_t RecordTerminator)
30 : llvm::NaClBitcodeMunger(Records, RecordSize, RecordTerminator) {}
31
32 /// Runs PNaClTranslator to translate bitcode records (with defined
33 /// record Munges), and puts output into DumpResults. Returns true
34 /// if parse is successful.
35 bool runTest(const char* TestName, const uint64_t Munges[],
36 size_t MungeSize);
37
38 /// Same as above, but without any edits.
39 bool runTest(const char* TestName) {
40 uint64_t NoMunges[] = {0};
41 return runTest(TestName, NoMunges, 0);
42 }
43 };
44
45 } // end of namespace IceTest
46
47 #endif // SUBZERO_UNITTEST_BITCODEMUNGE_H
OLDNEW
« no previous file with comments | « src/llvm2ice.cpp ('k') | unittest/BitcodeMunge.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698