HomeSort by relevance Sort by last modified time
    Searched refs:ParentPad (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/lib/Analysis/
EHPersonalities.cpp 98 Value *ParentPad = CatchRet->getCatchSwitchParentPad();
99 if (isa<ConstantTokenNone>(ParentPad))
102 SuccColor = cast<Instruction>(ParentPad)->getParent();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
EHPersonalities.cpp 125 Value *ParentPad = CatchRet->getCatchSwitchParentPad();
126 if (isa<ConstantTokenNone>(ParentPad))
129 SuccColor = cast<Instruction>(ParentPad)->getParent();
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp 211 Value *ParentPad) {
216 if (CatchSwitch->getParentPad() != ParentPad)
222 if (CleanupPad->getParentPad() != ParentPad)
477 // per the ParentPad linkage on EH pads, but skipping over catchswitches).
500 const Value *ParentPad;
502 ParentPad = CPI->getParentPad();
504 ParentPad = CSI->getParentPad();
507 if (isa<ConstantTokenNone>(ParentPad))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
WinEHPrepare.cpp 220 Value *ParentPad) {
225 if (CatchSwitch->getParentPad() != ParentPad)
231 if (CleanupPad->getParentPad() != ParentPad)
487 // per the ParentPad linkage on EH pads, but skipping over catchswitches).
510 const Value *ParentPad;
512 ParentPad = CPI->getParentPad();
514 ParentPad = CSI->getParentPad();
517 if (isa<ConstantTokenNone>(ParentPad))
    [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
Instructions.h     [all...]
IRBuilder.h 726 CatchSwitchInst *CreateCatchSwitch(Value *ParentPad, BasicBlock *UnwindBB,
729 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers),
733 CatchPadInst *CreateCatchPad(Value *ParentPad, ArrayRef<Value *> Args,
735 return Insert(CatchPadInst::Create(ParentPad, Args), Name);
738 CleanupPadInst *CreateCleanupPad(Value *ParentPad,
741 return Insert(CleanupPadInst::Create(ParentPad, Args), Name);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
InstrTypes.h     [all...]
Instructions.h     [all...]
IRBuilder.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
echo.cpp 668 LLVMValueRef ParentPad = CloneValue(LLVMGetParentCatchSwitch(Src));
673 Dst = LLVMBuildCatchPad(Builder, ParentPad,
678 LLVMValueRef ParentPad = CloneValue(LLVMGetOperand(Src, 0));
683 Dst = LLVMBuildCleanupPad(Builder, ParentPad,
688 LLVMValueRef ParentPad = CloneValue(LLVMGetOperand(Src, 0));
694 Dst = LLVMBuildCatchSwitch(Builder, ParentPad, UnwindBB, NumHandlers, Name);
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 883 llvm::Value *ParentPad = CGF.CurrentFuncletPad;
884 if (!ParentPad)
885 ParentPad = llvm::ConstantTokenNone::get(CGF.getLLVMContext());
891 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
    [all...]
CGCleanup.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Instructions.cpp 794 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
798 : TerminatorInst(ParentPad->getType(), Instruction::CatchSwitch, nullptr, 0,
802 init(ParentPad, UnwindDest, NumReservedValues + 1);
806 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
809 : TerminatorInst(ParentPad->getType(), Instruction::CatchSwitch, nullptr, 0,
813 init(ParentPad, UnwindDest, NumReservedValues + 1);
    [all...]
Core.cpp     [all...]
Verifier.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 661 Value *ParentPad = nullptr;
663 ParentPad = FuncletPad->getParentPad();
665 ParentPad = CatchSwitch->getParentPad();
669 auto *NewCleanupPad = CleanupPadInst::Create(ParentPad, {}, "", NewBB);
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
Verifier.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 626 if (auto *ParentPad =
636 UnwindDestToken = getUnwindDestToken(ParentPad, FuncletUnwindMap);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
InlineFunction.cpp 706 if (auto *ParentPad =
716 UnwindDestToken = getUnwindDestToken(ParentPad, FuncletUnwindMap);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1310 milliseconds

1 2