HomeSort by: relevance | last modified time | path
    Searched refs:CreateFree (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/examples/BrainF/
BrainF.cpp 132 endbb->getInstList().push_back(CallInst::CreateFree(ptr_arr, endbb));
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerEmscriptenEHSjLj.cpp 1142 auto *Free = CallInst::CreateFree(SetjmpTable, TI);
1144 // CallInst::CreateFree may create a bitcast instruction if its argument
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 1631 static Instruction *CreateFree(Value *Source, Instruction *InsertBefore);
1632 static Instruction *CreateFree(Value *Source, BasicBlock *InsertAtEnd);
1633 static Instruction *CreateFree(Value *Source,
1636 static Instruction *CreateFree(Value *Source,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 754 static Instruction *createFree(Value *Source,
759 "createFree needs either InsertBefore or InsertAtEnd");
788 /// CreateFree - Generate the IR for a call to the builtin free function.
789 Instruction *CallInst::CreateFree(Value *Source, Instruction *InsertBefore) {
790 return createFree(Source, None, InsertBefore, nullptr);
792 Instruction *CallInst::CreateFree(Value *Source,
795 return createFree(Source, Bundles, InsertBefore, nullptr);
798 /// CreateFree - Generate the IR for a call to the builtin free function.
801 Instruction *CallInst::CreateFree(Value *Source, BasicBlock *InsertAtEnd) {
802 Instruction *FreeCall = createFree(Source, None, nullptr, InsertAtEnd)
    [all...]
Core.cpp 3539 CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 1637 func (b Builder) CreateFree(p Value) (v Value) {
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.mli 2121 See the method [llvm::LLVMBuilder::CreateFree]. *)

Completed in 67 milliseconds