mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
0f07707270
.set PCRELV0, (LJTI1_0_0-(LPCRELL0+4)) LPCRELL0: add r1, pc, #PCRELV0 This is not legal since add r1, pc, #c requires the constant be a multiple of 4. Do the following instead: .set PCRELV0, (LJTI1_0_0-(LPCRELL0+4)) LPCRELL0: mov r1, #PCRELV0 add r1, pc - In thumb mode, it's not possible to use .set generate a pc relative stub address. The stub is ARM code which is in a different section from the thumb code. Load the value from a constpool instead. - Some asm printing clean up. llvm-svn: 33664
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
//===- ARMConstantPoolValue.cpp - ARM constantpool value --------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Evan Cheng and 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"
|
|
using namespace llvm;
|
|
|
|
ARMConstantPoolValue::ARMConstantPoolValue(GlobalValue *gv, unsigned id,
|
|
ARMCP::ARMCPKind k,
|
|
unsigned char PCAdj)
|
|
: MachineConstantPoolValue((const Type*)gv->getType()),
|
|
GV(gv), S(NULL), LabelId(id), Kind(k), PCAdjust(PCAdj) {}
|
|
|
|
ARMConstantPoolValue::ARMConstantPoolValue(const char *s, unsigned id,
|
|
ARMCP::ARMCPKind k,
|
|
unsigned char PCAdj)
|
|
: MachineConstantPoolValue((const Type*)Type::Int32Ty),
|
|
GV(NULL), S(s), LabelId(id), Kind(k), PCAdjust(PCAdj) {}
|
|
|
|
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(std::ostream &O) const {
|
|
if (GV)
|
|
O << GV->getName();
|
|
else
|
|
O << S;
|
|
if (isNonLazyPointer()) O << "$non_lazy_ptr";
|
|
else if (isStub()) O << "$stub";
|
|
if (PCAdjust != 0) O << "-(LPIC" << LabelId << "+"
|
|
<< (unsigned)PCAdjust << ")";
|
|
}
|