HomeSort by relevance Sort by last modified time
    Searched refs:ITy (Results 1 - 17 of 17) 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 63 template<typename ITy>
64 bool match(ITy *V) { return isa<Class>(V); }
79 template<typename ITy>
80 bool match(ITy *V) {
95 template<typename ITy>
96 bool match(ITy *V) {
125 template<typename ITy>
126 bool match(ITy *V) {
150 template<typename ITy>
151 bool match(ITy *V)
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
MemoryDependenceAnalysis.cpp 407 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType()))
408 if (LI->getAlignment()*8 > ITy->getPrimitiveSizeInBits() &&
    [all...]
ScalarEvolution.cpp 325 IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
326 return getConstant(ConstantInt::get(ITy, V, isSigned));
    [all...]
  /external/llvm/lib/VMCore/
ValueTypes.cpp 90 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
91 return ITy->getBitWidth();
Core.cpp     [all...]
Constants.cpp 142 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
144 APInt::getAllOnesValue(ITy->getBitWidth()));
425 IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
427 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
429 if (!Slot) Slot = new ConstantInt(ITy, V);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 25 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
26 if (ITy->getBitWidth() < 32)
142 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
146 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
154 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
    [all...]
InstCombineCasts.cpp 585 if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) {
586 uint32_t BitWidth = ITy->getBitWidth();
606 ConstantInt::get(ITy, UnknownBit));
610 Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
613 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 288 if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
289 size = ITy->getBitWidth();
    [all...]
NVPTXISelLowering.cpp 299 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
300 size = ITy->getBitWidth();
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 783 milliseconds