diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-12-10 02:32:19 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-12-10 02:32:19 +0000 |
| commit | 0b77319742c954e8a79bacf3f280242a06f59dbe (patch) | |
| tree | d8b5f1d54539a1be6ac65188e026b9c819b54d3d /llvm/lib/Target/X86/X86JITInfo.h | |
| parent | a726c1763a44098710c6d4819abac3f148158ba8 (diff) | |
| download | bcm5719-llvm-0b77319742c954e8a79bacf3f280242a06f59dbe.tar.gz bcm5719-llvm-0b77319742c954e8a79bacf3f280242a06f59dbe.zip | |
Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin.
llvm-svn: 60828
Diffstat (limited to 'llvm/lib/Target/X86/X86JITInfo.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86JITInfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86JITInfo.h b/llvm/lib/Target/X86/X86JITInfo.h index dd266364333..ed660b0b585 100644 --- a/llvm/lib/Target/X86/X86JITInfo.h +++ b/llvm/lib/Target/X86/X86JITInfo.h @@ -22,7 +22,7 @@ namespace llvm { class X86JITInfo : public TargetJITInfo { X86TargetMachine &TM; - intptr_t PICBase; + uintptr_t PICBase; char* TLSOffset; public: explicit X86JITInfo(X86TargetMachine &tm) : TM(tm) { @@ -51,7 +51,7 @@ namespace llvm { /// getPICJumpTableEntry - Returns the value of the jumptable entry for the /// specific basic block. - virtual intptr_t getPICJumpTableEntry(intptr_t BB, intptr_t JTBase); + virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase); /// getLazyResolverFunction - Expose the lazy resolver to the JIT. virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn); @@ -69,8 +69,8 @@ namespace llvm { /// setPICBase / getPICBase - Getter / setter of PICBase, used to compute /// PIC jumptable entry. - void setPICBase(intptr_t Base) { PICBase = Base; } - intptr_t getPICBase() const { return PICBase; } + void setPICBase(uintptr_t Base) { PICBase = Base; } + uintptr_t getPICBase() const { return PICBase; } }; } |

