OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SrcSize
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp
378
unsigned
SrcSize
= TrOp->getType()->getScalarSizeInBits();
380
APInt MaskV(APInt::getLowBitsSet(
SrcSize
, DstSize));
InstCombineCasts.cpp
[
all
...]
InstructionCombining.cpp
[
all
...]
/external/clang/lib/CodeGen/
CGCall.cpp
679
uint64_t
SrcSize
= DL.getTypeAllocSizeInBits(Val->getType());
681
if (
SrcSize
> DstSize) {
682
Val = CGF.Builder.CreateLShr(Val,
SrcSize
- DstSize, "coerce.highbits");
686
Val = CGF.Builder.CreateShl(Val, DstSize -
SrcSize
, "coerce.highbits");
724
uint64_t
SrcSize
= CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
735
if (
SrcSize
>= DstSize) {
736
// Generally
SrcSize
is never greater than DstSize, since this means we are
758
llvm::ConstantInt::get(CGF.IntPtrTy,
SrcSize
),
[
all
...]
/external/llvm/lib/IR/
Instructions.cpp
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
[
all
...]
Completed in 139 milliseconds