| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Operator.h | 540 : public ConcreteOperator<Operator, Instruction::PtrToInt> { 541 friend class PtrToInt; variable
|
| H A D | ConstantFolder.h | 213 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
| H A D | NoFolder.h | 277 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
| H A D | Instruction.def | 193 HANDLE_CAST_INST(46, PtrToInt, PtrToIntInst) // Pointer -> Integer
|
| H A D | PatternMatch.h | 1156 inline CastClass_match<OpTy, Instruction::PtrToInt> m_PtrToInt(const OpTy &Op) { in m_PtrToInt() 1157 return CastClass_match<OpTy, Instruction::PtrToInt>(Op); in m_PtrToInt()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | SpeculativeExecution.cpp | 230 case Instruction::PtrToInt: in ComputeSpeculationCost()
|
| H A D | GVNSink.cpp | 474 case Instruction::PtrToInt: in lookupOrAdd()
|
| /freebsd-12.1/contrib/llvm/lib/Target/XCore/ |
| H A D | XCoreLowerThreadLocal.cpp | 117 case Instruction::PtrToInt: in createReplacementInstr()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/ |
| H A D | IRInterpreter.cpp | 263 case Instruction::PtrToInt: in ResolveConstantValue() 465 case Instruction::PtrToInt: in CanResolveConstant() 580 case Instruction::PtrToInt: in CanInterpret() 1233 case Instruction::PtrToInt: { in Interpret()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instructions.cpp | 2335 case Instruction::PtrToInt: in isNoopCast() 2587 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore); in Create() 2609 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd); in Create() 2677 return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd); in CreatePointerCast() 2695 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore); in CreatePointerCast() 2730 return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore); in CreateBitOrPointerCast() 2960 return PtrToInt; // ptr -> int in getCastOpcode() 3060 case Instruction::PtrToInt: in castIsValid() 3237 ) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) { in PtrToIntInst() 3243 ) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) { in PtrToIntInst()
|
| H A D | Constants.cpp | 504 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt && in needsRelocation() 505 RHS->getOpcode() == Instruction::PtrToInt && in needsRelocation() 1225 case Instruction::PtrToInt: in getWithOperands() 1558 case Instruction::PtrToInt: in getCast() 1757 return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced); in getPtrToInt() 2987 case Instruction::PtrToInt: in getAsInstruction()
|
| H A D | Instruction.cpp | 348 case PtrToInt: return "ptrtoint"; in getOpcodeName()
|
| H A D | ConstantRange.cpp | 609 case Instruction::PtrToInt: in castOp()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 299 if (CE->getOpcode() == Instruction::PtrToInt || in IsConstantOffsetFromGlobal() 337 Cast = Instruction::PtrToInt; in ConstantFoldLoadThroughBitcast() 1207 if (CE0->getOpcode() == Instruction::PtrToInt) { in ConstantFoldCompareInstOperands() 1233 if (CE0->getOpcode() == Instruction::PtrToInt) { in ConstantFoldCompareInstOperands() 1283 case Instruction::PtrToInt: in ConstantFoldCastOperand() 1308 if (CE->getOpcode() == Instruction::PtrToInt) { in ConstantFoldCastOperand()
|
| H A D | ScalarEvolutionExpander.cpp | 115 Op == Instruction::PtrToInt || in InsertNoopCastOfTo() 131 if ((Op == Instruction::PtrToInt || Op == Instruction::IntToPtr) && in InsertNoopCastOfTo() 134 if ((CI->getOpcode() == Instruction::PtrToInt || in InsertNoopCastOfTo() 140 if ((CE->getOpcode() == Instruction::PtrToInt || in InsertNoopCastOfTo()
|
| H A D | CFLGraph.h | 517 case Instruction::PtrToInt: { in visitConstantExpr()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | TargetFolder.h | 196 return CreateCast(Instruction::PtrToInt, C, DestTy); in CreatePtrToInt()
|
| H A D | TargetTransformInfoImpl.h | 85 case Instruction::PtrToInt: { in getOperationCost()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineFunction.cpp | 988 A = ConstantFoldCastOperand(Instruction::PtrToInt, in CanShareConstantPoolEntry() 994 B = ConstantFoldCastOperand(Instruction::PtrToInt, in CanShareConstantPoolEntry()
|
| /freebsd-12.1/contrib/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1852 if (Cexpr->getOpcode() == Instruction::PtrToInt) { in bufferLEByte() 1874 if (Cexpr->getOpcode() == Instruction::PtrToInt) { in bufferLEByte() 2092 case Instruction::PtrToInt: { in lowerConstantForGV()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | Evaluator.cpp | 92 case Instruction::PtrToInt: in isSimpleEnoughValueToCommitHelper()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteAlloca.cpp | 536 if (UseInst->getOpcode() == Instruction::PtrToInt) in collectUsesWithPtrTypes()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 171 case Instruction::PtrToInt: in getIntImmCost()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 850 INSTKEYWORD(ptrtoint, PtrToInt); in LexIdentifier()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.cpp | 128 case Instruction::PtrToInt: in getIntImmCost()
|