HomeSort by relevance Sort by last modified time
    Searched refs:Alloca (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 68 /// variable sized alloca's in the source program are the only source of
109 /// Alloca - If this stack object is originated from an Alloca instruction
111 const AllocaInst *Alloca;
120 isSpillSlot(isSS), MayNeedSP(NSP), Alloca(Val), PreAllocated(false) {}
375 /// getObjectAllocation - Return the underlying Alloca of the specified
380 return Objects[ObjectIdx+NumFixedObjects].Alloca;
504 bool MayNeedSP = false, const AllocaInst *Alloca = 0);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 613 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
763 // var = alloca double
784 // Create an alloca for the variable in the entry block.
785 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
791 // Store the value into the alloca.
792 Builder.CreateStore(StartVal, Alloca);
807 NamedValues[VarName] = Alloca;
829 // Reload, increment, and restore the alloca. This handles the case where
831 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
833 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 631 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
791 // var = alloca double
812 // Create an alloca for the variable in the entry block.
813 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
819 // Store the value into the alloca.
820 Builder.CreateStore(StartVal, Alloca);
835 NamedValues[VarName] = Alloca;
857 // Reload, increment, and restore the alloca. This handles the case where
859 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
861 Builder.CreateStore(NextVar, Alloca);
    [all...]
toy.cpp 1002 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 860 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
1013 // var = alloca double
1034 // Create an alloca for the variable in the entry block.
1035 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
1041 // Store the value into the alloca.
1042 Builder.CreateStore(StartVal, Alloca);
1057 NamedValues[VarName] = Alloca;
1079 // Reload, increment, and restore the alloca. This handles the case where
1081 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
1083 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 616 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
773 // var = alloca double
794 // Create an alloca for the variable in the entry block.
795 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
801 // Store the value into the alloca.
802 Builder.CreateStore(StartVal, Alloca);
817 NamedValues[VarName] = Alloca;
839 // Reload, increment, and restore the alloca. This handles the case where
841 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str());
843 Builder.CreateStore(NextVar, Alloca);
    [all...]
toy.cpp 900 /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of
1053 // var = alloca double
1074 // Create an alloca for the variable in the entry block.
1075 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName);
1081 // Store the value into the alloca.
1082 Builder.CreateStore(StartVal, Alloca);
1097 NamedValues[VarName] = Alloca;
1119 // Reload, increment, and restore the alloca. This handles the case where
1121 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 215 case Instruction::Alloca: case Instruction::VAArg:
ObjCARCOpts.cpp 266 /// alloca.
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 493 bool isSS, bool MayNeedSP, const AllocaInst *Alloca) {
500 Alloca));
560 /*Alloca*/ 0));
624 // any calls or alloca's, align to the target's StackAlignment value to
625 // ensure that the callee's frame or the alloca data is suitably aligned;
    [all...]
TargetLoweringBase.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CGBlocks.cpp 1190 llvm::AllocaInst *alloca = local
    [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 116 return I->getOpcode() == Instruction::Alloca ||
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 217 case Alloca: return "alloca";
Instructions.cpp 836 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
845 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
854 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
863 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 676 INSTKEYWORD(alloca, Alloca);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 609 case Instruction::Alloca: {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
FunctionAttrs.cpp 740 case Instruction::Alloca:
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 247 case Instruction::Alloca:
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 169 | Alloca
    [all...]

Completed in 3510 milliseconds

1 2