index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
Target
/
TargetJITInfo.h
Age
Commit message (
Expand
)
Author
2012-12-03
Sort the #include lines for the include/... tree with the script.
Chandler Carruth
2012-03-25
Prune some includes and forward declarations.
Craig Topper
2012-02-05
Convert assert(0) to llvm_unreachable
Craig Topper
2012-01-20
More dead code removal (using -Wunreachable-code)
David Blaikie
2011-12-20
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...
David Blaikie
2010-11-29
Merge System into Support.
Michael J. Spencer
2009-11-23
* Move stub allocation inside the JITEmitter, instead of exposing a
Jeffrey Yasskin
2009-10-26
Move DataTypes.h to include/llvm/System, update all users. This breaks the last
Chandler Carruth
2009-05-30
First patch in the direction of splitting MachineCodeEmitter in two subclasses:
Bruno Cardoso Lopes
2009-04-15
Fix doxygen comment syntax.
Dan Gohman
2009-02-18
Add support to the JIT for true non-lazy operation. When a call to a function
Nate Begeman
2009-01-05
Tidy up #includes, deleting a bunch of unnecessary #includes.
Dan Gohman
2008-12-10
Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...
Evan Cheng
2008-11-10
Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used.
Evan Cheng
2008-11-07
Jump tables may be emitted by target.
Evan Cheng
2008-11-05
Rename isGVLazyPtr to isGVNonLazyPtr relocation. This represents Mac OS X
Evan Cheng
2008-11-04
For some targets, it's not possible to place GVs in the same memory buffer as...
Evan Cheng
2008-10-30
Revert errant deletion. The target needs to be able to specify that it doesn'...
Jim Grosbach
2008-10-29
This is not needed anymore.
Evan Cheng
2008-10-28
Support for constant islands in the ARM JIT.
Jim Grosbach
2008-10-26
Return something (i.e. NULL) from an unimplemented virtual function.
Oscar Fuentes
2008-10-25
Support for allocation of TLS variables in the JIT. Allocation of a global
Nicolas Geoffray
2008-06-25
Switch the PPC backend and target-independent JIT to use the libsystem
Chris Lattner
2008-06-17
Provide generic hooks for icache invalidation. Add PPC implementation.
Anton Korobeynikov
2008-05-29
Prune and tidy #includes.
Dan Gohman
2008-04-16
Correlate stubs with functions in JIT: when emitting a stub, the JIT tells th...
Nicolas Geoffray
2008-03-11
Use PassManagerBase instead of FunctionPassManager for functions
Dan Gohman
2008-02-20
Unbreak build with gcc 4.3: provide missed includes and silence most annoying...
Anton Korobeynikov
2008-01-05
X86 JIT PIC jumptable support.
Evan Cheng
2008-01-04
X86 PIC JIT support fixes: encoding bugs, add lazy pointer stubs support.
Evan Cheng
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2006-09-04
Completely rearchitect the interface between targets and the pass manager.
Chris Lattner
2006-07-27
Resolve BB references with relocation.
Evan Cheng
2006-07-27
Move synchronizeICache from TargetJITInfo into a static function in JITEmitte...
Evan Cheng
2006-07-25
- Refactor the code that resolve basic block references to a TargetJITInfo
Evan Cheng
2005-07-22
allow constants to be relocated like GV (necessary for alpha, as constants ar...
Andrew Lenharth
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-11-21
Fix a warning
Chris Lattner
2004-11-20
Add new methods that a target should implement
Chris Lattner
2004-11-20
Allow targets to implement relocation support.
Chris Lattner
2004-09-28
Use class instead of struct for defining classes. This unbreaks the
Alkis Evlogimenos
2003-12-20
Rip JIT specific stuff out of TargetMachine, as per PR176
Chris Lattner