Home
last modified time | relevance | path

Searched refs:IntPtrTy (Results 1 – 25 of 890) sorted by relevance

12345678910>>...36

/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/Analysis/Utils/
H A DLocal.h31 Type *IntPtrTy = DL.getIntPtrType(GEP->getType()); variable
32 Value *Result = Constant::getNullValue(IntPtrTy);
39 unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
61 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
66 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
67 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
74 if (Op->getType() != IntPtrTy)
75 Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
78 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/Analysis/Utils/
H A DLocal.h32 Type *IntPtrTy = DL.getIntPtrType(GEP->getType()); variable
33 Value *Result = Constant::getNullValue(IntPtrTy);
40 unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
62 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
67 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
68 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
75 if (Op->getType() != IntPtrTy)
76 Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
79 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
/dports/devel/llvm70/llvm-7.0.1.src/include/llvm/Analysis/Utils/
H A DLocal.h32 Type *IntPtrTy = DL.getIntPtrType(GEP->getType()); variable
33 Value *Result = Constant::getNullValue(IntPtrTy);
40 unsigned IntPtrWidth = IntPtrTy->getScalarType()->getIntegerBitWidth();
62 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
67 Constant *Scale = ConstantInt::get(IntPtrTy, Size);
68 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
75 if (Op->getType() != IntPtrTy)
76 Op = Builder->CreateIntCast(Op, IntPtrTy, true, Op->getName()+".c");
79 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp46 IntegerType *IntPtrTy = B.getIntPtrTy(M->getDataLayout()); in create() local
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
65 ConstantInt::get(IntPtrTy, 0), ConstantInt::get(B.getInt32Ty(), 2), in create()
66 ConstantInt::get(IntPtrTy, Inits.size() - 1), in create()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang-tools-extra/clangd/unittests/
H A DExpectedTypeTest.cpp146 OpaqueType IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr")); in TEST_F() local
147 EXPECT_EQ(fromCompletionResult(decl("returns_ptr")), IntPtrTy); in TEST_F()
165 auto IntPtrTy = *OpaqueType::fromType(ASTCtx(), typeOf("int_ptr_")); in TEST_F() local
166 EXPECT_EQ(fromCompletionResult(decl("returns_not_dependent")), IntPtrTy); in TEST_F()
169 EXPECT_EQ(fromCompletionResult(decl("var_not_dependent")), IntPtrTy); in TEST_F()

12345678910>>...36