OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SrcSize
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
798
unsigned
SrcSize
= A->getType()->getScalarSizeInBits();
802
//
SrcSize
< DstSize: zext(a & mask)
803
//
SrcSize
== DstSize: a & mask
804
//
SrcSize
> DstSize: trunc(a) & mask
805
if (
SrcSize
< DstSize) {
806
APInt AndValue(APInt::getLowBitsSet(
SrcSize
, MidSize))
[
all
...]
InstCombineShifts.cpp
378
unsigned
SrcSize
= TrOp->getType()->getScalarSizeInBits();
380
APInt MaskV(APInt::getLowBitsSet(
SrcSize
, DstSize));
[
all
...]
/external/llvm/lib/CodeGen/
RegisterCoalescer.cpp
[
all
...]
/external/clang/lib/CodeGen/
CGCall.cpp
613
uint64_t
SrcSize
= CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
624
if (
SrcSize
>= DstSize) {
625
// Generally
SrcSize
is never greater than DstSize, since this means we are
693
uint64_t
SrcSize
= CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
696
DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy,
SrcSize
, CGF);
712
if (
SrcSize
<= DstSize) {
721
// Generally
SrcSize
is never greater than DstSize, since this means we are
[
all
...]
/external/llvm/lib/VMCore/
Instructions.cpp
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp
[
all
...]
Completed in 3048 milliseconds