mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 00:20:25 +00:00
Fix generic getInlineAsmLength
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36369 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/Target/TargetAsmInfo.h"
|
#include "llvm/Target/TargetAsmInfo.h"
|
||||||
|
#include <cctype>
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
@@ -100,15 +102,27 @@ TargetAsmInfo::~TargetAsmInfo() {
|
|||||||
|
|
||||||
/// Measure the specified inline asm to determine an approximation of its
|
/// Measure the specified inline asm to determine an approximation of its
|
||||||
/// length.
|
/// 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 {
|
unsigned TargetAsmInfo::getInlineAsmLength(const char *Str) const {
|
||||||
// Count the number of instructions in the asm.
|
// Count the number of instructions in the asm.
|
||||||
unsigned NumInsts = 0;
|
bool atInsnStart = true;
|
||||||
|
unsigned Length = 0;
|
||||||
for (; *Str; ++Str) {
|
for (; *Str; ++Str) {
|
||||||
if (*Str == '\n' || *Str == SeparatorChar)
|
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 Length;
|
||||||
return NumInsts * MaxInstLength;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user