OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CreateFree
(Results
1 - 6
of
6
) sorted by null
/external/llvm/examples/BrainF/
BrainF.cpp
125
endbb->getInstList().push_back(CallInst::
CreateFree
(ptr_arr, endbb));
/external/llvm/include/llvm/
Instructions.h
[
all
...]
/external/llvm/lib/VMCore/
Instructions.cpp
381
static Instruction*
createFree
(Value* Source, Instruction *InsertBefore,
384
"
createFree
needs either InsertBefore or InsertAtEnd");
413
///
CreateFree
- Generate the IR for a call to the builtin free function.
414
Instruction * CallInst::
CreateFree
(Value* Source, Instruction *InsertBefore) {
415
return
createFree
(Source, InsertBefore, NULL);
418
///
CreateFree
- Generate the IR for a call to the builtin free function.
421
Instruction* CallInst::
CreateFree
(Value* Source, BasicBlock *InsertAtEnd) {
422
Instruction* FreeCall =
createFree
(Source, NULL, InsertAtEnd);
423
assert(FreeCall && "
CreateFree
did not create a CallInst");
[
all
...]
Core.cpp
[
all
...]
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
[
all
...]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp
[
all
...]
Completed in 3874 milliseconds