Searched refs:AllocaInst (Results 76 - 99 of 99) sorted by relevance

1234

/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1333 if (AllocaInst *AI = dyn_cast<AllocaInst>(Val))
H A DIndVarSimplify.cpp1694 if (isa<AllocaInst>(I))
/freebsd-10.2-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp412 PT->push_back(new AllocaInst(Tp, "A", BB->getFirstNonPHI()));
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp791 Value *TheAlloca = new AllocaInst(AgTy, 0, "", InsertPt);
H A DGlobalOpt.cpp1764 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI);
2526 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(CurInst)) {
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1966 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
/freebsd-10.2-release/contrib/llvm/include/llvm/IR/
H A DIRBuilder.h873 AllocaInst *CreateAlloca(Type *Ty, Value *ArraySize = 0,
875 return Insert(new AllocaInst(Ty, ArraySize), Name);
/freebsd-10.2-release/contrib/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1289 const AllocaInst* allocaI = cast<AllocaInst>(I);
1290 Out << "AllocaInst* " << iName << " = new AllocaInst("
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1369 if (isa<AllocaInst>(Operand) || isAllocationFn(Operand, TLI)) {
2185 if (isa<AllocaInst>(I) && I->getParent() ==
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprAgg.cpp392 llvm::AllocaInst *endOfInit = 0;
H A DCodeGenModule.cpp3138 if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
H A DCGExprCXX.cpp765 llvm::AllocaInst *endOfInit = 0;
H A DCGObjCGNU.cpp1459 llvm::AllocaInst *NullVal =
H A DCGDebugInfo.cpp2885 if (isa<llvm::AllocaInst>(Storage))
H A DCGObjCMac.cpp3687 if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I))
/freebsd-10.2-release/contrib/llvm/include/llvm-c/
H A DCore.h1161 macro(AllocaInst) \
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1204 isa<AllocaInst>(I1) || isa<AllocaInst>(I2) ||
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1814 if (isa<AllocaInst>(LHS) &&
1815 (isa<AllocaInst>(RHS) || isa<GlobalVariable>(RHS))) {
/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1392 Vals.push_back(Log2_32(cast<AllocaInst>(I).getAlignment())+1);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2026 void visitAllocaInst(AllocaInst &I) {
/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2776 I = new AllocaInst(Ty->getElementType(), Size, (1 << Align) >> 1);
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp960 void Interpreter::visitAllocaInst(AllocaInst &I) {
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3355 return isNoAliasArgument(Ptr) || isNoAliasCall(Ptr) || isa<AllocaInst>(Ptr);
/freebsd-10.2-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp4068 Inst = new AllocaInst(Ty, Size, Alignment);

Completed in 339 milliseconds

1234