OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Alloca
(Results
1 - 5
of
5
) 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/clang/lib/CodeGen/
CGCall.cpp
[
all
...]
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
[
all
...]
/external/llvm/bindings/ocaml/llvm/
llvm.ml
169
|
Alloca
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
83
// %buffer =
alloca
[4096 x i8]
[
all
...]
Completed in 315 milliseconds