remove the last uses of Config/alloca.h
[oota-llvm.git] / lib / Target / X86 / X86JITInfo.cpp
1 //===-- X86JITInfo.cpp - Implement the JIT interfaces for the X86 target --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the JIT interfaces for the X86 target.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "jit"
15 #include "X86JITInfo.h"
16 #include "X86Relocations.h"
17 #include "X86Subtarget.h"
18 #include "llvm/Function.h"
19 #include "llvm/Support/Compiler.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include <cstdlib>
22 #include <cstring>
23 using namespace llvm;
24
25 // Determine the platform we're running on
26 #if defined (__x86_64__) || defined (_M_AMD64)
27 # define X86_64_JIT
28 #elif defined(__i386__) || defined(i386) || defined(_M_IX86)
29 # define X86_32_JIT
30 #endif
31
32 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
33   unsigned char *OldByte = (unsigned char *)Old;
34   *OldByte++ = 0xE9;                // Emit JMP opcode.
35   unsigned *OldWord = (unsigned *)OldByte;
36   unsigned NewAddr = (intptr_t)New;
37   unsigned OldAddr = (intptr_t)OldWord;
38   *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
39 }
40
41
42 /// JITCompilerFunction - This contains the address of the JIT function used to
43 /// compile a function lazily.
44 static TargetJITInfo::JITCompilerFn JITCompilerFunction;
45
46 // Get the ASMPREFIX for the current host.  This is often '_'.
47 #ifndef __USER_LABEL_PREFIX__
48 #define __USER_LABEL_PREFIX__
49 #endif
50 #define GETASMPREFIX2(X) #X
51 #define GETASMPREFIX(X) GETASMPREFIX2(X)
52 #define ASMPREFIX GETASMPREFIX(__USER_LABEL_PREFIX__)
53
54 // Check if building with -fPIC
55 #if defined(__PIC__) && __PIC__ && defined(__linux__)
56 #define ASMCALLSUFFIX "@PLT"
57 #else
58 #define ASMCALLSUFFIX
59 #endif
60
61 // For ELF targets, use a .size and .type directive, to let tools
62 // know the extent of functions defined in assembler.
63 #if defined(__ELF__)
64 # define SIZE(sym) ".size " #sym ", . - " #sym "\n"
65 # define TYPE_FUNCTION(sym) ".type " #sym ", @function\n"
66 #else
67 # define SIZE(sym)
68 # define TYPE_FUNCTION(sym)
69 #endif
70
71 // Provide a convenient way for disabling usage of CFI directives.
72 // This is needed for old/broken assemblers (for example, gas on
73 // Darwin is pretty old and doesn't support these directives)
74 #if defined(__APPLE__)
75 # define CFI(x)
76 #else
77 // FIXME: Disable this until we really want to use it. Also, we will
78 //        need to add some workarounds for compilers, which support
79 //        only subset of these directives.
80 # define CFI(x)
81 #endif
82
83 // Provide a wrapper for X86CompilationCallback2 that saves non-traditional
84 // callee saved registers, for the fastcc calling convention.
85 extern "C" {
86 #if defined(X86_64_JIT)
87 # ifndef _MSC_VER
88   // No need to save EAX/EDX for X86-64.
89   void X86CompilationCallback(void);
90   asm(
91     ".text\n"
92     ".align 8\n"
93     ".globl " ASMPREFIX "X86CompilationCallback\n"
94     TYPE_FUNCTION(X86CompilationCallback)
95   ASMPREFIX "X86CompilationCallback:\n"
96     CFI(".cfi_startproc\n")
97     // Save RBP
98     "pushq   %rbp\n"
99     CFI(".cfi_def_cfa_offset 16\n")
100     CFI(".cfi_offset %rbp, -16\n")
101     // Save RSP
102     "movq    %rsp, %rbp\n"
103     CFI(".cfi_def_cfa_register %rbp\n")
104     // Save all int arg registers
105     "pushq   %rdi\n"
106     CFI(".cfi_rel_offset %rdi, 0\n")
107     "pushq   %rsi\n"
108     CFI(".cfi_rel_offset %rsi, 8\n")
109     "pushq   %rdx\n"
110     CFI(".cfi_rel_offset %rdx, 16\n")
111     "pushq   %rcx\n"
112     CFI(".cfi_rel_offset %rcx, 24\n")
113     "pushq   %r8\n"
114     CFI(".cfi_rel_offset %r8, 32\n")
115     "pushq   %r9\n"
116     CFI(".cfi_rel_offset %r9, 40\n")
117     // Align stack on 16-byte boundary. ESP might not be properly aligned
118     // (8 byte) if this is called from an indirect stub.
119     "andq    $-16, %rsp\n"
120     // Save all XMM arg registers
121     "subq    $128, %rsp\n"
122     "movaps  %xmm0, (%rsp)\n"
123     "movaps  %xmm1, 16(%rsp)\n"
124     "movaps  %xmm2, 32(%rsp)\n"
125     "movaps  %xmm3, 48(%rsp)\n"
126     "movaps  %xmm4, 64(%rsp)\n"
127     "movaps  %xmm5, 80(%rsp)\n"
128     "movaps  %xmm6, 96(%rsp)\n"
129     "movaps  %xmm7, 112(%rsp)\n"
130     // JIT callee
131     "movq    %rbp, %rdi\n"    // Pass prev frame and return address
132     "movq    8(%rbp), %rsi\n"
133     "call    " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
134     // Restore all XMM arg registers
135     "movaps  112(%rsp), %xmm7\n"
136     "movaps  96(%rsp), %xmm6\n"
137     "movaps  80(%rsp), %xmm5\n"
138     "movaps  64(%rsp), %xmm4\n"
139     "movaps  48(%rsp), %xmm3\n"
140     "movaps  32(%rsp), %xmm2\n"
141     "movaps  16(%rsp), %xmm1\n"
142     "movaps  (%rsp), %xmm0\n"
143     // Restore RSP
144     "movq    %rbp, %rsp\n"
145     CFI(".cfi_def_cfa_register %rsp\n")
146     // Restore all int arg registers
147     "subq    $48, %rsp\n"
148     CFI(".cfi_adjust_cfa_offset 48\n")
149     "popq    %r9\n"
150     CFI(".cfi_adjust_cfa_offset -8\n")
151     CFI(".cfi_restore %r9\n")
152     "popq    %r8\n"
153     CFI(".cfi_adjust_cfa_offset -8\n")
154     CFI(".cfi_restore %r8\n")
155     "popq    %rcx\n"
156     CFI(".cfi_adjust_cfa_offset -8\n")
157     CFI(".cfi_restore %rcx\n")
158     "popq    %rdx\n"
159     CFI(".cfi_adjust_cfa_offset -8\n")
160     CFI(".cfi_restore %rdx\n")
161     "popq    %rsi\n"
162     CFI(".cfi_adjust_cfa_offset -8\n")
163     CFI(".cfi_restore %rsi\n")
164     "popq    %rdi\n"
165     CFI(".cfi_adjust_cfa_offset -8\n")
166     CFI(".cfi_restore %rdi\n")
167     // Restore RBP
168     "popq    %rbp\n"
169     CFI(".cfi_adjust_cfa_offset -8\n")
170     CFI(".cfi_restore %rbp\n")
171     "ret\n"
172     CFI(".cfi_endproc\n")
173     SIZE(X86CompilationCallback)
174   );
175 # else
176   // No inline assembler support on this platform. The routine is in external
177   // file.
178   void X86CompilationCallback();
179
180 # endif
181 #elif defined (X86_32_JIT)
182 # ifndef _MSC_VER
183   void X86CompilationCallback(void);
184   asm(
185     ".text\n"
186     ".align 8\n"
187     ".globl " ASMPREFIX "X86CompilationCallback\n"
188     TYPE_FUNCTION(X86CompilationCallback)
189   ASMPREFIX "X86CompilationCallback:\n"
190     CFI(".cfi_startproc\n")
191     "pushl   %ebp\n"
192     CFI(".cfi_def_cfa_offset 8\n")
193     CFI(".cfi_offset %ebp, -8\n")
194     "movl    %esp, %ebp\n"    // Standard prologue
195     CFI(".cfi_def_cfa_register %ebp\n")
196     "pushl   %eax\n"
197     CFI(".cfi_rel_offset %eax, 0\n")
198     "pushl   %edx\n"          // Save EAX/EDX/ECX
199     CFI(".cfi_rel_offset %edx, 4\n")
200     "pushl   %ecx\n"
201     CFI(".cfi_rel_offset %ecx, 8\n")
202 #  if defined(__APPLE__)
203     "andl    $-16, %esp\n"    // Align ESP on 16-byte boundary
204 #  endif
205     "subl    $16, %esp\n"
206     "movl    4(%ebp), %eax\n" // Pass prev frame and return address
207     "movl    %eax, 4(%esp)\n"
208     "movl    %ebp, (%esp)\n"
209     "call    " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
210     "movl    %ebp, %esp\n"    // Restore ESP
211     CFI(".cfi_def_cfa_register %esp\n")
212     "subl    $12, %esp\n"
213     CFI(".cfi_adjust_cfa_offset 12\n")
214     "popl    %ecx\n"
215     CFI(".cfi_adjust_cfa_offset -4\n")
216     CFI(".cfi_restore %ecx\n")
217     "popl    %edx\n"
218     CFI(".cfi_adjust_cfa_offset -4\n")
219     CFI(".cfi_restore %edx\n")
220     "popl    %eax\n"
221     CFI(".cfi_adjust_cfa_offset -4\n")
222     CFI(".cfi_restore %eax\n")
223     "popl    %ebp\n"
224     CFI(".cfi_adjust_cfa_offset -4\n")
225     CFI(".cfi_restore %ebp\n")
226     "ret\n"
227     CFI(".cfi_endproc\n")
228     SIZE(X86CompilationCallback)
229   );
230
231   // Same as X86CompilationCallback but also saves XMM argument registers.
232   void X86CompilationCallback_SSE(void);
233   asm(
234     ".text\n"
235     ".align 8\n"
236     ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
237     TYPE_FUNCTION(X86CompilationCallback_SSE)
238   ASMPREFIX "X86CompilationCallback_SSE:\n"
239     CFI(".cfi_startproc\n")
240     "pushl   %ebp\n"
241     CFI(".cfi_def_cfa_offset 8\n")
242     CFI(".cfi_offset %ebp, -8\n")
243     "movl    %esp, %ebp\n"    // Standard prologue
244     CFI(".cfi_def_cfa_register %ebp\n")
245     "pushl   %eax\n"
246     CFI(".cfi_rel_offset %eax, 0\n")
247     "pushl   %edx\n"          // Save EAX/EDX/ECX
248     CFI(".cfi_rel_offset %edx, 4\n")
249     "pushl   %ecx\n"
250     CFI(".cfi_rel_offset %ecx, 8\n")
251     "andl    $-16, %esp\n"    // Align ESP on 16-byte boundary
252     // Save all XMM arg registers
253     "subl    $64, %esp\n"
254     // FIXME: provide frame move information for xmm registers.
255     // This can be tricky, because CFA register is ebp (unaligned)
256     // and we need to produce offsets relative to it.
257     "movaps  %xmm0, (%esp)\n"
258     "movaps  %xmm1, 16(%esp)\n"
259     "movaps  %xmm2, 32(%esp)\n"
260     "movaps  %xmm3, 48(%esp)\n"
261     "subl    $16, %esp\n"
262     "movl    4(%ebp), %eax\n" // Pass prev frame and return address
263     "movl    %eax, 4(%esp)\n"
264     "movl    %ebp, (%esp)\n"
265     "call    " ASMPREFIX "X86CompilationCallback2" ASMCALLSUFFIX "\n"
266     "addl    $16, %esp\n"
267     "movaps  48(%esp), %xmm3\n"
268     CFI(".cfi_restore %xmm3\n")
269     "movaps  32(%esp), %xmm2\n"
270     CFI(".cfi_restore %xmm2\n")
271     "movaps  16(%esp), %xmm1\n"
272     CFI(".cfi_restore %xmm1\n")
273     "movaps  (%esp), %xmm0\n"
274     CFI(".cfi_restore %xmm0\n")
275     "movl    %ebp, %esp\n"    // Restore ESP
276     CFI(".cfi_def_cfa_register esp\n")
277     "subl    $12, %esp\n"
278     CFI(".cfi_adjust_cfa_offset 12\n")
279     "popl    %ecx\n"
280     CFI(".cfi_adjust_cfa_offset -4\n")
281     CFI(".cfi_restore %ecx\n")
282     "popl    %edx\n"
283     CFI(".cfi_adjust_cfa_offset -4\n")
284     CFI(".cfi_restore %edx\n")
285     "popl    %eax\n"
286     CFI(".cfi_adjust_cfa_offset -4\n")
287     CFI(".cfi_restore %eax\n")
288     "popl    %ebp\n"
289     CFI(".cfi_adjust_cfa_offset -4\n")
290     CFI(".cfi_restore %ebp\n")
291     "ret\n"
292     CFI(".cfi_endproc\n")
293     SIZE(X86CompilationCallback_SSE)
294   );
295 # else
296   void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
297
298   _declspec(naked) void X86CompilationCallback(void) {
299     __asm {
300       push  ebp
301       mov   ebp, esp
302       push  eax
303       push  edx
304       push  ecx
305       and   esp, -16
306       mov   eax, dword ptr [ebp+4]
307       mov   dword ptr [esp+4], eax
308       mov   dword ptr [esp], ebp
309       call  X86CompilationCallback2
310       mov   esp, ebp
311       sub   esp, 12
312       pop   ecx
313       pop   edx
314       pop   eax
315       pop   ebp
316       ret
317     }
318   }
319
320 # endif // _MSC_VER
321
322 #else // Not an i386 host
323   void X86CompilationCallback() {
324     llvm_unreachable("Cannot call X86CompilationCallback() on a non-x86 arch!");
325   }
326 #endif
327 }
328
329 /// X86CompilationCallback2 - This is the target-specific function invoked by the
330 /// function stub when we did not know the real target of a call.  This function
331 /// must locate the start of the stub or call site and pass it into the JIT
332 /// compiler function.
333 extern "C" void ATTRIBUTE_USED
334 X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr) {
335   intptr_t *RetAddrLoc = &StackPtr[1];
336   assert(*RetAddrLoc == RetAddr &&
337          "Could not find return address on the stack!");
338
339   // It's a stub if there is an interrupt marker after the call.
340   bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;
341
342   // The call instruction should have pushed the return value onto the stack...
343 #if defined (X86_64_JIT)
344   RetAddr--;     // Backtrack to the reference itself...
345 #else
346   RetAddr -= 4;  // Backtrack to the reference itself...
347 #endif
348
349 #if 0
350   DEBUG(errs() << "In callback! Addr=" << (void*)RetAddr
351                << " ESP=" << (void*)StackPtr
352                << ": Resolving call to function: "
353                << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n");
354 #endif
355
356   // Sanity check to make sure this really is a call instruction.
357 #if defined (X86_64_JIT)
358   assert(((unsigned char*)RetAddr)[-2] == 0x41 &&"Not a call instr!");
359   assert(((unsigned char*)RetAddr)[-1] == 0xFF &&"Not a call instr!");
360 #else
361   assert(((unsigned char*)RetAddr)[-1] == 0xE8 &&"Not a call instr!");
362 #endif
363
364   intptr_t NewVal = (intptr_t)JITCompilerFunction((void*)RetAddr);
365
366   // Rewrite the call target... so that we don't end up here every time we
367   // execute the call.
368 #if defined (X86_64_JIT)
369   if (!isStub)
370     *(intptr_t *)(RetAddr - 0xa) = NewVal;
371 #else
372   *(intptr_t *)RetAddr = (intptr_t)(NewVal-RetAddr-4);
373 #endif
374
375   if (isStub) {
376     // If this is a stub, rewrite the call into an unconditional branch
377     // instruction so that two return addresses are not pushed onto the stack
378     // when the requested function finally gets called.  This also makes the
379     // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
380 #if defined (X86_64_JIT)
381     // If the target address is within 32-bit range of the stub, use a
382     // PC-relative branch instead of loading the actual address.  (This is
383     // considerably shorter than the 64-bit immediate load already there.)
384     // We assume here intptr_t is 64 bits.
385     intptr_t diff = NewVal-RetAddr+7;
386     if (diff >= -2147483648LL && diff <= 2147483647LL) {
387       *(unsigned char*)(RetAddr-0xc) = 0xE9;
388       *(intptr_t *)(RetAddr-0xb) = diff & 0xffffffff;
389     } else {
390       *(intptr_t *)(RetAddr - 0xa) = NewVal;
391       ((unsigned char*)RetAddr)[0] = (2 | (4 << 3) | (3 << 6));
392     }
393 #else
394     ((unsigned char*)RetAddr)[-1] = 0xE9;
395 #endif
396   }
397
398   // Change the return address to reexecute the call instruction...
399 #if defined (X86_64_JIT)
400   *RetAddrLoc -= 0xd;
401 #else
402   *RetAddrLoc -= 5;
403 #endif
404 }
405
406 TargetJITInfo::LazyResolverFn
407 X86JITInfo::getLazyResolverFunction(JITCompilerFn F) {
408   JITCompilerFunction = F;
409
410 #if defined (X86_32_JIT) && !defined (_MSC_VER)
411   unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
412   union {
413     unsigned u[3];
414     char     c[12];
415   } text;
416
417   if (!X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1)) {
418     // FIXME: support for AMD family of processors.
419     if (memcmp(text.c, "GenuineIntel", 12) == 0) {
420       X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
421       if ((EDX >> 25) & 0x1)
422         return X86CompilationCallback_SSE;
423     }
424   }
425 #endif
426
427   return X86CompilationCallback;
428 }
429
430 void *X86JITInfo::emitGlobalValueIndirectSym(const GlobalValue* GV, void *ptr,
431                                              JITCodeEmitter &JCE) {
432 #if defined (X86_64_JIT)
433   JCE.startGVStub(GV, 8, 8);
434   JCE.emitWordLE((unsigned)(intptr_t)ptr);
435   JCE.emitWordLE((unsigned)(((intptr_t)ptr) >> 32));
436 #else
437   JCE.startGVStub(GV, 4, 4);
438   JCE.emitWordLE((intptr_t)ptr);
439 #endif
440   return JCE.finishGVStub(GV);
441 }
442
443 void *X86JITInfo::emitFunctionStub(const Function* F, void *Fn,
444                                    JITCodeEmitter &JCE) {
445   // Note, we cast to intptr_t here to silence a -pedantic warning that 
446   // complains about casting a function pointer to a normal pointer.
447 #if defined (X86_32_JIT) && !defined (_MSC_VER)
448   bool NotCC = (Fn != (void*)(intptr_t)X86CompilationCallback &&
449                 Fn != (void*)(intptr_t)X86CompilationCallback_SSE);
450 #else
451   bool NotCC = Fn != (void*)(intptr_t)X86CompilationCallback;
452 #endif
453   if (NotCC) {
454 #if defined (X86_64_JIT)
455     JCE.startGVStub(F, 13, 4);
456     JCE.emitByte(0x49);          // REX prefix
457     JCE.emitByte(0xB8+2);        // movabsq r10
458     JCE.emitWordLE((unsigned)(intptr_t)Fn);
459     JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
460     JCE.emitByte(0x41);          // REX prefix
461     JCE.emitByte(0xFF);          // jmpq *r10
462     JCE.emitByte(2 | (4 << 3) | (3 << 6));
463 #else
464     JCE.startGVStub(F, 5, 4);
465     JCE.emitByte(0xE9);
466     JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
467 #endif
468     return JCE.finishGVStub(F);
469   }
470
471 #if defined (X86_64_JIT)
472   JCE.startGVStub(F, 14, 4);
473   JCE.emitByte(0x49);          // REX prefix
474   JCE.emitByte(0xB8+2);        // movabsq r10
475   JCE.emitWordLE((unsigned)(intptr_t)Fn);
476   JCE.emitWordLE((unsigned)(((intptr_t)Fn) >> 32));
477   JCE.emitByte(0x41);          // REX prefix
478   JCE.emitByte(0xFF);          // callq *r10
479   JCE.emitByte(2 | (2 << 3) | (3 << 6));
480 #else
481   JCE.startGVStub(F, 6, 4);
482   JCE.emitByte(0xE8);   // Call with 32 bit pc-rel destination...
483
484   JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
485 #endif
486
487   JCE.emitByte(0xCD);   // Interrupt - Just a marker identifying the stub!
488   return JCE.finishGVStub(F);
489 }
490
491 void X86JITInfo::emitFunctionStubAtAddr(const Function* F, void *Fn, void *Stub,
492                                         JITCodeEmitter &JCE) {
493   // Note, we cast to intptr_t here to silence a -pedantic warning that 
494   // complains about casting a function pointer to a normal pointer.
495   JCE.startGVStub(F, Stub, 5);
496   JCE.emitByte(0xE9);
497 #if defined (X86_64_JIT) && !defined (NDEBUG)
498   // Yes, we need both of these casts, or some broken versions of GCC (4.2.4)
499   // get the signed-ness of the expression wrong.  Go figure.
500   intptr_t Displacement = (intptr_t)Fn - (intptr_t)JCE.getCurrentPCValue() - 5;
501   assert(((Displacement << 32) >> 32) == Displacement
502          && "PIC displacement does not fit in displacement field!");
503 #endif
504   JCE.emitWordLE((intptr_t)Fn-JCE.getCurrentPCValue()-4);
505   JCE.finishGVStub(F);
506 }
507
508 /// getPICJumpTableEntry - Returns the value of the jumptable entry for the
509 /// specific basic block.
510 uintptr_t X86JITInfo::getPICJumpTableEntry(uintptr_t BB, uintptr_t Entry) {
511 #if defined(X86_64_JIT)
512   return BB - Entry;
513 #else
514   return BB - PICBase;
515 #endif
516 }
517
518 /// relocate - Before the JIT can run a block of code that has been emitted,
519 /// it must rewrite the code to contain the actual addresses of any
520 /// referenced global symbols.
521 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
522                           unsigned NumRelocs, unsigned char* GOTBase) {
523   for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
524     void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
525     intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
526     switch ((X86::RelocationType)MR->getRelocationType()) {
527     case X86::reloc_pcrel_word: {
528       // PC relative relocation, add the relocated value to the value already in
529       // memory, after we adjust it for where the PC is.
530       ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
531       *((unsigned*)RelocPos) += (unsigned)ResultPtr;
532       break;
533     }
534     case X86::reloc_picrel_word: {
535       // PIC base relative relocation, add the relocated value to the value
536       // already in memory, after we adjust it for where the PIC base is.
537       ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
538       *((unsigned*)RelocPos) += (unsigned)ResultPtr;
539       break;
540     }
541     case X86::reloc_absolute_word:
542     case X86::reloc_absolute_word_sext:
543       // Absolute relocation, just add the relocated value to the value already
544       // in memory.
545       *((unsigned*)RelocPos) += (unsigned)ResultPtr;
546       break;
547     case X86::reloc_absolute_dword:
548       *((intptr_t*)RelocPos) += ResultPtr;
549       break;
550     }
551   }
552 }
553
554 char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
555 #if defined(X86_32_JIT) && !defined(__APPLE__) && !defined(_MSC_VER)
556   TLSOffset -= size;
557   return TLSOffset;
558 #else
559   llvm_unreachable("Cannot allocate thread local storage on this arch!");
560   return 0;
561 #endif
562 }