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

12

/external/llvm/lib/Target/R600/
H A DAMDGPUFrameLowering.cpp81 const AllocaInst *Alloca = MFI->getObjectAllocation(i); local
83 const Type *AllocaType = Alloca->getAllocatedType();
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h108 /// Alloca - If this stack object is originated from an Alloca instruction
110 const AllocaInst *Alloca; member in struct:llvm::MachineFrameInfo::StackObject
119 isSpillSlot(isSS), MayNeedSP(NSP), Alloca(Val), PreAllocated(false) {}
374 /// getObjectAllocation - Return the underlying Alloca of the specified
379 return Objects[ObjectIdx+NumFixedObjects].Alloca;
503 bool MayNeedSP = false, const AllocaInst *Alloca = 0);
/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/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp202 case Instruction::Alloca: case Instruction::VAArg:
H A DObjCARCOpts.cpp2417 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2418 for (Value::use_iterator UI = Alloca->use_begin(),
2419 UE = Alloca->use_end(); UI != UE; ++UI) {
2431 for (Value::use_iterator UI = Alloca->use_begin(),
2432 UE = Alloca->use_end(); UI != UE; ) {
2448 Alloca->eraseFromParent();
/external/clang/lib/CodeGen/
H A DCGCall.cpp1314 llvm::AllocaInst *Alloca = CreateMemTemp(Ty, Arg->getName()); local
1323 Alloca->setAlignment(AlignmentToUse);
1324 llvm::Value *V = Alloca;
1391 llvm::AllocaInst *Alloca = CreateMemTemp(Ty); local
1393 Alloca->setAlignment(Align.getQuantity());
1394 LValue LV = MakeAddrLValue(Alloca, Ty, Align);
1396 EmitParmDecl(*Arg, Alloca, ArgNo);
H A DCodeGenModule.cpp2925 if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
2927 Alloca->setMetadata(DeclPtrKind, llvm::MDNode::get(Context, DAddr));
H A DCodeGenFunction.h1631 void InitTempAlloca(llvm::AllocaInst *Alloca, llvm::Value *Value);
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp483 bool isSS, bool MayNeedSP, const AllocaInst *Alloca) {
488 Alloca));
542 /*Alloca*/ 0));
482 CreateStackObject(uint64_t Size, unsigned Alignment, bool isSS, bool MayNeedSP, const AllocaInst *Alloca) argument
H A DTargetLoweringBase.cpp1209 case Alloca: return 0;
/external/llvm/include/llvm/IR/
H A DInstrTypes.h116 return I->getOpcode() == Instruction::Alloca ||
/external/llvm/lib/IR/
H A DInstruction.cpp217 case Alloca: return "alloca";
H A DInstructions.cpp836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
872 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
881 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
/external/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp529 case Instruction::Alloca:
H A DGlobalOpt.cpp1962 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI); local
1964 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1966 GV->replaceAllUsesWith(Alloca);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp671 INSTKEYWORD(alloca, Alloca);
/external/llvm/lib/Analysis/
H A DValueTracking.cpp609 case Instruction::Alloca: {
2002 case Instruction::Alloca:
2023 // Alloca never returns null, malloc might.
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1032 case Instruction::Alloca:
H A DSelectionDAGISel.cpp101 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
958 case Instruction::Alloca: NumFastIselFailAlloca++; return;
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp767 if (I.getOpcode() == Instruction::Alloca)
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp170 I->getOpcode() == Instruction::Alloca ||
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml169 | Alloca Constructor in type:Opcode/t
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1819 TEST(MemorySanitizerOrigins, Alloca) {
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1369 case Instruction::Alloca:
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1290 case Instruction::Alloca: {

Completed in 1277 milliseconds

12