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

  /external/valgrind/main/memcheck/tests/
sh-mem.c 129 // type or an FP type. 'ITy' is the same-sized integer type (and thus
130 // will be the same as 'Ty' if 'ITy' is an integer type). 'ITy' is used
133 #define DO(NNN, Ty, ITy, isF4) \
134 fprintf(stderr, "-- NNN: %d %s %s ------------------------\n", NNN, #Ty, #ITy); \
152 ITy undefN_ITy = (ITy)tmp; \
157 ITy undefN_ITyDef = undefN_ITy; \
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 168 if (IntegerType *ITy =
170 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
171 ITy->getBitWidth() == 32) &&
173 if (ITy->getBitWidth() == 8)
175 if (ITy->getBitWidth() == 16)
178 assert(ITy->getBitWidth() == 32 && "Unknown width");
  /external/llvm/include/llvm/Support/
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 421 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType()))
422 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
    [all...]
ScalarEvolution.cpp 331 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
332 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();
Core.cpp     [all...]
Constants.cpp 164 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
166 APInt::getAllOnesValue(ITy->getBitWidth()));
484 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
487 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
488 if (!Slot) Slot = new ConstantInt(ITy, V);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 30 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
31 if (ITy->getBitWidth() < 32)
173 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
177 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
185 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
    [all...]
InstCombineCasts.cpp 594 if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) {
595 uint32_t BitWidth = ITy->getBitWidth();
615 ConstantInt::get(ITy, UnknownBit));
619 Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
622 Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1));
    [all...]
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 430 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
431 size = ITy->getBitWidth();
    [all...]
NVPTXISelLowering.cpp 364 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
365 size = ITy->getBitWidth();
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 4016 milliseconds