HomeSort by relevance Sort by last modified time
    Searched defs:Int32Ty (Results 1 - 18 of 18) 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 364 Type *Int32Ty = Type::getInt32Ty(Context);
366 ConstantInt::get(Int32Ty, Behavior), MDString::get(Context, Key), Val
372 Type *Int32Ty = Type::getInt32Ty(Context);
373 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
LLVMContextImpl.h 297 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp     [all...]
InstCombineVectorOps.cpp 196 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
198 ConstantInt::get(Int32Ty,
668 Type *Int32Ty = Type::getInt32Ty(SVI.getContext());
671 Elts.push_back(UndefValue::get(Int32Ty));
673 Elts.push_back(ConstantInt::get(Int32Ty, newMask[i]));
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 158 Type *Int32Ty = Type::getInt32Ty(M.getContext());
184 ConstantInt::get(Int32Ty, 0),
185 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 258 Type* Int32Ty = Type::getInt32Ty(C);
266 Int32Ty, 0, Int32Ty),
273 Int32Ty, 0, Int64Ty),
287 0, Int32Ty, 0),
  /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);
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 119 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(*C);
120 return llvm::ConstantInt::get(Int32Ty, ETSize);
177 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(*C);
178 llvm::Type *SizeTy = Int32Ty;
200 StructTys.push_back(Int32Ty); // uint32_t x
201 StructTys.push_back(Int32Ty); // uint32_t y
202 StructTys.push_back(Int32Ty); // uint32_t z
203 StructTys.push_back(Int32Ty); // uint32_t lod
204 StructTys.push_back(Int32Ty); // enum RsAllocationCubemapFace
205 StructTys.push_back(llvm::ArrayType::get(Int32Ty, 16)); // uint32_t ar[16
    [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...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 645 Type *Int32Ty = Type::getInt32Ty(*Ctx);
648 Int32Ty->getPointerTo(), // uint32_t *predecessor
  /external/clang/lib/CodeGen/
CodeGenModule.h 114 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
    [all...]
CGObjCGNU.cpp 161 llvm::IntegerType *Int32Ty;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 1286 milliseconds