2004-08-16 23:15:22 +00:00
|
|
|
//===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the AsmPrinter class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-03-03 02:04:29 +00:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2006-03-01 22:18:09 +00:00
|
|
|
#include "llvm/Assembly/Writer.h"
|
Teach the SelectionDAG ISel how to turn ConstantPacked values into
constant nodes with vector types. Also teach the asm printer how to print
ConstantPacked constant pool entries. This allows us to generate altivec
code such as the following, which adds a vector constantto a packed float.
LCPI1_0: <4 x float> < float 0.0e+0, float 0.0e+0, float 0.0e+0, float 1.0e+0 >
.space 4
.space 4
.space 4
.long 1065353216 ; float 1
.text
.align 4
.globl _foo
_foo:
lis r2, ha16(LCPI1_0)
la r2, lo16(LCPI1_0)(r2)
li r4, 0
lvx v0, r4, r2
lvx v1, r4, r3
vaddfp v0, v1, v0
stvx v0, r4, r3
blr
For the llvm code:
void %foo(<4 x float> * %a) {
entry:
%tmp1 = load <4 x float> * %a;
%tmp2 = add <4 x float> %tmp1, < float 0.0, float 0.0, float 0.0, float 1.0 >
store <4 x float> %tmp2, <4 x float> *%a
ret void
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24616 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-06 06:18:55 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2004-08-16 23:15:22 +00:00
|
|
|
#include "llvm/Constants.h"
|
2005-11-10 18:36:17 +00:00
|
|
|
#include "llvm/Module.h"
|
2005-11-21 08:25:09 +00:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2004-08-16 23:15:22 +00:00
|
|
|
#include "llvm/Support/Mangler.h"
|
2005-08-17 19:34:49 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2004-08-16 23:15:22 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2005-12-28 06:29:02 +00:00
|
|
|
#include <iostream>
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
#include <cerrno>
|
2004-08-16 23:15:22 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2005-12-13 06:32:10 +00:00
|
|
|
AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm)
|
|
|
|
: FunctionNumber(0), O(o), TM(tm),
|
|
|
|
CommentString("#"),
|
|
|
|
GlobalPrefix(""),
|
|
|
|
PrivateGlobalPrefix("."),
|
|
|
|
GlobalVarAddrPrefix(""),
|
|
|
|
GlobalVarAddrSuffix(""),
|
|
|
|
FunctionAddrPrefix(""),
|
|
|
|
FunctionAddrSuffix(""),
|
2006-02-08 23:41:56 +00:00
|
|
|
InlineAsmStart("#APP\n"),
|
|
|
|
InlineAsmEnd("#NO_APP\n"),
|
2005-12-13 06:32:10 +00:00
|
|
|
ZeroDirective("\t.zero\t"),
|
|
|
|
AsciiDirective("\t.ascii\t"),
|
|
|
|
AscizDirective("\t.asciz\t"),
|
|
|
|
Data8bitsDirective("\t.byte\t"),
|
|
|
|
Data16bitsDirective("\t.short\t"),
|
|
|
|
Data32bitsDirective("\t.long\t"),
|
|
|
|
Data64bitsDirective("\t.quad\t"),
|
|
|
|
AlignDirective("\t.align\t"),
|
|
|
|
AlignmentIsInBytes(true),
|
|
|
|
SwitchToSectionDirective("\t.section\t"),
|
|
|
|
ConstantPoolSection("\t.section .rodata\n"),
|
|
|
|
StaticCtorsSection("\t.section .ctors,\"aw\",@progbits"),
|
|
|
|
StaticDtorsSection("\t.section .dtors,\"aw\",@progbits"),
|
|
|
|
LCOMMDirective(0),
|
|
|
|
COMMDirective("\t.comm\t"),
|
|
|
|
COMMDirectiveTakesAlignment(true),
|
|
|
|
HasDotTypeDotSizeDirective(true) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-21 07:06:27 +00:00
|
|
|
/// SwitchSection - Switch to the specified section of the executable if we
|
|
|
|
/// are not already in it!
|
|
|
|
///
|
|
|
|
void AsmPrinter::SwitchSection(const char *NewSection, const GlobalValue *GV) {
|
|
|
|
std::string NS;
|
|
|
|
|
|
|
|
if (GV && GV->hasSection())
|
2005-11-21 08:25:09 +00:00
|
|
|
NS = SwitchToSectionDirective + GV->getSection();
|
2005-11-21 07:06:27 +00:00
|
|
|
else
|
2005-12-09 19:28:49 +00:00
|
|
|
NS = std::string("\t")+NewSection;
|
2005-11-21 07:06:27 +00:00
|
|
|
|
|
|
|
if (CurrentSection != NS) {
|
|
|
|
CurrentSection = NS;
|
|
|
|
if (!CurrentSection.empty())
|
2005-12-09 19:28:49 +00:00
|
|
|
O << CurrentSection << '\n';
|
2005-11-21 07:06:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-16 23:15:22 +00:00
|
|
|
bool AsmPrinter::doInitialization(Module &M) {
|
2004-08-17 06:06:19 +00:00
|
|
|
Mang = new Mangler(M, GlobalPrefix);
|
2006-01-23 23:47:53 +00:00
|
|
|
|
2006-01-24 04:16:34 +00:00
|
|
|
if (!M.getModuleInlineAsm().empty())
|
|
|
|
O << CommentString << " Start of file scope inline assembly\n"
|
|
|
|
<< M.getModuleInlineAsm()
|
|
|
|
<< "\n" << CommentString << " End of file scope inline assembly\n";
|
2006-01-23 23:47:53 +00:00
|
|
|
|
2005-11-21 07:06:27 +00:00
|
|
|
SwitchSection("", 0); // Reset back to no section.
|
2006-01-26 20:21:46 +00:00
|
|
|
|
|
|
|
if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
|
|
|
|
DebugInfo->AnalyzeModule(M);
|
|
|
|
}
|
|
|
|
|
2004-08-16 23:15:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AsmPrinter::doFinalization(Module &M) {
|
|
|
|
delete Mang; Mang = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-11-21 07:51:36 +00:00
|
|
|
void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
|
2004-08-16 23:15:22 +00:00
|
|
|
// What's my mangled name?
|
2005-11-10 18:36:17 +00:00
|
|
|
CurrentFnName = Mang->getValueName(MF.getFunction());
|
2005-11-21 08:13:27 +00:00
|
|
|
IncrementFunctionNumber();
|
2004-08-16 23:15:22 +00:00
|
|
|
}
|
|
|
|
|
2005-11-21 08:25:09 +00:00
|
|
|
/// EmitConstantPool - Print to the current output stream assembly
|
|
|
|
/// representations of the constants in the constant pool MCP. This is
|
|
|
|
/// used to print out constants which have been "spilled to memory" by
|
|
|
|
/// the code generator.
|
|
|
|
///
|
|
|
|
void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
|
2006-02-09 04:22:52 +00:00
|
|
|
const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
|
2005-11-21 08:25:09 +00:00
|
|
|
if (CP.empty()) return;
|
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
|
|
|
|
SwitchSection(ConstantPoolSection, 0);
|
2006-02-09 04:46:04 +00:00
|
|
|
EmitAlignment(MCP->getConstantPoolAlignment());
|
2005-11-21 08:25:09 +00:00
|
|
|
for (unsigned i = 0, e = CP.size(); i != e; ++i) {
|
|
|
|
O << PrivateGlobalPrefix << "CPI" << getFunctionNumber() << '_' << i
|
2006-03-01 22:18:09 +00:00
|
|
|
<< ":\t\t\t\t\t" << CommentString << " ";
|
|
|
|
WriteTypeSymbolic(O, CP[i].Val->getType(), 0) << '\n';
|
2006-02-09 04:22:52 +00:00
|
|
|
EmitGlobalConstant(CP[i].Val);
|
2006-02-09 04:46:04 +00:00
|
|
|
if (i != e-1) {
|
|
|
|
unsigned EntSize = TM.getTargetData().getTypeSize(CP[i].Val->getType());
|
|
|
|
unsigned ValEnd = CP[i].Offset + EntSize;
|
|
|
|
// Emit inter-object padding for alignment.
|
|
|
|
EmitZeros(CP[i+1].Offset-ValEnd);
|
|
|
|
}
|
2005-11-21 08:25:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:32:10 +00:00
|
|
|
/// EmitSpecialLLVMGlobal - Check to see if the specified global is a
|
|
|
|
/// special global used by LLVM. If so, emit it and return true, otherwise
|
|
|
|
/// do nothing and return false.
|
|
|
|
bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
|
|
|
|
assert(GV->hasInitializer() && GV->hasAppendingLinkage() &&
|
|
|
|
"Not a special LLVM global!");
|
|
|
|
|
|
|
|
if (GV->getName() == "llvm.used")
|
|
|
|
return true; // No need to emit this at all.
|
|
|
|
|
2006-01-12 19:17:23 +00:00
|
|
|
if (GV->getName() == "llvm.global_ctors" && GV->use_empty()) {
|
2005-12-13 06:32:10 +00:00
|
|
|
SwitchSection(StaticCtorsSection, 0);
|
|
|
|
EmitAlignment(2, 0);
|
|
|
|
EmitXXStructorList(GV->getInitializer());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-01-12 19:17:23 +00:00
|
|
|
if (GV->getName() == "llvm.global_dtors" && GV->use_empty()) {
|
2005-12-13 06:32:10 +00:00
|
|
|
SwitchSection(StaticDtorsSection, 0);
|
|
|
|
EmitAlignment(2, 0);
|
|
|
|
EmitXXStructorList(GV->getInitializer());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitXXStructorList - Emit the ctor or dtor list. This just prints out the
|
|
|
|
/// function pointers, ignoring the init priority.
|
|
|
|
void AsmPrinter::EmitXXStructorList(Constant *List) {
|
|
|
|
// Should be an array of '{ int, void ()* }' structs. The first value is the
|
|
|
|
// init priority, which we ignore.
|
|
|
|
if (!isa<ConstantArray>(List)) return;
|
|
|
|
ConstantArray *InitList = cast<ConstantArray>(List);
|
|
|
|
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
|
|
|
|
if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
|
|
|
|
if (CS->getNumOperands() != 2) return; // Not array of 2-element structs.
|
2005-12-21 01:17:37 +00:00
|
|
|
|
|
|
|
if (CS->getOperand(1)->isNullValue())
|
|
|
|
return; // Found a null terminator, exit printing.
|
|
|
|
// Emit the function pointer.
|
2005-12-13 06:32:10 +00:00
|
|
|
EmitGlobalConstant(CS->getOperand(1));
|
|
|
|
}
|
|
|
|
}
|
2005-11-21 08:25:09 +00:00
|
|
|
|
2006-02-05 01:29:18 +00:00
|
|
|
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
|
|
|
/// specified global, returned in log form. This includes an explicitly
|
|
|
|
/// requested alignment (if the global has one).
|
|
|
|
unsigned AsmPrinter::getPreferredAlignmentLog(const GlobalVariable *GV) const {
|
|
|
|
unsigned Alignment = TM.getTargetData().getTypeAlignmentShift(GV->getType());
|
|
|
|
if (GV->getAlignment() > (1U << Alignment))
|
|
|
|
Alignment = Log2_32(GV->getAlignment());
|
|
|
|
|
2006-02-05 01:46:49 +00:00
|
|
|
if (GV->hasInitializer()) {
|
|
|
|
// Always round up alignment of global doubles to 8 bytes.
|
|
|
|
if (GV->getType()->getElementType() == Type::DoubleTy && Alignment < 3)
|
|
|
|
Alignment = 3;
|
|
|
|
if (Alignment < 4) {
|
|
|
|
// If the global is not external, see if it is large. If so, give it a
|
|
|
|
// larger alignment.
|
|
|
|
if (TM.getTargetData().getTypeSize(GV->getType()->getElementType()) > 128)
|
|
|
|
Alignment = 4; // 16-byte alignment.
|
|
|
|
}
|
2006-02-05 01:29:18 +00:00
|
|
|
}
|
|
|
|
return Alignment;
|
|
|
|
}
|
2005-11-21 08:25:09 +00:00
|
|
|
|
2005-11-21 07:51:36 +00:00
|
|
|
// EmitAlignment - Emit an alignment directive to the specified power of two.
|
|
|
|
void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
|
2005-11-14 19:00:06 +00:00
|
|
|
if (GV && GV->getAlignment())
|
|
|
|
NumBits = Log2_32(GV->getAlignment());
|
2005-11-10 18:09:27 +00:00
|
|
|
if (NumBits == 0) return; // No need to emit alignment.
|
2004-08-17 19:14:29 +00:00
|
|
|
if (AlignmentIsInBytes) NumBits = 1 << NumBits;
|
|
|
|
O << AlignDirective << NumBits << "\n";
|
|
|
|
}
|
|
|
|
|
2005-11-21 07:51:36 +00:00
|
|
|
/// EmitZeros - Emit a block of zeros.
|
2004-08-17 21:38:40 +00:00
|
|
|
///
|
2005-11-21 07:51:36 +00:00
|
|
|
void AsmPrinter::EmitZeros(uint64_t NumZeros) const {
|
2004-08-17 21:38:40 +00:00
|
|
|
if (NumZeros) {
|
|
|
|
if (ZeroDirective)
|
|
|
|
O << ZeroDirective << NumZeros << "\n";
|
|
|
|
else {
|
|
|
|
for (; NumZeros; --NumZeros)
|
|
|
|
O << Data8bitsDirective << "0\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-16 23:15:22 +00:00
|
|
|
// Print out the specified constant, without a storage class. Only the
|
|
|
|
// constants valid in constant expressions can occur here.
|
2005-11-21 07:51:36 +00:00
|
|
|
void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
|
2004-10-16 18:19:26 +00:00
|
|
|
if (CV->isNullValue() || isa<UndefValue>(CV))
|
2004-08-16 23:15:22 +00:00
|
|
|
O << "0";
|
|
|
|
else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
|
|
|
|
assert(CB == ConstantBool::True);
|
|
|
|
O << "1";
|
|
|
|
} else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
|
|
|
|
if (((CI->getValue() << 32) >> 32) == CI->getValue())
|
|
|
|
O << CI->getValue();
|
|
|
|
else
|
2005-05-15 13:05:48 +00:00
|
|
|
O << (uint64_t)CI->getValue();
|
2004-08-16 23:15:22 +00:00
|
|
|
else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
|
|
|
|
O << CI->getValue();
|
2005-11-10 18:36:17 +00:00
|
|
|
else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
|
2005-04-02 12:21:51 +00:00
|
|
|
// This is a constant address for a global variable or function. Use the
|
|
|
|
// name of the variable or function as the address value, possibly
|
|
|
|
// decorating it with GlobalVarAddrPrefix/Suffix or
|
|
|
|
// FunctionAddrPrefix/Suffix (these all default to "" )
|
2005-11-10 18:36:17 +00:00
|
|
|
if (isa<Function>(GV))
|
|
|
|
O << FunctionAddrPrefix << Mang->getValueName(GV) << FunctionAddrSuffix;
|
2005-04-02 12:21:51 +00:00
|
|
|
else
|
2005-11-10 18:36:17 +00:00
|
|
|
O << GlobalVarAddrPrefix << Mang->getValueName(GV) << GlobalVarAddrSuffix;
|
2005-04-02 12:21:51 +00:00
|
|
|
} else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
|
2004-08-16 23:15:22 +00:00
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
switch(CE->getOpcode()) {
|
|
|
|
case Instruction::GetElementPtr: {
|
|
|
|
// generate a symbolic expression for the byte address
|
|
|
|
const Constant *ptrVal = CE->getOperand(0);
|
|
|
|
std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
|
2005-02-14 21:40:26 +00:00
|
|
|
if (int64_t Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec)) {
|
|
|
|
if (Offset)
|
|
|
|
O << "(";
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(ptrVal);
|
2005-02-14 21:40:26 +00:00
|
|
|
if (Offset > 0)
|
|
|
|
O << ") + " << Offset;
|
|
|
|
else if (Offset < 0)
|
|
|
|
O << ") - " << -Offset;
|
2004-08-16 23:15:22 +00:00
|
|
|
} else {
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(ptrVal);
|
2004-08-16 23:15:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Instruction::Cast: {
|
|
|
|
// Support only non-converting or widening casts for now, that is, ones
|
|
|
|
// that do not involve a change in value. This assertion is really gross,
|
|
|
|
// and may not even be a complete check.
|
|
|
|
Constant *Op = CE->getOperand(0);
|
|
|
|
const Type *OpTy = Op->getType(), *Ty = CE->getType();
|
|
|
|
|
|
|
|
// Remember, kids, pointers can be losslessly converted back and forth
|
|
|
|
// into 32-bit or wider integers, regardless of signedness. :-P
|
|
|
|
assert(((isa<PointerType>(OpTy)
|
|
|
|
&& (Ty == Type::LongTy || Ty == Type::ULongTy
|
|
|
|
|| Ty == Type::IntTy || Ty == Type::UIntTy))
|
|
|
|
|| (isa<PointerType>(Ty)
|
|
|
|
&& (OpTy == Type::LongTy || OpTy == Type::ULongTy
|
|
|
|
|| OpTy == Type::IntTy || OpTy == Type::UIntTy))
|
|
|
|
|| (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
|
|
|
|
&& OpTy->isLosslesslyConvertibleTo(Ty))))
|
|
|
|
&& "FIXME: Don't yet support this kind of constant cast expr");
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(Op);
|
2004-08-16 23:15:22 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Instruction::Add:
|
|
|
|
O << "(";
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(CE->getOperand(0));
|
2004-08-16 23:15:22 +00:00
|
|
|
O << ") + (";
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(CE->getOperand(1));
|
2004-08-16 23:15:22 +00:00
|
|
|
O << ")";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0 && "Unsupported operator!");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
assert(0 && "Unknown constant value!");
|
|
|
|
}
|
|
|
|
}
|
2004-08-17 06:36:49 +00:00
|
|
|
|
|
|
|
/// toOctal - Convert the low order bits of X into an octal digit.
|
|
|
|
///
|
|
|
|
static inline char toOctal(int X) {
|
|
|
|
return (X&7)+'0';
|
|
|
|
}
|
|
|
|
|
2005-11-10 18:06:33 +00:00
|
|
|
/// printAsCString - Print the specified array as a C compatible string, only if
|
2004-08-17 06:36:49 +00:00
|
|
|
/// the predicate isString is true.
|
|
|
|
///
|
2005-11-10 18:06:33 +00:00
|
|
|
static void printAsCString(std::ostream &O, const ConstantArray *CVA,
|
|
|
|
unsigned LastElt) {
|
2004-08-17 06:36:49 +00:00
|
|
|
assert(CVA->isString() && "Array is not string compatible!");
|
|
|
|
|
|
|
|
O << "\"";
|
2005-11-10 18:06:33 +00:00
|
|
|
for (unsigned i = 0; i != LastElt; ++i) {
|
2005-04-21 22:36:52 +00:00
|
|
|
unsigned char C =
|
2005-01-08 19:59:10 +00:00
|
|
|
(unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
|
2004-08-17 06:36:49 +00:00
|
|
|
|
|
|
|
if (C == '"') {
|
|
|
|
O << "\\\"";
|
|
|
|
} else if (C == '\\') {
|
|
|
|
O << "\\\\";
|
|
|
|
} else if (isprint(C)) {
|
|
|
|
O << C;
|
|
|
|
} else {
|
|
|
|
switch(C) {
|
|
|
|
case '\b': O << "\\b"; break;
|
|
|
|
case '\f': O << "\\f"; break;
|
|
|
|
case '\n': O << "\\n"; break;
|
|
|
|
case '\r': O << "\\r"; break;
|
|
|
|
case '\t': O << "\\t"; break;
|
|
|
|
default:
|
|
|
|
O << '\\';
|
|
|
|
O << toOctal(C >> 6);
|
|
|
|
O << toOctal(C >> 3);
|
|
|
|
O << toOctal(C >> 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
O << "\"";
|
|
|
|
}
|
|
|
|
|
2005-11-21 07:51:36 +00:00
|
|
|
/// EmitGlobalConstant - Print a general LLVM constant to the .s file.
|
2004-08-17 06:36:49 +00:00
|
|
|
///
|
2005-11-21 07:51:36 +00:00
|
|
|
void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
|
2004-08-17 06:36:49 +00:00
|
|
|
const TargetData &TD = TM.getTargetData();
|
|
|
|
|
2004-10-16 18:19:26 +00:00
|
|
|
if (CV->isNullValue() || isa<UndefValue>(CV)) {
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitZeros(TD.getTypeSize(CV->getType()));
|
2004-08-17 06:36:49 +00:00
|
|
|
return;
|
|
|
|
} else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
|
|
|
|
if (CVA->isString()) {
|
2005-11-10 18:06:33 +00:00
|
|
|
unsigned NumElts = CVA->getNumOperands();
|
|
|
|
if (AscizDirective && NumElts &&
|
|
|
|
cast<ConstantInt>(CVA->getOperand(NumElts-1))->getRawValue() == 0) {
|
|
|
|
O << AscizDirective;
|
|
|
|
printAsCString(O, CVA, NumElts-1);
|
|
|
|
} else {
|
|
|
|
O << AsciiDirective;
|
|
|
|
printAsCString(O, CVA, NumElts);
|
|
|
|
}
|
2004-08-17 06:36:49 +00:00
|
|
|
O << "\n";
|
|
|
|
} else { // Not a string. Print the values in successive locations
|
|
|
|
for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitGlobalConstant(CVA->getOperand(i));
|
2004-08-17 06:36:49 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
|
|
|
|
// Print the fields in successive locations. Pad to align if needed!
|
|
|
|
const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType());
|
2005-01-08 19:59:10 +00:00
|
|
|
uint64_t sizeSoFar = 0;
|
2004-08-17 06:36:49 +00:00
|
|
|
for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
|
|
|
|
const Constant* field = CVS->getOperand(i);
|
|
|
|
|
|
|
|
// Check if padding is needed and insert one or more 0s.
|
2005-01-08 19:59:10 +00:00
|
|
|
uint64_t fieldSize = TD.getTypeSize(field->getType());
|
|
|
|
uint64_t padSize = ((i == e-1? cvsLayout->StructSize
|
2004-08-17 06:36:49 +00:00
|
|
|
: cvsLayout->MemberOffsets[i+1])
|
|
|
|
- cvsLayout->MemberOffsets[i]) - fieldSize;
|
|
|
|
sizeSoFar += fieldSize + padSize;
|
|
|
|
|
|
|
|
// Now print the actual field value
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitGlobalConstant(field);
|
2004-08-17 06:36:49 +00:00
|
|
|
|
|
|
|
// Insert the field padding unless it's zero bytes...
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitZeros(padSize);
|
2004-08-17 06:36:49 +00:00
|
|
|
}
|
|
|
|
assert(sizeSoFar == cvsLayout->StructSize &&
|
|
|
|
"Layout of constant struct may be incorrect!");
|
|
|
|
return;
|
|
|
|
} else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
|
|
|
|
// FP Constants are printed as integer constants to avoid losing
|
|
|
|
// precision...
|
|
|
|
double Val = CFP->getValue();
|
|
|
|
if (CFP->getType() == Type::DoubleTy) {
|
2004-08-17 06:48:16 +00:00
|
|
|
if (Data64bitsDirective)
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data64bitsDirective << DoubleToBits(Val) << "\t" << CommentString
|
2004-08-17 21:38:40 +00:00
|
|
|
<< " double value: " << Val << "\n";
|
2004-08-17 06:48:16 +00:00
|
|
|
else if (TD.isBigEndian()) {
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(DoubleToBits(Val) >> 32)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " double most significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(DoubleToBits(Val))
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " double least significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
} else {
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(DoubleToBits(Val))
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " double least significant word " << Val
|
2004-08-17 16:27:05 +00:00
|
|
|
<< "\n";
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(DoubleToBits(Val) >> 32)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " double most significant word " << Val
|
2004-08-17 16:27:05 +00:00
|
|
|
<< "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else {
|
2005-08-17 19:34:49 +00:00
|
|
|
O << Data32bitsDirective << FloatToBits(Val) << "\t" << CommentString
|
2004-08-17 16:27:05 +00:00
|
|
|
<< " float " << Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (CV->getType() == Type::ULongTy || CV->getType() == Type::LongTy) {
|
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
|
|
|
|
uint64_t Val = CI->getRawValue();
|
2005-04-21 22:36:52 +00:00
|
|
|
|
2004-08-17 06:48:16 +00:00
|
|
|
if (Data64bitsDirective)
|
|
|
|
O << Data64bitsDirective << Val << "\n";
|
|
|
|
else if (TD.isBigEndian()) {
|
2004-08-17 06:36:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(Val >> 32)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " Double-word most significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(Val)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " Double-word least significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
} else {
|
|
|
|
O << Data32bitsDirective << unsigned(Val)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " Double-word least significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
O << Data32bitsDirective << unsigned(Val >> 32)
|
2004-08-18 02:22:55 +00:00
|
|
|
<< "\t" << CommentString << " Double-word most significant word "
|
2004-08-17 16:27:05 +00:00
|
|
|
<< Val << "\n";
|
2004-08-17 06:36:49 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
Teach the SelectionDAG ISel how to turn ConstantPacked values into
constant nodes with vector types. Also teach the asm printer how to print
ConstantPacked constant pool entries. This allows us to generate altivec
code such as the following, which adds a vector constantto a packed float.
LCPI1_0: <4 x float> < float 0.0e+0, float 0.0e+0, float 0.0e+0, float 1.0e+0 >
.space 4
.space 4
.space 4
.long 1065353216 ; float 1
.text
.align 4
.globl _foo
_foo:
lis r2, ha16(LCPI1_0)
la r2, lo16(LCPI1_0)(r2)
li r4, 0
lvx v0, r4, r2
lvx v1, r4, r3
vaddfp v0, v1, v0
stvx v0, r4, r3
blr
For the llvm code:
void %foo(<4 x float> * %a) {
entry:
%tmp1 = load <4 x float> * %a;
%tmp2 = add <4 x float> %tmp1, < float 0.0, float 0.0, float 0.0, float 1.0 >
store <4 x float> %tmp2, <4 x float> *%a
ret void
}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24616 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-06 06:18:55 +00:00
|
|
|
} else if (const ConstantPacked *CP = dyn_cast<ConstantPacked>(CV)) {
|
|
|
|
const PackedType *PTy = CP->getType();
|
|
|
|
|
|
|
|
for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
|
|
|
|
EmitGlobalConstant(CP->getOperand(I));
|
|
|
|
|
|
|
|
return;
|
2004-08-17 06:36:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const Type *type = CV->getType();
|
|
|
|
switch (type->getTypeID()) {
|
2005-04-21 22:36:52 +00:00
|
|
|
case Type::BoolTyID:
|
2004-08-17 06:36:49 +00:00
|
|
|
case Type::UByteTyID: case Type::SByteTyID:
|
|
|
|
O << Data8bitsDirective;
|
|
|
|
break;
|
|
|
|
case Type::UShortTyID: case Type::ShortTyID:
|
|
|
|
O << Data16bitsDirective;
|
|
|
|
break;
|
|
|
|
case Type::PointerTyID:
|
2005-02-04 13:47:16 +00:00
|
|
|
if (TD.getPointerSize() == 8) {
|
|
|
|
O << Data64bitsDirective;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
//Fall through for pointer size == int size
|
2004-08-17 06:36:49 +00:00
|
|
|
case Type::UIntTyID: case Type::IntTyID:
|
|
|
|
O << Data32bitsDirective;
|
|
|
|
break;
|
2005-04-21 22:36:52 +00:00
|
|
|
case Type::ULongTyID: case Type::LongTyID:
|
2005-08-08 04:26:32 +00:00
|
|
|
assert(Data64bitsDirective &&"Target cannot handle 64-bit constant exprs!");
|
|
|
|
O << Data64bitsDirective;
|
|
|
|
break;
|
2004-08-17 06:36:49 +00:00
|
|
|
case Type::FloatTyID: case Type::DoubleTyID:
|
|
|
|
assert (0 && "Should have already output floating point constant.");
|
|
|
|
default:
|
|
|
|
assert (0 && "Can't handle printing this type of thing");
|
|
|
|
break;
|
|
|
|
}
|
2005-11-21 07:51:36 +00:00
|
|
|
EmitConstantValueOnly(CV);
|
2004-08-17 06:36:49 +00:00
|
|
|
O << "\n";
|
|
|
|
}
|
2006-01-27 02:10:10 +00:00
|
|
|
|
|
|
|
/// printInlineAsm - This method formats and prints the specified machine
|
|
|
|
/// instruction that is an inline asm.
|
|
|
|
void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
|
2006-02-08 23:41:56 +00:00
|
|
|
O << InlineAsmStart;
|
2006-01-30 23:00:08 +00:00
|
|
|
unsigned NumOperands = MI->getNumOperands();
|
|
|
|
|
|
|
|
// Count the number of register definitions.
|
|
|
|
unsigned NumDefs = 0;
|
|
|
|
for (; MI->getOperand(NumDefs).isDef(); ++NumDefs)
|
|
|
|
assert(NumDefs != NumOperands-1 && "No asm string?");
|
|
|
|
|
|
|
|
assert(MI->getOperand(NumDefs).isExternalSymbol() && "No asm string?");
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
|
|
|
|
// Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
|
2006-01-30 23:00:08 +00:00
|
|
|
const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
|
|
|
|
// The variant of the current asmprinter: FIXME: change.
|
|
|
|
int AsmPrinterVariant = 0;
|
2006-01-30 23:00:08 +00:00
|
|
|
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
int CurVariant = -1; // The number of the {.|.|.} region we are in.
|
|
|
|
const char *LastEmitted = AsmStr; // One past the last character emitted.
|
2006-02-01 01:28:23 +00:00
|
|
|
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
while (*LastEmitted) {
|
|
|
|
switch (*LastEmitted) {
|
|
|
|
default: {
|
|
|
|
// Not a special case, emit the string section literally.
|
|
|
|
const char *LiteralEnd = LastEmitted+1;
|
|
|
|
while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
|
|
|
|
*LiteralEnd != '}' && *LiteralEnd != '$')
|
|
|
|
++LiteralEnd;
|
|
|
|
if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
|
|
|
|
O.write(LastEmitted, LiteralEnd-LastEmitted);
|
|
|
|
LastEmitted = LiteralEnd;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '$': {
|
|
|
|
++LastEmitted; // Consume '$' character.
|
|
|
|
if (*LastEmitted == '$') { // $$ -> $
|
|
|
|
if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
|
|
|
|
O << '$';
|
|
|
|
++LastEmitted; // Consume second '$' character.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasCurlyBraces = false;
|
|
|
|
if (*LastEmitted == '{') { // ${variable}
|
|
|
|
++LastEmitted; // Consume '{' character.
|
|
|
|
HasCurlyBraces = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *IDStart = LastEmitted;
|
|
|
|
char *IDEnd;
|
|
|
|
long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
|
|
|
|
if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
|
|
|
|
std::cerr << "Bad $ operand number in inline asm string: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
LastEmitted = IDEnd;
|
|
|
|
|
2006-02-06 22:17:23 +00:00
|
|
|
char Modifier[2] = { 0, 0 };
|
|
|
|
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
if (HasCurlyBraces) {
|
2006-02-06 22:17:23 +00:00
|
|
|
// If we have curly braces, check for a modifier character. This
|
|
|
|
// supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
|
|
|
|
if (*LastEmitted == ':') {
|
|
|
|
++LastEmitted; // Consume ':' character.
|
|
|
|
if (*LastEmitted == 0) {
|
|
|
|
std::cerr << "Bad ${:} expression in inline asm string: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Modifier[0] = *LastEmitted;
|
|
|
|
++LastEmitted; // Consume modifier character.
|
|
|
|
}
|
|
|
|
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
if (*LastEmitted != '}') {
|
|
|
|
std::cerr << "Bad ${} expression in inline asm string: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
++LastEmitted; // Consume '}' character.
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((unsigned)Val >= NumOperands-1) {
|
|
|
|
std::cerr << "Invalid $ operand number in inline asm string: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2006-02-23 19:21:04 +00:00
|
|
|
// Okay, we finally have a value number. Ask the target to print this
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
// operand!
|
2006-02-23 19:21:04 +00:00
|
|
|
if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
|
|
|
|
unsigned OpNo = 1;
|
|
|
|
|
|
|
|
// Scan to find the machine operand number for the operand.
|
2006-02-24 19:50:58 +00:00
|
|
|
for (; Val; --Val) {
|
|
|
|
unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
|
|
|
|
OpNo += (OpFlags >> 3) + 1;
|
|
|
|
}
|
2006-02-23 19:21:04 +00:00
|
|
|
|
2006-02-24 20:21:58 +00:00
|
|
|
unsigned OpFlags = MI->getOperand(OpNo).getImmedValue();
|
2006-02-23 19:21:04 +00:00
|
|
|
++OpNo; // Skip over the ID number.
|
2006-02-24 20:21:58 +00:00
|
|
|
|
|
|
|
bool Error;
|
|
|
|
AsmPrinter *AP = const_cast<AsmPrinter*>(this);
|
|
|
|
if ((OpFlags & 7) == 4 /*ADDR MODE*/) {
|
|
|
|
Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
|
|
|
|
Modifier[0] ? Modifier : 0);
|
|
|
|
} else {
|
|
|
|
Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
|
|
|
|
Modifier[0] ? Modifier : 0);
|
|
|
|
}
|
|
|
|
if (Error) {
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
std::cerr << "Invalid operand found in inline asm: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
MI->dump();
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-02-23 19:21:04 +00:00
|
|
|
}
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '{':
|
|
|
|
++LastEmitted; // Consume '{' character.
|
|
|
|
if (CurVariant != -1) {
|
|
|
|
std::cerr << "Nested variants found in inline asm string: '"
|
|
|
|
<< AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
CurVariant = 0; // We're in the first variant now.
|
|
|
|
break;
|
|
|
|
case '|':
|
|
|
|
++LastEmitted; // consume '|' character.
|
|
|
|
if (CurVariant == -1) {
|
|
|
|
std::cerr << "Found '|' character outside of variant in inline asm "
|
|
|
|
<< "string: '" << AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
++CurVariant; // We're in the next variant.
|
|
|
|
break;
|
|
|
|
case '}':
|
|
|
|
++LastEmitted; // consume '}' character.
|
|
|
|
if (CurVariant == -1) {
|
|
|
|
std::cerr << "Found '}' character outside of variant in inline asm "
|
|
|
|
<< "string: '" << AsmStr << "'\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
CurVariant = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-02-08 23:41:56 +00:00
|
|
|
O << "\n" << InlineAsmEnd;
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
|
|
|
|
/// instruction, using the specified assembler variant. Targets should
|
|
|
|
/// overried this to format as appropriate.
|
|
|
|
bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
2006-02-06 22:17:23 +00:00
|
|
|
unsigned AsmVariant, const char *ExtraCode) {
|
Implement smart printing of inline asm strings, handling variants and
substituted operands. For this testcase:
int %test(int %A, int %B) {
%C = call int asm "xyz $0, $1, $2", "=r,r,r"(int %A, int %B)
ret int %C
}
we now emit:
_test:
or r2, r3, r3
or r3, r4, r4
xyz r2, r2, r3 ;; look here
or r3, r2, r2
blr
... note the substituted operands. :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25886 91177308-0d34-0410-b5e6-96231b3b80d8
2006-02-01 22:41:11 +00:00
|
|
|
// Target doesn't support this yet!
|
|
|
|
return true;
|
2006-01-27 02:10:10 +00:00
|
|
|
}
|
2006-02-24 20:21:58 +00:00
|
|
|
|
|
|
|
bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant,
|
|
|
|
const char *ExtraCode) {
|
|
|
|
// Target doesn't support this yet!
|
|
|
|
return true;
|
|
|
|
}
|