mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
944fac71e0
use raw_ostream instead of std::ostream. Among other goodness, this speeds up llvm-dis of kc++ with a release build from 0.85s to 0.49s (88% faster). Other interesting changes: 1) This makes Value::print be non-virtual. 2) AP[S]Int and ConstantRange can no longer print to ostream directly, use raw_ostream instead. 3) This fixes a bug in raw_os_ostream where it didn't flush itself when destroyed. 4) This adds a new SDNode::print method, instead of only allowing "dump". A lot of APIs have both std::ostream and raw_ostream versions, it would be useful to go through and systematically anihilate the std::ostream versions. This passes dejagnu, but there may be minor fallout, plz let me know if so and I'll fix it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55263 91177308-0d34-0410-b5e6-96231b3b80d8
92 lines
3.2 KiB
C++
92 lines
3.2 KiB
C++
//===- ARMConstantPoolValue.cpp - ARM constantpool value --------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the ARM specific constantpool value class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "ARMConstantPoolValue.h"
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
#include "llvm/GlobalValue.h"
|
|
#include "llvm/Type.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
using namespace llvm;
|
|
|
|
ARMConstantPoolValue::ARMConstantPoolValue(GlobalValue *gv, unsigned id,
|
|
ARMCP::ARMCPKind k,
|
|
unsigned char PCAdj,
|
|
const char *Modif,
|
|
bool AddCA)
|
|
: MachineConstantPoolValue((const Type*)gv->getType()),
|
|
GV(gv), S(NULL), LabelId(id), Kind(k), PCAdjust(PCAdj),
|
|
Modifier(Modif), AddCurrentAddress(AddCA) {}
|
|
|
|
ARMConstantPoolValue::ARMConstantPoolValue(const char *s, unsigned id,
|
|
ARMCP::ARMCPKind k,
|
|
unsigned char PCAdj,
|
|
const char *Modif,
|
|
bool AddCA)
|
|
: MachineConstantPoolValue((const Type*)Type::Int32Ty),
|
|
GV(NULL), S(s), LabelId(id), Kind(k), PCAdjust(PCAdj),
|
|
Modifier(Modif), AddCurrentAddress(AddCA) {}
|
|
|
|
ARMConstantPoolValue::ARMConstantPoolValue(GlobalValue *gv,
|
|
ARMCP::ARMCPKind k,
|
|
const char *Modif)
|
|
: MachineConstantPoolValue((const Type*)Type::Int32Ty),
|
|
GV(gv), S(NULL), LabelId(0), Kind(k), PCAdjust(0),
|
|
Modifier(Modif) {}
|
|
|
|
int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP,
|
|
unsigned Alignment) {
|
|
unsigned AlignMask = (1 << Alignment)-1;
|
|
const std::vector<MachineConstantPoolEntry> Constants = CP->getConstants();
|
|
for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
|
|
if (Constants[i].isMachineConstantPoolEntry() &&
|
|
(Constants[i].Offset & AlignMask) == 0) {
|
|
ARMConstantPoolValue *CPV =
|
|
(ARMConstantPoolValue *)Constants[i].Val.MachineCPVal;
|
|
if (CPV->GV == GV &&
|
|
CPV->S == S &&
|
|
CPV->LabelId == LabelId &&
|
|
CPV->Kind == Kind &&
|
|
CPV->PCAdjust == PCAdjust)
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void
|
|
ARMConstantPoolValue::AddSelectionDAGCSEId(FoldingSetNodeID &ID) {
|
|
ID.AddPointer(GV);
|
|
ID.AddPointer(S);
|
|
ID.AddInteger(LabelId);
|
|
ID.AddInteger((unsigned)Kind);
|
|
ID.AddInteger(PCAdjust);
|
|
}
|
|
|
|
void ARMConstantPoolValue::print(raw_ostream &O) const {
|
|
if (GV)
|
|
O << GV->getName();
|
|
else
|
|
O << S;
|
|
if (isNonLazyPointer()) O << "$non_lazy_ptr";
|
|
else if (isStub()) O << "$stub";
|
|
if (Modifier) O << "(" << Modifier << ")";
|
|
if (PCAdjust != 0) {
|
|
O << "-(LPIC" << LabelId << "+"
|
|
<< (unsigned)PCAdjust;
|
|
if (AddCurrentAddress)
|
|
O << "-.";
|
|
O << ")";
|
|
}
|
|
}
|