Home
last modified time | relevance | path

Searched refs:ptrtoint (Results 1 – 11 of 11) sorted by relevance

/openbsd/gnu/llvm/llvm/docs/
H A DGetElementPtr.rst260 How is GEP different from ``ptrtoint``, arithmetic, and ``inttoptr``?
265 With ptrtoint, you have to pick an integer type. One approach is to pick i64;
399 of GEP's special aliasing rules do not apply to pointers computed from ptrtoint,
409 Also as above, ptrtoint and inttoptr provide an alternative way to do this which
H A DPointerAuth.md253 %fp_i = ptrtoint void ()* %fp to i64
H A DLangRef.rst632 ``ptrtoint(v)-ptrtoint(v) == 0``, don't hold for non-integral types.
3023 %i = ptrtoint ptr %d to i64
3659 nor is it legal to use them in :ref:`ptrtoint <i_ptrtoint>` or
4474 ``ptrtoint (CST to TYPE)``
10744 pointer comparison or ``ptrtoint`` (including ``ptrtoint``-like operations
11206 '``ptrtoint .. to``' Instruction
11233 The '``ptrtoint``' instruction converts ``value`` to integer type
11345 or :ref:`ptrtoint <i_ptrtoint>` instructions first.
21667 '``llvm.vp.ptrtoint.*``' Intrinsics
21718 %t = ptrtoint <4 x ptr> %a to <4 x i8>
[all …]
H A DStatepoints.rst757 ptrtoint or inttoptr cast (which is common for such use cases) breaks the
/openbsd/gnu/llvm/llvm/utils/vim/syntax/
H A Dllvm.vim33 syn keyword llvmStatement oge ogt ole olt one or ord phi ptrtoint resume ret
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DVPIntrinsics.def414 // llvm.vp.ptrtoint(x,mask,vlen)
415 HELPER_REGISTER_INT_CAST_VP(ptrtoint, VP_PTRTOINT, PtrToInt)
/openbsd/gnu/llvm/llvm/utils/
H A Dllvm.grm62 uitofp | sitofp | fptoui | fptosi | inttoptr | ptrtoint ;
/openbsd/gnu/llvm/llvm/lib/AsmParser/
H A DLLLexer.cpp854 INSTKEYWORD(ptrtoint, PtrToInt); in LexIdentifier()
/openbsd/gnu/llvm/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td483 // Fold add ptrtoint(x), y -> ptrtoint (ptr_add x), y
/openbsd/gnu/llvm/llvm/docs/Frontend/
H A DPerformanceTips.rst127 #. Use ptrtoint/inttoptr sparingly (they interfere with pointer aliasing
/openbsd/gnu/llvm/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp2630 TEST(MemorySanitizer, ptrtoint) { in TEST() argument