Home
last modified time | relevance | path

Searched refs:clone_impl (Results 1 – 5 of 5) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h77 AllocaInst *clone_impl() const override;
171 LoadInst *clone_impl() const override;
291 StoreInst *clone_impl() const override;
417 FenceInst *clone_impl() const override;
486 AtomicCmpXchgInst *clone_impl() const override;
639 AtomicRMWInst *clone_impl() const override;
804 GetElementPtrInst *clone_impl() const override;
1006 ICmpInst *clone_impl() const override;
1138 FCmpInst *clone_impl() const override;
1261 CallInst *clone_impl() const override;
[all …]
H A DInstruction.h489 virtual Instruction *clone_impl() const = 0;
H A DInstrTypes.h142 BinaryOperator *clone_impl() const override;
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp3633 GetElementPtrInst *GetElementPtrInst::clone_impl() const { in clone_impl() function in GetElementPtrInst
3637 BinaryOperator *BinaryOperator::clone_impl() const { in clone_impl() function in BinaryOperator
3641 FCmpInst* FCmpInst::clone_impl() const { in clone_impl() function in FCmpInst
3645 ICmpInst* ICmpInst::clone_impl() const { in clone_impl() function in ICmpInst
3649 ExtractValueInst *ExtractValueInst::clone_impl() const { in clone_impl() function in ExtractValueInst
3653 InsertValueInst *InsertValueInst::clone_impl() const { in clone_impl() function in InsertValueInst
3657 AllocaInst *AllocaInst::clone_impl() const { in clone_impl() function in AllocaInst
3664 LoadInst *LoadInst::clone_impl() const { in clone_impl() function in LoadInst
3669 StoreInst *StoreInst::clone_impl() const { in clone_impl() function in StoreInst
3675 AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const { in clone_impl() function in AtomicCmpXchgInst
[all …]
H A DInstruction.cpp533 Instruction *New = clone_impl(); in clone()