summaryrefslogtreecommitdiff
path: root/tools/llvm-mc
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-22 06:37:58 +0000
committerChris Lattner <sabre@nondot.org>2009-12-22 06:37:58 +0000
commit2adbef06a637b367f724d0a46f7fa78d5827ec64 (patch)
tree030e004d00d3ce2ce5254b6f9ee1d844fcfc0fe2 /tools/llvm-mc
parent222af464822c9c47b2859e813912ed6ba5339217 (diff)
downloadllvm-2adbef06a637b367f724d0a46f7fa78d5827ec64.tar.gz
llvm-2adbef06a637b367f724d0a46f7fa78d5827ec64.tar.bz2
llvm-2adbef06a637b367f724d0a46f7fa78d5827ec64.tar.xz
rewrite the file parser for the disassembler, implementing support for
comments. Also, check in a simple testcase for the disassembler, including a test for r91864 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-mc')
-rw-r--r--tools/llvm-mc/HexDisassembler.cpp40
1 files changed, 26 insertions, 14 deletions
diff --git a/tools/llvm-mc/HexDisassembler.cpp b/tools/llvm-mc/HexDisassembler.cpp
index bae4b023d0..c1ccf57355 100644
--- a/tools/llvm-mc/HexDisassembler.cpp
+++ b/tools/llvm-mc/HexDisassembler.cpp
@@ -114,31 +114,43 @@ int HexDisassembler::disassemble(const Target &T, const std::string &Triple,
StringRef Str = Buffer.getBuffer();
while (!Str.empty()) {
- if (Str.find_first_of('\n') < Str.find_first_not_of(" \t\n\r")) {
- if (!ByteArray.empty())
+ // Strip horizontal whitespace.
+ if (size_t Pos = Str.find_first_not_of(" \t\r")) {
+ Str = Str.substr(Pos);
+ continue;
+ }
+
+ // If this is the end of a line or start of a comment, process the
+ // instruction we have so far.
+ if (Str[0] == '\n' || Str[0] == '#') {
+ // If we have bytes to process, do so.
+ if (!ByteArray.empty()) {
printInst(*DisAsm, *InstPrinter, ByteArray);
+ ByteArray.clear();
+ }
- ByteArray.clear();
+ // Strip to the end of line if we already processed any bytes on this
+ // line. This strips the comment and/or the \n.
+ if (Str[0] == '\n')
+ Str = Str.substr(1);
+ else {
+ Str = Str.substr(Str.find_first_of('\n'));
+ if (!Str.empty())
+ Str = Str.substr(1);
+ }
+ continue;
}
- // Skip leading space.
- Str = Str.substr(Str.find_first_not_of(" \t\n\r"));
-
// Get the current token.
- size_t Next = Str.find_first_of(" \t\n\r");
-
- if(Next == (size_t)StringRef::npos)
- break;
-
- StringRef Value = Str.slice(0, Next);
+ size_t Next = Str.find_first_of(" \t\n\r#");
+ StringRef Value = Str.substr(0, Next);
// Convert to a byte and add to the byte vector.
unsigned ByteVal;
if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
errs() << "warning: invalid input token '" << Value << "' of length "
<< Next << "\n";
- }
- else {
+ } else {
ByteArray.push_back((unsigned char)ByteVal);
}
Str = Str.substr(Next);