Searched refs:Alloca (Results 1 - 24 of 24) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp785 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); local
792 Builder.CreateStore(StartVal, Alloca);
807 NamedValues[VarName] = Alloca;
831 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
833 Builder.CreateStore(NextVar, Alloca);
883 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); local
884 Builder.CreateStore(InitVal, Alloca);
891 NamedValues[VarName] = Alloca;
950 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); local
953 Builder.CreateStore(AI, Alloca);
[all...]
/external/clang/lib/CodeGen/
H A DCGCall.cpp1157 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName()); local
1166 Alloca->setAlignment(AlignmentToUse);
1167 llvm::Value *V = Alloca;
1234 llvm::AllocaInst *Alloca = CreateMemTemp(Ty); local
1236 Alloca->setAlignment(Align.getQuantity());
1237 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
1239 EmitParmDecl(*Arg, Alloca, ArgNo);
H A DCodeGenModule.cpp2642 if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
2644 Alloca->setMetadata(DeclPtrKind, llvm::MDNode::get(Context, DAddr));
H A DCodeGenFunction.h1578 void InitTempAlloca(llvm::AllocaInst *Alloca, llvm::Value *Value);
/external/llvm/lib/VMCore/
H A DInstruction.cpp127 case Alloca: return "alloca";
H A DInstructions.cpp808 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
817 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
826 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
835 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
844 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
853 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
/external/llvm/lib/Transforms/Scalar/
H A DObjCARC.cpp329 case Instruction::Alloca: case Instruction::VAArg:
3519 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
3520 for (Value::use_iterator UI = Alloca->use_begin(),
3521 UE = Alloca->use_end(); UI != UE; ++UI) {
3533 for (Value::use_iterator UI = Alloca->use_begin(),
3534 UE = Alloca->use_end(); UI != UE; ) {
3540 Alloca->eraseFromParent();
H A DReassociate.cpp133 I->getOpcode() == Instruction::Alloca ||
/external/llvm/include/llvm/
H A DInstrTypes.h118 return I->getOpcode() == Instruction::Alloca ||
H A DInstructions.h115 return (I->getOpcode() == Instruction::Alloca);
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp518 case Instruction::Alloca:
H A DGlobalOpt.cpp1775 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI); local
1777 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1779 GV->replaceAllUsesWith(Alloca);
/external/llvm/lib/Analysis/
H A DValueTracking.cpp597 case Instruction::Alloca: {
1888 case Instruction::Alloca:
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp628 INSTKEYWORD(alloca, Alloca);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp989 case Instruction::Alloca:
H A DSelectionDAGISel.cpp99 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
918 case Instruction::Alloca: NumFastIselFailAlloca++; return;
H A DSelectionDAGBuilder.cpp5053 const Value *Alloca = I.getArgOperand(0); local
5056 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp738 if (I.getOpcode() == Instruction::Alloca)
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml169 | Alloca Constructor in type:Opcode/t
H A Dllvm.mli219 | Alloca
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1221 case Instruction::Alloca:
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1255 case Instruction::Alloca: {
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp378 case Instruction::Alloca: {
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp861 case Instruction::Alloca: {

Completed in 393 milliseconds