diff options
author | Dale Johannesen <dalej@apple.com> | 2007-04-23 20:00:17 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-04-23 20:00:17 +0000 |
commit | 0a1069d526f4473fa720148d1d6205c1329260b0 (patch) | |
tree | ddd1f863638e7d10d32cd97e60f4a0f5eab4d865 | |
parent | 14a28f13c88be58409aa44654ea6c14128249179 (diff) | |
download | bcm5719-llvm-0a1069d526f4473fa720148d1d6205c1329260b0.tar.gz bcm5719-llvm-0a1069d526f4473fa720148d1d6205c1329260b0.zip |
Fix generic getInlineAsmLength
llvm-svn: 36369
-rw-r--r-- | llvm/lib/Target/TargetAsmInfo.cpp | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/llvm/lib/Target/TargetAsmInfo.cpp b/llvm/lib/Target/TargetAsmInfo.cpp index 62c8b90e7bf..8deda9fe6a5 100644 --- a/llvm/lib/Target/TargetAsmInfo.cpp +++ b/llvm/lib/Target/TargetAsmInfo.cpp @@ -13,6 +13,8 @@ //===----------------------------------------------------------------------===// #include "llvm/Target/TargetAsmInfo.h" +#include <cctype> +#include <cstring> using namespace llvm; @@ -100,15 +102,27 @@ TargetAsmInfo::~TargetAsmInfo() { /// Measure the specified inline asm to determine an approximation of its /// length. +/// Comments (which run till the next SeparatorChar or newline) do not +/// count as an instruction. +/// Any other non-whitespace text is considered an instruction, with +/// multiple instructions separated by SeparatorChar or newlines. +/// Variable-length instructions are not handled here; this function +/// may be overloaded in the target code to do that. unsigned TargetAsmInfo::getInlineAsmLength(const char *Str) const { // Count the number of instructions in the asm. - unsigned NumInsts = 0; + bool atInsnStart = true; + unsigned Length = 0; for (; *Str; ++Str) { if (*Str == '\n' || *Str == SeparatorChar) - ++NumInsts; + atInsnStart = true; + if (atInsnStart && !isspace(*Str)) { + Length += MaxInstLength; + atInsnStart = false; + } + if (atInsnStart && strncmp(Str, CommentString, strlen(CommentString))==0) + atInsnStart = false; } - // Multiply by the worst-case length for each instruction. - return NumInsts * MaxInstLength; + return Length; } |