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

  /external/llvm/lib/IR/
Instructions.cpp 571 static Instruction *createFree(Value *Source,
576 "createFree needs either InsertBefore or InsertAtEnd");
605 /// CreateFree - Generate the IR for a call to the builtin free function.
606 Instruction *CallInst::CreateFree(Value *Source, Instruction *InsertBefore) {
607 return createFree(Source, None, InsertBefore, nullptr);
609 Instruction *CallInst::CreateFree(Value *Source,
612 return createFree(Source, Bundles, InsertBefore, nullptr);
615 /// CreateFree - Generate the IR for a call to the builtin free function.
618 Instruction *CallInst::CreateFree(Value *Source, BasicBlock *InsertAtEnd) {
619 Instruction *FreeCall = createFree(Source, None, nullptr, InsertAtEnd)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 463 static Instruction* createFree(Value* Source, Instruction *InsertBefore,
466 "createFree needs either InsertBefore or InsertAtEnd");
495 /// CreateFree - Generate the IR for a call to the builtin free function.
496 Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
497 return createFree(Source, InsertBefore, NULL);
500 /// CreateFree - Generate the IR for a call to the builtin free function.
503 Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
504 Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
505 assert(FreeCall && "CreateFree did not create a CallInst");
    [all...]

Completed in 88 milliseconds