HomeSort by relevance Sort by last modified time
    Searched defs:Int32Ty (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/IR/
MDBuilder.h 70 Type *Int32Ty = Type::getInt32Ty(Context);
72 Vals[i+1] = ConstantInt::get(Int32Ty, Weights[i]);
  /external/llvm/lib/IR/
Module.cpp 359 Type *Int32Ty = Type::getInt32Ty(Context);
361 ConstantInt::get(Int32Ty, Behavior), MDString::get(Context, Key), Val
367 Type *Int32Ty = Type::getInt32Ty(Context);
368 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
LLVMContextImpl.h 297 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 156 Type *Int32Ty = Type::getInt32Ty(M.getContext());
182 ConstantInt::get(Int32Ty, 0),
183 ConstantInt::get(Int32Ty, k-i)
IndVarSimplify.cpp 393 IntegerType *Int32Ty = Type::getInt32Ty(PN->getContext());
396 PHINode *NewPHI = PHINode::Create(Int32Ty, 2, PN->getName()+".int", PN);
397 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),
401 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
406 ConstantInt::get(Int32Ty, ExitValue),
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 208 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
211 StructType::get(Int32Ty, TorList[0].first->getType(), NULL);
214 ConstantInt::get(Int32Ty, TorList[i].second),
  /external/llvm/unittests/IR/
ConstantsTest.cpp 168 Type *Int32Ty = Type::getInt32Ty(getGlobalContext());
175 PointerType::getUnqual(Int32Ty));
177 PointerType::getUnqual(Int32Ty));
179 Constant *P0 = ConstantExpr::getPtrToInt(Global, Int32Ty);
183 Constant *P4 = ConstantExpr::getPtrToInt(Global2, Int32Ty);
187 Constant *One = ConstantInt::get(Int32Ty, 1);
InstructionsTest.cpp 121 Type *Int32Ty = Type::getInt32Ty(C);
131 Type *V2Int32Ty = VectorType::get(Int32Ty, 2);
135 Type *Int32PtrTy = PointerType::get(Int32Ty, 0);
138 Type *Int32PtrAS1Ty = PointerType::get(Int32Ty, 1);
185 EXPECT_TRUE(CastInst::isBitCastable(FloatTy, Int32Ty));
187 EXPECT_TRUE(CastInst::isBitCastable(Int32Ty, FloatTy));
191 EXPECT_FALSE(CastInst::isBitCastable(Int32Ty, Int64Ty));
192 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, Int32Ty));
333 Type* Int32Ty = Type::getInt32Ty(C);
341 Int32Ty, 0, Int32Ty)
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 217 Type *Int32Ty = Type::getInt32Ty(F.getContext());
220 ConstantInt::get(Int32Ty, Roots.size(), false),
221 ConstantInt::get(Int32Ty, NumMeta, false),
SjLjEHPrepare.cpp 94 Type *Int32Ty = Type::getInt32Ty(M.getContext());
97 Int32Ty, // call_site
98 ArrayType::get(Int32Ty, 4), // __data
130 Type *Int32Ty = Type::getInt32Ty(I->getContext());
131 Value *Zero = ConstantInt::get(Int32Ty, 0);
132 Value *One = ConstantInt::get(Int32Ty, 1);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 271 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
273 ConstantInt::get(Int32Ty,
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 454 Type *Int32Ty = Builder.getInt32Ty();
457 ExtDividend = Builder.CreateSExt(Rem->getOperand(0), Int32Ty);
458 ExtDivisor = Builder.CreateSExt(Rem->getOperand(1), Int32Ty);
461 ExtDividend = Builder.CreateZExt(Rem->getOperand(0), Int32Ty);
462 ExtDivisor = Builder.CreateZExt(Rem->getOperand(1), Int32Ty);
506 Type *Int32Ty = Builder.getInt32Ty();
509 ExtDividend = Builder.CreateSExt(Div->getOperand(0), Int32Ty);
510 ExtDivisor = Builder.CreateSExt(Div->getOperand(1), Int32Ty);
513 ExtDividend = Builder.CreateZExt(Div->getOperand(0), Int32Ty);
514 ExtDivisor = Builder.CreateZExt(Div->getOperand(1), Int32Ty);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 130 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(*C);
131 return llvm::ConstantInt::get(Int32Ty, ETSize);
144 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(*C);
145 llvm::Type *SizeTy = Int32Ty;
166 StructTys.push_back(Int32Ty); // uint32_t x
167 StructTys.push_back(Int32Ty); // uint32_t y
168 StructTys.push_back(Int32Ty); // uint32_t z
169 StructTys.push_back(Int32Ty); // uint32_t lod
170 StructTys.push_back(Int32Ty); // enum RsAllocationCubemapFace
171 StructTys.push_back(llvm::ArrayType::get(Int32Ty, 16)); // uint32_t ar[16
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 675 Type *Int32Ty = Type::getInt32Ty(*Ctx);
678 Int32Ty->getPointerTo(), // uint32_t *predecessor
  /external/clang/lib/CodeGen/
CodeGenModule.h 113 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
    [all...]
CGObjCGNU.cpp 161 llvm::IntegerType *Int32Ty;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 274 milliseconds