HomeSort by relevance Sort by last modified time
    Searched refs:Int32Ty (Results 1 - 25 of 32) sorted by null

1 2

  /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/unittests/IR/
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...]
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);
  /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...]
  /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.cpp 36 Int32Ty(C, 32),
LLVMContextImpl.h 297 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/llvm/lib/CodeGen/
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);
ShadowStackGC.cpp 217 Type *Int32Ty = Type::getInt32Ty(F.getContext());
220 ConstantInt::get(Int32Ty, Roots.size(), false),
221 ConstantInt::get(Int32Ty, NumMeta, false),
  /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/include/llvm/IR/
MDBuilder.h 70 Type *Int32Ty = Type::getInt32Ty(Context);
72 Vals[i+1] = ConstantInt::get(Int32Ty, Weights[i]);
  /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/clang/lib/CodeGen/
CGBuiltin.cpp 419 llvm::ConstantInt::get(Int32Ty, 0);
421 llvm::ConstantInt::get(Int32Ty, 3);
422 Value *Data = llvm::ConstantInt::get(Int32Ty, 1);
725 llvm::ConstantInt::get(Int32Ty, Offset)));
729 Depth = Builder.CreateIntCast(Depth, Int32Ty, false);
735 Depth = Builder.CreateIntCast(Depth, Int32Ty, false);
    [all...]
TargetInfo.cpp     [all...]
CGObjCGNU.cpp 161 llvm::IntegerType *Int32Ty;
    [all...]
CGExprScalar.cpp     [all...]
CGBlocks.cpp     [all...]
CodeGenFunction.cpp 303 llvm::ConstantInt::get(Int32Ty, 0),
529 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
530 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
CGException.cpp 252 CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true),
410 EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot");
782 Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
    [all...]
CodeGenModule.cpp 95 Int32Ty = llvm::Type::getInt32Ty(LLVMContext);
492 llvm::StructType::get(Int32Ty, llvm::PointerType::getUnqual(CtorFTy), NULL);
498 llvm::ConstantInt::get(Int32Ty, I->second, false),
    [all...]
CGExpr.cpp     [all...]
CGStmt.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 271 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
273 ConstantInt::get(Int32Ty,
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 675 Type *Int32Ty = Type::getInt32Ty(*Ctx);
678 Int32Ty->getPointerTo(), // uint32_t *predecessor

Completed in 477 milliseconds

1 2