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

  /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/lib/VMCore/
Instruction.cpp 128 case Alloca: return "alloca";
428 case Alloca:
Instructions.cpp 838 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
847 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
856 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
865 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
874 : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 301 case Instruction::Alloca:
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 321 case Instruction::Alloca: case Instruction::VAArg:
    [all...]
Reassociate.cpp 133 I->getOpcode() == Instruction::Alloca ||
    [all...]
  /external/llvm/include/llvm/
InstrTypes.h 118 return I->getOpcode() == Instruction::Alloca ||
    [all...]
Instructions.h 107 /// isStaticAlloca - Return true if this alloca is in the entry block of the
115 return (I->getOpcode() == Instruction::Alloca);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CodeGenModule.cpp     [all...]
CodeGenFunction.h 586 /// ReturnValue - The temporary alloca to hold the return value. This is null
617 /// into this alloca.
621 /// write the current selector value into this alloca.
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 648 INSTKEYWORD(alloca, Alloca);
  /external/llvm/lib/Analysis/
ValueTracking.cpp 539 case Instruction::Alloca: {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGBuilder.cpp 83 // %buffer = alloca [4096 x i8]
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 758 if (I.getOpcode() == Instruction::Alloca)
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 168 | Alloca
    [all...]
llvm.mli 218 | Alloca
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 714 // Don't walk into other basic blocks unless the object is an alloca from
803 case Instruction::Alloca: {
854 // put the alloca address into a register, set the base type back to
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 378 case Instruction::Alloca: {
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]

Completed in 579 milliseconds