mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Fix size_t -> uint warnings with MSVC 64-bit build
llvm-svn: 186736
This commit is contained in:
parent
2d3b19969c
commit
2dbfab3c32
@ -328,7 +328,7 @@ template <> struct GraphTraits<Function*> : public GraphTraits<BasicBlock*> {
|
|||||||
typedef Function::iterator nodes_iterator;
|
typedef Function::iterator nodes_iterator;
|
||||||
static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
|
static nodes_iterator nodes_begin(Function *F) { return F->begin(); }
|
||||||
static nodes_iterator nodes_end (Function *F) { return F->end(); }
|
static nodes_iterator nodes_end (Function *F) { return F->end(); }
|
||||||
static unsigned size (Function *F) { return F->size(); }
|
static size_t size (Function *F) { return F->size(); }
|
||||||
};
|
};
|
||||||
template <> struct GraphTraits<const Function*> :
|
template <> struct GraphTraits<const Function*> :
|
||||||
public GraphTraits<const BasicBlock*> {
|
public GraphTraits<const BasicBlock*> {
|
||||||
@ -338,7 +338,7 @@ template <> struct GraphTraits<const Function*> :
|
|||||||
typedef Function::const_iterator nodes_iterator;
|
typedef Function::const_iterator nodes_iterator;
|
||||||
static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
|
static nodes_iterator nodes_begin(const Function *F) { return F->begin(); }
|
||||||
static nodes_iterator nodes_end (const Function *F) { return F->end(); }
|
static nodes_iterator nodes_end (const Function *F) { return F->end(); }
|
||||||
static unsigned size (const Function *F) { return F->size(); }
|
static size_t size (const Function *F) { return F->size(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -361,7 +361,7 @@ public:
|
|||||||
FlatCollection.end(),
|
FlatCollection.end(),
|
||||||
CheckingVal) != FlatCollection.end();
|
CheckingVal) != FlatCollection.end();
|
||||||
|
|
||||||
for (unsigned i = 0, e = getNumItems(); i < e; ++i) {
|
for (size_t i = 0, e = getNumItems(); i < e; ++i) {
|
||||||
if (RangeLinks[i].first == RangeLinks[i].second) {
|
if (RangeLinks[i].first == RangeLinks[i].second) {
|
||||||
if (*RangeLinks[i].first == CheckingVal)
|
if (*RangeLinks[i].first == CheckingVal)
|
||||||
return true;
|
return true;
|
||||||
@ -382,7 +382,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Return number of items (ranges) stored in set.
|
/// Return number of items (ranges) stored in set.
|
||||||
unsigned getNumItems() const {
|
size_t getNumItems() const {
|
||||||
return RangeLinks.size();
|
return RangeLinks.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -409,7 +409,7 @@ public:
|
|||||||
/// for range [<0>, <1>, <5>] the size will 3
|
/// for range [<0>, <1>, <5>] the size will 3
|
||||||
unsigned getSize() const {
|
unsigned getSize() const {
|
||||||
APInt sz(((const APInt&)getItem(0).getLow()).getBitWidth(), 0);
|
APInt sz(((const APInt&)getItem(0).getLow()).getBitWidth(), 0);
|
||||||
for (unsigned i = 0, e = getNumItems(); i != e; ++i) {
|
for (size_t i = 0, e = getNumItems(); i != e; ++i) {
|
||||||
const APInt Low = getItem(i).getLow();
|
const APInt Low = getItem(i).getLow();
|
||||||
const APInt High = getItem(i).getHigh();
|
const APInt High = getItem(i).getHigh();
|
||||||
APInt S = High - Low + 1;
|
APInt S = High - Low + 1;
|
||||||
|
@ -39,7 +39,7 @@ public:
|
|||||||
DK_Warning,
|
DK_Warning,
|
||||||
DK_Note
|
DK_Note
|
||||||
};
|
};
|
||||||
|
|
||||||
/// DiagHandlerTy - Clients that want to handle their own diagnostics in a
|
/// DiagHandlerTy - Clients that want to handle their own diagnostics in a
|
||||||
/// custom way can register a function pointer+context as a diagnostic
|
/// custom way can register a function pointer+context as a diagnostic
|
||||||
/// handler. It gets called each time PrintMessage is invoked.
|
/// handler. It gets called each time PrintMessage is invoked.
|
||||||
@ -98,7 +98,7 @@ public:
|
|||||||
return Buffers[i].Buffer;
|
return Buffers[i].Buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned getNumBuffers() const {
|
size_t getNumBuffers() const {
|
||||||
return Buffers.size();
|
return Buffers.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,20 +109,20 @@ public:
|
|||||||
|
|
||||||
/// AddNewSourceBuffer - Add a new source buffer to this source manager. This
|
/// AddNewSourceBuffer - Add a new source buffer to this source manager. This
|
||||||
/// takes ownership of the memory buffer.
|
/// takes ownership of the memory buffer.
|
||||||
unsigned AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
|
size_t AddNewSourceBuffer(MemoryBuffer *F, SMLoc IncludeLoc) {
|
||||||
SrcBuffer NB;
|
SrcBuffer NB;
|
||||||
NB.Buffer = F;
|
NB.Buffer = F;
|
||||||
NB.IncludeLoc = IncludeLoc;
|
NB.IncludeLoc = IncludeLoc;
|
||||||
Buffers.push_back(NB);
|
Buffers.push_back(NB);
|
||||||
return Buffers.size()-1;
|
return Buffers.size() - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// AddIncludeFile - Search for a file with the specified name in the current
|
/// AddIncludeFile - Search for a file with the specified name in the current
|
||||||
/// directory or in one of the IncludeDirs. If no file is found, this returns
|
/// directory or in one of the IncludeDirs. If no file is found, this returns
|
||||||
/// ~0, otherwise it returns the buffer ID of the stacked file.
|
/// ~0, otherwise it returns the buffer ID of the stacked file.
|
||||||
/// The full path to the included file can be found in IncludedFile.
|
/// The full path to the included file can be found in IncludedFile.
|
||||||
unsigned AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
|
size_t AddIncludeFile(const std::string &Filename, SMLoc IncludeLoc,
|
||||||
std::string &IncludedFile);
|
std::string &IncludedFile);
|
||||||
|
|
||||||
/// FindBufferContainingLoc - Return the ID of the buffer containing the
|
/// FindBufferContainingLoc - Return the ID of the buffer containing the
|
||||||
/// specified location, returning -1 if not found.
|
/// specified location, returning -1 if not found.
|
||||||
@ -221,7 +221,7 @@ public:
|
|||||||
SMDiagnostic(StringRef filename, SourceMgr::DiagKind Knd, StringRef Msg)
|
SMDiagnostic(StringRef filename, SourceMgr::DiagKind Knd, StringRef Msg)
|
||||||
: SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd),
|
: SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd),
|
||||||
Message(Msg) {}
|
Message(Msg) {}
|
||||||
|
|
||||||
// Diagnostic with a location.
|
// Diagnostic with a location.
|
||||||
SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN,
|
SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN,
|
||||||
int Line, int Col, SourceMgr::DiagKind Kind,
|
int Line, int Col, SourceMgr::DiagKind Kind,
|
||||||
|
@ -52,9 +52,9 @@ SourceMgr::~SourceMgr() {
|
|||||||
/// AddIncludeFile - Search for a file with the specified name in the current
|
/// AddIncludeFile - Search for a file with the specified name in the current
|
||||||
/// directory or in one of the IncludeDirs. If no file is found, this returns
|
/// directory or in one of the IncludeDirs. If no file is found, this returns
|
||||||
/// ~0, otherwise it returns the buffer ID of the stacked file.
|
/// ~0, otherwise it returns the buffer ID of the stacked file.
|
||||||
unsigned SourceMgr::AddIncludeFile(const std::string &Filename,
|
size_t SourceMgr::AddIncludeFile(const std::string &Filename,
|
||||||
SMLoc IncludeLoc,
|
SMLoc IncludeLoc,
|
||||||
std::string &IncludedFile) {
|
std::string &IncludedFile) {
|
||||||
OwningPtr<MemoryBuffer> NewBuf;
|
OwningPtr<MemoryBuffer> NewBuf;
|
||||||
IncludedFile = Filename;
|
IncludedFile = Filename;
|
||||||
MemoryBuffer::getFile(IncludedFile.c_str(), NewBuf);
|
MemoryBuffer::getFile(IncludedFile.c_str(), NewBuf);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user