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

Side by Side Diff: unittest/BitcodeMunge.cpp

Issue 1091023002: Fix locking for printing error messages. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 8 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
OLDNEW
1 //===- BitcodeMunge.cpp - Subzero Bitcode Munger ----------------*- C++ -*-===// 1 //===- BitcodeMunge.cpp - Subzero Bitcode Munger ----------------*- C++ -*-===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // Test harness for testing malformed bitcode files in Subzero. 10 // Test harness for testing malformed bitcode files in Subzero.
11 // 11 //
12 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===//
13 13
14 #include "BitcodeMunge.h" 14 #include "BitcodeMunge.h"
15 #include "IceCfg.h" 15 #include "IceCfg.h"
16 #include "IceClFlags.h" 16 #include "IceClFlags.h"
17 #include "PNaClTranslator.h" 17 #include "PNaClTranslator.h"
18 #include "IceTypes.h" 18 #include "IceTypes.h"
19 19
20 namespace IceTest { 20 namespace IceTest {
21 21
22 void IceTest::SubzeroBitcodeMunger::resetFlags() {
23 Ice::ClFlags::resetClFlags(Flags);
24 resetMungeFlags();
25 }
26
27 void IceTest::SubzeroBitcodeMunger::resetMungeFlags() {
28 Flags.setAllowErrorRecovery(true);
29 Flags.setGenerateUnitTestMessages(true);
30 Flags.setOptLevel(Ice::Opt_m1);
31 Flags.setOutFileType(Ice::FT_Iasm);
32 Flags.setTargetArch(Ice::Target_X8632);
33 Flags.setVerbose(Ice::IceV_Instructions);
34 }
35
22 bool IceTest::SubzeroBitcodeMunger::runTest(const char *TestName, 36 bool IceTest::SubzeroBitcodeMunger::runTest(const char *TestName,
23 const uint64_t Munges[], 37 const uint64_t Munges[],
24 size_t MungeSize) { 38 size_t MungeSize) {
25 const bool AddHeader = true; 39 const bool AddHeader = true;
26 setupTest(TestName, Munges, MungeSize, AddHeader); 40 setupTest(TestName, Munges, MungeSize, AddHeader);
27
28 Ice::ClFlags Flags;
29 Flags.setAllowErrorRecovery(true);
30 Flags.setGenerateUnitTestMessages(true);
31 Flags.setOptLevel(Ice::Opt_m1);
32 Flags.setOutFileType(Ice::FT_Iasm);
33 Flags.setTargetArch(Ice::Target_X8632);
34 Flags.setVerbose(Ice::IceV_Instructions);
35 Ice::GlobalContext Ctx(DumpStream, DumpStream, nullptr, Flags); 41 Ice::GlobalContext Ctx(DumpStream, DumpStream, nullptr, Flags);
36 Ice::PNaClTranslator Translator(&Ctx); 42 Ice::PNaClTranslator Translator(&Ctx);
37 Translator.translateBuffer(TestName, MungedInput.get()); 43 Translator.translateBuffer(TestName, MungedInput.get());
38 44
39 cleanupTest(); 45 cleanupTest();
40 return Translator.getErrorStatus().value() == 0; 46 return Translator.getErrorStatus().value() == 0;
41 } 47 }
42 48
43 } // end of namespace IceTest 49 } // end of namespace IceTest
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698