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

/macosx-10.10.1/llvmCore-3425.0.34/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) {}
371 /// getObjectAllocation - Return the underlying Alloca of the specified
376 return Objects[ObjectIdx+NumFixedObjects].Alloca;
499 bool MayNeedSP = false, const AllocaInst *Alloca = 0) {
502 Alloca));
/macosx-10.10.1/llvmCore-3425.0.34/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...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DInstruction.cpp127 case Alloca: return "alloca";
H A DInstructions.cpp814 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
823 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
832 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
841 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
850 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
859 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DObjCARC.cpp328 case Instruction::Alloca: case Instruction::VAArg:
3492 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
3493 for (Value::use_iterator UI = Alloca->use_begin(),
3494 UE = Alloca->use_end(); UI != UE; ++UI) {
3506 for (Value::use_iterator UI = Alloca->use_begin(),
3507 UE = Alloca->use_end(); UI != UE; ) {
3523 Alloca->eraseFromParent();
H A DReassociate.cpp170 I->getOpcode() == Instruction::Alloca ||
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DInstrTypes.h118 return I->getOpcode() == Instruction::Alloca ||
H A DInstructions.h117 return (I->getOpcode() == Instruction::Alloca);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DFunctionAttrs.cpp518 case Instruction::Alloca:
H A DGlobalOpt.cpp1954 AllocaInst *Alloca = new AllocaInst(ElemTy, NULL, GV->getName(), &FirstI); local
1956 new StoreInst(GV->getInitializer(), Alloca, &FirstI);
1958 GV->replaceAllUsesWith(Alloca);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DValueTracking.cpp597 case Instruction::Alloca: {
1919 case Instruction::Alloca:
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLLexer.cpp636 INSTKEYWORD(alloca, Alloca);
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1004 case Instruction::Alloca:
H A DSelectionDAGISel.cpp99 STATISTIC(NumFastIselFailAlloca,"Fast isel fails on Alloca");
945 case Instruction::Alloca: NumFastIselFailAlloca++; return;
H A DSelectionDAGBuilder.cpp5158 const Value *Alloca = I.getArgOperand(0)->stripPointerCasts(); local
5161 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode());
5256 // Could not find an Alloca.
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp767 if (I.getOpcode() == Instruction::Alloca)
/macosx-10.10.1/llvmCore-3425.0.34/bindings/ocaml/llvm/
H A Dllvm.ml169 | Alloca
H A Dllvm.mli219 | Alloca
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1284 case Instruction::Alloca:
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CppBackend/
H A DCPPBackend.cpp1278 case Instruction::Alloca: {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/
H A DX86FastISel.cpp380 case Instruction::Alloca: {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/ARM/
H A DARMFastISel.cpp877 case Instruction::Alloca: {

Completed in 292 milliseconds