summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMConstantPoolValue.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-01-30 20:37:08 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-01-30 20:37:08 +0000
commit83f35170faac1b38ee650e39cf09805f71248af8 (patch)
tree8dcdcfc83f72d479248e190c5eb56aca75057e7c /llvm/lib/Target/ARM/ARMConstantPoolValue.h
parent5301e7c60569c5ab22b113a5828fdb348796a680 (diff)
downloadbcm5719-llvm-83f35170faac1b38ee650e39cf09805f71248af8.tar.gz
bcm5719-llvm-83f35170faac1b38ee650e39cf09805f71248af8.zip
- Fix codegen for pc relative constant (e.g. JT) in thumb mode:
.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
Diffstat (limited to 'llvm/lib/Target/ARM/ARMConstantPoolValue.h')
-rw-r--r--llvm/lib/Target/ARM/ARMConstantPoolValue.h21
1 files changed, 18 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantPoolValue.h b/llvm/lib/Target/ARM/ARMConstantPoolValue.h
index a9143d4ddc0..a614bec60fe 100644
--- a/llvm/lib/Target/ARM/ARMConstantPoolValue.h
+++ b/llvm/lib/Target/ARM/ARMConstantPoolValue.h
@@ -18,23 +18,38 @@
namespace llvm {
+namespace ARMCP {
+ enum ARMCPKind {
+ CPValue,
+ CPNonLazyPtr,
+ CPStub
+ };
+}
+
/// ARMConstantPoolValue - ARM specific constantpool value. This is used to
/// represent PC relative displacement between the address of the load
/// instruction and the global value being loaded, i.e. (&GV-(LPIC+8)).
class ARMConstantPoolValue : public MachineConstantPoolValue {
GlobalValue *GV; // GlobalValue being loaded.
+ const char *S; // ExtSymbol being loaded.
unsigned LabelId; // Label id of the load.
- bool isNonLazyPtr; // True if loading a Mac OS X non_lazy_ptr stub.
+ ARMCP::ARMCPKind Kind; // non_lazy_ptr or stub?
unsigned char PCAdjust; // Extra adjustment if constantpool is pc relative.
// 8 for ARM, 4 for Thumb.
public:
- ARMConstantPoolValue(GlobalValue *gv, unsigned id, bool isNonLazy = false,
+ ARMConstantPoolValue(GlobalValue *gv, unsigned id,
+ ARMCP::ARMCPKind Kind = ARMCP::CPValue,
+ unsigned char PCAdj = 0);
+ ARMConstantPoolValue(const char *s, unsigned id,
+ ARMCP::ARMCPKind Kind = ARMCP::CPValue,
unsigned char PCAdj = 0);
GlobalValue *getGV() const { return GV; }
+ const char *getSymbol() const { return S; }
unsigned getLabelId() const { return LabelId; }
- bool isNonLazyPointer() const { return isNonLazyPtr; }
+ bool isNonLazyPointer() const { return Kind == ARMCP::CPNonLazyPtr; }
+ bool isStub() const { return Kind == ARMCP::CPStub; }
unsigned char getPCAdjustment() const { return PCAdjust; }
virtual int getExistingMachineCPValue(MachineConstantPool *CP,
OpenPOWER on IntegriCloud