Searched defs:IntToPtrInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstructions.h3625 // IntToPtrInst Class
3629 class IntToPtrInst : public CastInst { class in inherits:CastInst
3632 IntToPtrInst(
3640 IntToPtrInst(
3647 /// \brief Clone an identical IntToPtrInst
3648 IntToPtrInst *clone_impl() const override;
/external/llvm/lib/IR/
H A DInstructions.cpp2390 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2412 case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
3016 IntToPtrInst::IntToPtrInst( function in class:IntToPtrInst
3022 IntToPtrInst::IntToPtrInst( function in class:IntToPtrInst
3665 IntToPtrInst *IntToPtrInst::clone_impl() const {
3666 return new IntToPtrInst(getOperand(0), getType());

Completed in 2356 milliseconds