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

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
basetsd.h 76 static __inline int PtrToInt(const void *p) { return((int) (INT_PTR) p); }
112 #define PtrToInt(p) ((INT)(INT_PTR) (p))
  /external/llvm/include/llvm/IR/
Operator.h 454 : public ConcreteOperator<Operator, Instruction::PtrToInt> {
455 friend class PtrToInt;
ConstantFolder.h 184 return CreateCast(Instruction::PtrToInt, C, DestTy);
NoFolder.h 237 return CreateCast(Instruction::PtrToInt, C, DestTy);
PatternMatch.h 793 /// \brief Matches PtrToInt.
795 inline CastClass_match<OpTy, Instruction::PtrToInt> m_PtrToInt(const OpTy &Op) {
796 return CastClass_match<OpTy, Instruction::PtrToInt>(Op);
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 417 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::PtrToInt,
425 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::PtrToInt,
433 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::PtrToInt,
441 CastInst::PtrToInt,
448 CastInst::PtrToInt,
472 // Cannot simplify addrspacecast, ptrtoint
474 CastInst::PtrToInt,
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 171 case Instruction::PtrToInt:
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 117 case Instruction::PtrToInt:
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 197 return CreateCast(Instruction::PtrToInt, C, DestTy);
TargetTransformInfoImpl.h 84 case Instruction::PtrToInt: {
85 // A ptrtoint cast is free so long as the result is large enough to store
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
Instruction.cpp 249 case PtrToInt: return "ptrtoint";
Constants.cpp 448 if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
449 RHS->getOpcode() == Instruction::PtrToInt &&
    [all...]
AutoUpgrade.cpp     [all...]
ConstantFold.cpp 625 case Instruction::PtrToInt: // always treated as unsigned
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 250 if (CE->getOpcode() == Instruction::PtrToInt ||
504 Cast = Instruction::PtrToInt;
665 // PtrToInt may change the bitwidth so we have convert to the right size
747 // "inttoptr (sub (ptrtoint Ptr), V)"
    [all...]
CostModel.cpp 444 case Instruction::PtrToInt:
ScalarEvolutionExpander.cpp 117 Op == Instruction::PtrToInt ||
132 // Short-circuit unnecessary inttoptr<->ptrtoint casts.
133 if ((Op == Instruction::PtrToInt || Op == Instruction::IntToPtr) &&
136 if ((CI->getOpcode() == Instruction::PtrToInt ||
142 if ((CE->getOpcode() == Instruction::PtrToInt ||
361 /// a GEP instead of using ptrtoint+arithmetic+inttoptr. This helps
368 /// ScalarEvolution not recognizing inttoptr and ptrtoint operators, as
490 // better than ptrtoint+arithmetic+inttoptr at least.
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 257 // FIXME: Correctly handle ptrtoint instructions.
259 if (UseInst && UseInst->getOpcode() == Instruction::PtrToInt)
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 890 A = ConstantFoldInstOperands(Instruction::PtrToInt, IntTy,
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 110 case Instruction::PtrToInt:
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 855 case Instruction::PtrToInt: Out << "Instruction::PtrToInt"; break;
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 738 INSTKEYWORD(ptrtoint, PtrToInt);
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 163 I->getOpcode() == Instruction::PtrToInt ||
    [all...]

Completed in 474 milliseconds

1 2 3