Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DGetElementPtr.rst273 How is GEP different from ``ptrtoint``, arithmetic, and ``inttoptr``?
278 With ptrtoint, you have to pick an integer type. One approach is to pick i64;
412 of GEP's special aliasing rules do not apply to pointers computed from ptrtoint,
422 Also as above, ptrtoint and inttoptr provide an alternative way to do this which
H A DLangRef.rst605 ill-typed, and so are ``ptrtoint`` instructions converting values of
2636 :ref:`getelementptr <i_getelementptr>`, :ref:`ptrtoint <i_ptrtoint>` and
2732 %i = ptrtoint i8* %d to i64
4064 allows ``ptrtoint`` and arithmetic to be performed on these values so
4157 ``ptrtoint (CST to TYPE)``
4158 Perform the :ref:`ptrtoint operation <i_ptrtoint>` on constants.
10237 pointer comparison or ``ptrtoint`` (including ``ptrtoint``-like operations
10703 '``ptrtoint .. to``' Instruction
10711 <result> = ptrtoint <ty> <value> to <ty2> ; yields ty2
10716 The '``ptrtoint``' instruction converts the pointer or a vector of
[all …]
H A DStatepoints.rst746 ptrtoint or inttoptr cast (which is common for such use cases) breaks the
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/syntax/
H A Dllvm.vim33 syn keyword llvmStatement olt one or ord phi ptrtoint resume ret sdiv select
/netbsd-src/external/apache2/llvm/dist/llvm/utils/
H A Dllvm.grm62 uitofp | sitofp | fptoui | fptosi | inttoptr | ptrtoint ;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td371 // Fold add ptrtoint(x), y -> ptrtoint (ptr_add x), y
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLLexer.cpp886 INSTKEYWORD(ptrtoint, PtrToInt); in LexIdentifier()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/Frontend/
H A DPerformanceTips.rst127 #. Use ptrtoint/inttoptr sparingly (they interfere with pointer aliasing
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
H A Dmsan_test.cc2600 TEST(MemorySanitizer, ptrtoint) { in TEST() argument