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

  /external/llvm/examples/BrainF/
BrainF.cpp 125 endbb->getInstList().push_back(CallInst::CreateFree(ptr_arr, endbb));
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/IR/
Instructions.cpp 481 static Instruction* createFree(Value* Source, Instruction *InsertBefore,
484 "createFree needs either InsertBefore or InsertAtEnd");
513 /// CreateFree - Generate the IR for a call to the builtin free function.
514 Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
515 return createFree(Source, InsertBefore, nullptr);
518 /// CreateFree - Generate the IR for a call to the builtin free function.
521 Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
522 Instruction* FreeCall = createFree(Source, nullptr, InsertAtEnd);
523 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...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 156 milliseconds