HomeSort by relevance Sort by last modified time
    Searched refs:ITy (Results 1 - 22 of 22) sorted by null

  /external/valgrind/main/memcheck/tests/
sh-mem.c 130 // type or an FP type. 'ITy' is the same-sized integer type (and thus
131 // will be the same as 'Ty' if 'ITy' is an integer type). 'ITy' is used
134 #define DO(NNN, Ty, ITy, isF4) \
136 NNN, #Ty, #ITy); \
154 ITy undefN_ITy = (ITy)tmp; \
159 ITy undefN_ITyDef = undefN_ITy; \
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 183 if (IntegerType *ITy =
185 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
186 ITy->getBitWidth() == 32) &&
188 if (ITy->getBitWidth() == 8)
190 if (ITy->getBitWidth() == 16)
193 assert(ITy->getBitWidth() == 32 && "Unknown width");
  /external/llvm/include/llvm/IR/
PatternMatch.h 65 template<typename ITy>
66 bool match(ITy *V) { return isa<Class>(V); }
88 template<typename ITy>
89 bool match(ITy *V) {
105 template<typename ITy>
106 bool match(ITy *V) {
127 template<typename ITy>
128 bool match(ITy *V) {
140 template<typename ITy>
141 bool match(ITy *V)
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
MemoryDependenceAnalysis.cpp 426 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType()))
427 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
    [all...]
ScalarEvolution.cpp 329 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
330 return getConstant(ConstantInt::get(ITy, V, isSigned));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
SROA.cpp     [all...]
  /external/llvm/lib/IR/
ValueTypes.cpp 98 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
99 return ITy->getBitWidth();
Function.cpp 686 IntegerType *ITy = cast<IntegerType>(Ty);
687 assert(ITy->getBitWidth() % 2 == 0);
688 return IntegerType::get(Context, ITy->getBitWidth() / 2);
Core.cpp     [all...]
Verifier.cpp     [all...]
Constants.cpp 186 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
188 APInt::getAllOnesValue(ITy->getBitWidth()));
520 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
523 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
524 if (!Slot) Slot = new ConstantInt(ITy, V);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 191 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
192 return ITy->getBitWidth() > (Is32Bit ? 32U : 64U);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 32 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
33 if (ITy->getBitWidth() < 32)
175 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
179 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
187 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
    [all...]
InstCombineCasts.cpp 597 if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) {
598 uint32_t BitWidth = ITy->getBitWidth();
618 ConstantInt::get(ITy, UnknownBit));
622 Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
625 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
    [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 722 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
723 size = ITy->getBitWidth();
    [all...]
NVPTXISelLowering.cpp 512 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
513 size = ITy->getBitWidth();
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 1258 milliseconds