Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/
DInstructions.h59 virtual AllocaInst *clone_impl() const;
139 virtual LoadInst *clone_impl() const;
259 virtual StoreInst *clone_impl() const;
386 virtual FenceInst *clone_impl() const;
455 virtual AtomicCmpXchgInst *clone_impl() const;
560 virtual AtomicRMWInst *clone_impl() const;
725 virtual GetElementPtrInst *clone_impl() const;
889 virtual ICmpInst *clone_impl() const;
1040 virtual FCmpInst *clone_impl() const;
1168 virtual CallInst *clone_impl() const;
[all …]
DInstruction.h379 virtual Instruction *clone_impl() const = 0;
DInstrTypes.h54 virtual TerminatorInst *clone_impl() const = 0;
148 virtual BinaryOperator *clone_impl() const;
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInstructions.cpp3315 GetElementPtrInst *GetElementPtrInst::clone_impl() const { in clone_impl() function in GetElementPtrInst
3319 BinaryOperator *BinaryOperator::clone_impl() const { in clone_impl() function in BinaryOperator
3323 FCmpInst* FCmpInst::clone_impl() const { in clone_impl() function in FCmpInst
3327 ICmpInst* ICmpInst::clone_impl() const { in clone_impl() function in ICmpInst
3331 ExtractValueInst *ExtractValueInst::clone_impl() const { in clone_impl() function in ExtractValueInst
3335 InsertValueInst *InsertValueInst::clone_impl() const { in clone_impl() function in InsertValueInst
3339 AllocaInst *AllocaInst::clone_impl() const { in clone_impl() function in AllocaInst
3345 LoadInst *LoadInst::clone_impl() const { in clone_impl() function in LoadInst
3350 StoreInst *StoreInst::clone_impl() const { in clone_impl() function in StoreInst
3356 AtomicCmpXchgInst *AtomicCmpXchgInst::clone_impl() const { in clone_impl() function in AtomicCmpXchgInst
[all …]
DInstruction.cpp448 Instruction *New = clone_impl(); in clone()