Skip to content

Commit 33d7b76

Browse files
committed
Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes.
Differential revision: https://reviews.llvm.org/D23789 llvm-svn: 279535
1 parent ada2bb3 commit 33d7b76

13 files changed

+156
-93
lines changed

llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

+13-3
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,31 @@
2020
//===----------------------------------------------------------------------===//
2121

2222
#include "Interpreter.h"
23+
#include "llvm/ADT/APInt.h"
24+
#include "llvm/ADT/ArrayRef.h"
2325
#include "llvm/Config/config.h" // Detect libffi
26+
#include "llvm/ExecutionEngine/GenericValue.h"
2427
#include "llvm/IR/DataLayout.h"
2528
#include "llvm/IR/DerivedTypes.h"
26-
#include "llvm/IR/Module.h"
29+
#include "llvm/IR/Function.h"
30+
#include "llvm/IR/Type.h"
31+
#include "llvm/Support/Casting.h"
2732
#include "llvm/Support/DynamicLibrary.h"
2833
#include "llvm/Support/ErrorHandling.h"
2934
#include "llvm/Support/ManagedStatic.h"
3035
#include "llvm/Support/Mutex.h"
36+
#include "llvm/Support/raw_ostream.h"
3137
#include "llvm/Support/UniqueLock.h"
38+
#include <cassert>
3239
#include <cmath>
3340
#include <csignal>
41+
#include <cstdint>
3442
#include <cstdio>
3543
#include <cstring>
3644
#include <map>
45+
#include <string>
46+
#include <utility>
47+
#include <vector>
3748

3849
#ifdef HAVE_FFI_CALL
3950
#ifdef HAVE_FFI_H
@@ -290,7 +301,6 @@ GenericValue Interpreter::callExternalFunction(Function *F,
290301
return GenericValue();
291302
}
292303

293-
294304
//===----------------------------------------------------------------------===//
295305
// Functions "exported" to the running application...
296306
//
@@ -331,7 +341,7 @@ static GenericValue lle_X_sprintf(FunctionType *FT,
331341
// close enough for now.
332342
GenericValue GV;
333343
GV.IntVal = APInt(32, strlen(FmtStr));
334-
while (1) {
344+
while (true) {
335345
switch (*FmtStr) {
336346
case 0: return GV; // Null terminator...
337347
default: // Normal nonspecial character

llvm/lib/IR/ValueSymbolTable.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@
1515
#include "llvm/ADT/SmallString.h"
1616
#include "llvm/IR/GlobalValue.h"
1717
#include "llvm/IR/Type.h"
18+
#include "llvm/Support/Casting.h"
19+
#include "llvm/Support/Compiler.h"
1820
#include "llvm/Support/Debug.h"
1921
#include "llvm/Support/raw_ostream.h"
22+
#include <cassert>
23+
#include <utility>
24+
2025
using namespace llvm;
2126

2227
#define DEBUG_TYPE "valuesymtab"
@@ -35,7 +40,7 @@ ValueSymbolTable::~ValueSymbolTable() {
3540
ValueName *ValueSymbolTable::makeUniqueName(Value *V,
3641
SmallString<256> &UniqueName) {
3742
unsigned BaseSize = UniqueName.size();
38-
while (1) {
43+
while (true) {
3944
// Trim any suffix off and append the next number.
4045
UniqueName.resize(BaseSize);
4146
raw_svector_ostream S(UniqueName);
@@ -94,7 +99,6 @@ ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {
9499
return makeUniqueName(V, UniqueName);
95100
}
96101

97-
98102
// dump - print out the symbol table
99103
//
100104
LLVM_DUMP_METHOD void ValueSymbolTable::dump() const {

llvm/lib/MC/MCDisassembler/Disassembler.cpp

+19-10
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,29 @@
99

1010
#include "Disassembler.h"
1111
#include "llvm-c/Disassembler.h"
12+
#include "llvm/ADT/ArrayRef.h"
13+
#include "llvm/ADT/SmallVector.h"
14+
#include "llvm/ADT/Triple.h"
1215
#include "llvm/MC/MCAsmInfo.h"
1316
#include "llvm/MC/MCContext.h"
1417
#include "llvm/MC/MCDisassembler/MCDisassembler.h"
1518
#include "llvm/MC/MCDisassembler/MCRelocationInfo.h"
1619
#include "llvm/MC/MCDisassembler/MCSymbolizer.h"
1720
#include "llvm/MC/MCInst.h"
1821
#include "llvm/MC/MCInstPrinter.h"
22+
#include "llvm/MC/MCInstrDesc.h"
1923
#include "llvm/MC/MCInstrInfo.h"
24+
#include "llvm/MC/MCInstrItineraries.h"
2025
#include "llvm/MC/MCRegisterInfo.h"
26+
#include "llvm/MC/MCSchedule.h"
2127
#include "llvm/MC/MCSubtargetInfo.h"
2228
#include "llvm/Support/ErrorHandling.h"
2329
#include "llvm/Support/FormattedStream.h"
30+
#include "llvm/Support/raw_ostream.h"
2431
#include "llvm/Support/TargetRegistry.h"
32+
#include <cassert>
33+
#include <cstddef>
34+
#include <cstring>
2535

2636
using namespace llvm;
2737

@@ -116,7 +126,7 @@ LLVMDisasmContextRef LLVMCreateDisasm(const char *TT, void *DisInfo,
116126
// LLVMDisasmDispose() disposes of the disassembler specified by the context.
117127
//
118128
void LLVMDisasmDispose(LLVMDisasmContextRef DCR){
119-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
129+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
120130
delete DC;
121131
}
122132

@@ -211,7 +221,6 @@ static int getLatency(LLVMDisasmContext *DC, const MCInst &Inst) {
211221
return Latency;
212222
}
213223

214-
215224
/// \brief Emits latency information in DC->CommentStream for \p Inst, based
216225
/// on the information available in \p DC.
217226
static void emitLatency(LLVMDisasmContext *DC, const MCInst &Inst) {
@@ -239,7 +248,7 @@ static void emitLatency(LLVMDisasmContext *DC, const MCInst &Inst) {
239248
size_t LLVMDisasmInstruction(LLVMDisasmContextRef DCR, uint8_t *Bytes,
240249
uint64_t BytesSize, uint64_t PC, char *OutString,
241250
size_t OutStringSize){
242-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
251+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
243252
// Wrap the pointer to the Bytes, BytesSize and PC in a MemoryObject.
244253
ArrayRef<uint8_t> Data(Bytes, BytesSize);
245254

@@ -288,21 +297,21 @@ size_t LLVMDisasmInstruction(LLVMDisasmContextRef DCR, uint8_t *Bytes,
288297
//
289298
int LLVMSetDisasmOptions(LLVMDisasmContextRef DCR, uint64_t Options){
290299
if (Options & LLVMDisassembler_Option_UseMarkup){
291-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
300+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
292301
MCInstPrinter *IP = DC->getIP();
293-
IP->setUseMarkup(1);
302+
IP->setUseMarkup(true);
294303
DC->addOptions(LLVMDisassembler_Option_UseMarkup);
295304
Options &= ~LLVMDisassembler_Option_UseMarkup;
296305
}
297306
if (Options & LLVMDisassembler_Option_PrintImmHex){
298-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
307+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
299308
MCInstPrinter *IP = DC->getIP();
300-
IP->setPrintImmHex(1);
309+
IP->setPrintImmHex(true);
301310
DC->addOptions(LLVMDisassembler_Option_PrintImmHex);
302311
Options &= ~LLVMDisassembler_Option_PrintImmHex;
303312
}
304313
if (Options & LLVMDisassembler_Option_AsmPrinterVariant){
305-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
314+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
306315
// Try to set up the new instruction printer.
307316
const MCAsmInfo *MAI = DC->getAsmInfo();
308317
const MCInstrInfo *MII = DC->getInstrInfo();
@@ -318,14 +327,14 @@ int LLVMSetDisasmOptions(LLVMDisasmContextRef DCR, uint64_t Options){
318327
}
319328
}
320329
if (Options & LLVMDisassembler_Option_SetInstrComments) {
321-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
330+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
322331
MCInstPrinter *IP = DC->getIP();
323332
IP->setCommentStream(DC->CommentStream);
324333
DC->addOptions(LLVMDisassembler_Option_SetInstrComments);
325334
Options &= ~LLVMDisassembler_Option_SetInstrComments;
326335
}
327336
if (Options & LLVMDisassembler_Option_PrintLatency) {
328-
LLVMDisasmContext *DC = (LLVMDisasmContext *)DCR;
337+
LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR);
329338
DC->addOptions(LLVMDisassembler_Option_PrintLatency);
330339
Options &= ~LLVMDisassembler_Option_PrintLatency;
331340
}

llvm/lib/MC/MCParser/AsmLexer.cpp

+10-5
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,21 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14+
#include "llvm/ADT/APInt.h"
15+
#include "llvm/ADT/ArrayRef.h"
1416
#include "llvm/ADT/StringSwitch.h"
17+
#include "llvm/ADT/StringRef.h"
1518
#include "llvm/MC/MCParser/AsmLexer.h"
19+
#include "llvm/MC/MCParser/MCAsmLexer.h"
1620
#include "llvm/MC/MCAsmInfo.h"
17-
#include "llvm/Support/MemoryBuffer.h"
1821
#include "llvm/Support/SMLoc.h"
22+
#include <cassert>
1923
#include <cctype>
20-
#include <cerrno>
2124
#include <cstdio>
22-
#include <cstdlib>
25+
#include <cstring>
2326
#include <tuple>
27+
#include <string>
28+
#include <utility>
2429

2530
using namespace llvm;
2631

@@ -136,6 +141,7 @@ static bool IsIdentifierChar(char c, bool AllowAt) {
136141
return isalnum(c) || c == '_' || c == '$' || c == '.' ||
137142
(c == '@' && AllowAt) || c == '?';
138143
}
144+
139145
AsmToken AsmLexer::LexIdentifier() {
140146
// Check for floating point literals.
141147
if (CurPtr[-1] == '.' && isdigit(*CurPtr)) {
@@ -225,7 +231,7 @@ static void SkipIgnoredIntegerSuffix(const char *&CurPtr) {
225231
static unsigned doLookAhead(const char *&CurPtr, unsigned DefaultRadix) {
226232
const char *FirstHex = nullptr;
227233
const char *LookAhead = CurPtr;
228-
while (1) {
234+
while (true) {
229235
if (isdigit(*LookAhead)) {
230236
++LookAhead;
231237
} else if (isxdigit(*LookAhead)) {
@@ -400,7 +406,6 @@ AsmToken AsmLexer::LexSingleQuote() {
400406
return AsmToken(AsmToken::Integer, Res, Value);
401407
}
402408

403-
404409
/// LexQuote: String: "..."
405410
AsmToken AsmLexer::LexQuote() {
406411
int CurChar = getNextChar();

0 commit comments

Comments
 (0)