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
/
ADT
/
PointerIntPair.h
Age
Commit message (
Expand
)
Author
2013-04-09
Fix PointerIntPair to be enum class compatible.
Joe Groff
2012-12-03
Eliminate redundant bitwise operations when using a llvm/ADT/PointerUnion.
Argyrios Kyrtzidis
2012-08-24
Fix integer undefined behavior due to signed left shift overflow in LLVM.
Richard Smith
2012-07-18
Allow PointerIntPairs to be created from const void *.
Jordan Rose
2012-03-06
PointerUnion::getAddrOf() does not need to be template since we can only
Argyrios Kyrtzidis
2011-02-19
Allow getting the address of the value in a PointerUnion or PointerIntPair if...
Argyrios Kyrtzidis
2009-12-15
Remove isPod() from DenseMapInfo, splitting it out to its own
Chris Lattner
2009-09-17
Fix a few places where PointerIntPair was using PointerLikeTypeTraits<PointerTy>
John McCall
2009-04-26
I cast, therefore I think I know what I'm doing.
Bill Wendling
2009-04-26
Use uint64_t instead of unsigned.
Bill Wendling
2009-04-26
revert an incorrect patch. This causes crashes all over the place on a
Chris Lattner
2009-04-26
Suppress warnings about conversion shortening 64-bit to 32-bit.
Bill Wendling
2009-03-30
fix the PointerLikeTypeTraits specialization for PointerIntPair to
Chris Lattner
2009-03-29
add missing space.
Chris Lattner
2009-03-29
When forming sentinels for empty/tombstone, make sure to respect the
Chris Lattner
2009-03-29
Allow a specific PointerIntPair instance to use a specific Pointer trait:
Chris Lattner
2009-03-29
Replace the PointerLikeTypeTraits::getNumLowBitsAvailable
Chris Lattner
2009-03-29
rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for
Chris Lattner
2009-03-29
teach SmallPtrSet that PointerIntPair is "basically a pointer".
Chris Lattner
2009-01-16
Get this building with gcc-4.4.
Duncan Sands
2009-01-09
Removed trailing whitespace.
Misha Brukman
2008-12-08
Move the conversion to intptr_t to a separate statement. This
Dan Gohman
2008-12-07
Use intptr_t instead of unsigned here, which is more appropriate
Dan Gohman
2008-11-30
add the rest of the comparison routines.
Chris Lattner
2008-11-29
protect against negative values that would exceed allowed bit width
Torok Edwin
2008-11-29
apparently GCC doesn't believe that I understand C
Chris Lattner
2008-11-29
Typo fix.
Duncan Sands
2008-11-29
Fix sentinels to use correctly 'aligned' pointers.
Chris Lattner
2008-11-29
Fix spello, add DenseMapInfo specialization for PointerIntPair.
Chris Lattner
2008-11-28
fix comment typo
Chris Lattner
2008-11-28
fix a bug.
Chris Lattner
2008-11-28
add a generic "bitmangled pointer" class, which allows a parameterized
Chris Lattner