mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Expose method and ivars for measuring inline asm length properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -21,6 +21,8 @@ TargetAsmInfo::TargetAsmInfo() :
|
||||
DataSection(".data"),
|
||||
AddressSize(4),
|
||||
NeedsSet(false),
|
||||
MaxInstLength(4),
|
||||
SeparatorChar(';'),
|
||||
CommentString("#"),
|
||||
GlobalPrefix(""),
|
||||
PrivateGlobalPrefix("."),
|
||||
@ -71,8 +73,22 @@ TargetAsmInfo::TargetAsmInfo() :
|
||||
DwarfLocSection(".debug_loc"),
|
||||
DwarfARangesSection(".debug_aranges"),
|
||||
DwarfRangesSection(".debug_ranges"),
|
||||
DwarfMacInfoSection(".debug_macinfo")
|
||||
{}
|
||||
DwarfMacInfoSection(".debug_macinfo") {
|
||||
}
|
||||
|
||||
TargetAsmInfo::~TargetAsmInfo() {
|
||||
}
|
||||
|
||||
/// Measure the specified inline asm to determine an approximation of its
|
||||
/// length.
|
||||
unsigned TargetAsmInfo::getInlineAsmLength(const char *Str) const {
|
||||
// Count the number of instructions in the asm.
|
||||
unsigned NumInsts = 0;
|
||||
for (; *Str; ++Str) {
|
||||
if (*Str == '\n' || *Str == SeparatorChar)
|
||||
++NumInsts;
|
||||
}
|
||||
|
||||
// Multiply by the worst-case length for each instruction.
|
||||
return NumInsts * MaxInstLength;
|
||||
}
|
||||
|
Reference in New Issue
Block a user