/llvm-project/clang/unittests/Analysis/FlowSensitive/ |
H A D | TransferTest.cpp | 255 EXPECT_TRUE(isa_and_nonnull<IntegerValue>(FooVal)); in TEST() 377 EXPECT_TRUE(isa<IntegerValue>(getFieldValue(FooLoc, *BarDecl, Env))); in TEST() 420 EXPECT_TRUE(isa<IntegerValue>(getFieldValue(FooLoc, *BarDecl, Env))); in TEST() 484 EXPECT_TRUE(isa<IntegerValue>(getFieldValue(FooLoc, *BarDecl, Env))); in TEST() 813 EXPECT_TRUE(isa_and_nonnull<IntegerValue>(FooVal)); in TEST() 816 EXPECT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 894 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(FooVal)); in TEST() 921 getValueForDecl<IntegerValue>(ASTCtx, Before, "Foo"); in TEST() 923 getValueForDecl<IntegerValue>(ASTCtx, After, "Foo"); in TEST() 947 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(FooVa in TEST() [all...] |
H A D | ValueTest.cpp | 22 IntegerValue V; in TEST() 27 IntegerValue V1; in TEST() 28 IntegerValue V2; in TEST()
|
H A D | DataflowEnvironmentTest.cpp | 100 IntegerValue *Val1 = in TEST_F() 101 cast<IntegerValue>(Env.createValue(Unit->getASTContext().IntTy)); in TEST_F() 105 IntegerValue *Val2 = in TEST_F() 106 cast<IntegerValue>(Env.createValue(Unit->getASTContext().IntTy)); in TEST_F() 322 EXPECT_TRUE(isa<IntegerValue>(BarVal)); in TEST_F()
|
H A D | RecordOpsTest.cpp | 139 Env.create<IntegerValue>()); in TEST() 153 Env.setValue(*S2.getChild(*OuterIntDecl), Env.create<IntegerValue>()); in TEST() 173 Env.create<IntegerValue>()); in TEST() 180 Env.create<IntegerValue>()); in TEST()
|
/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | Arena.h | 85 IntegerValue &makeIntLiteral(llvm::APInt Value); 135 llvm::DenseMap<llvm::APInt, IntegerValue *> IntegerLiterals;
|
H A D | Value.h | 160 class IntegerValue : public Value { 162 explicit IntegerValue() : Value(Kind::Integer) {} in IntegerValue() function
|
H A D | DataflowEnvironment.h | 563 IntegerValue &getIntLiteralValue(llvm::APInt Value) const { in getIntLiteralValue()
|
/llvm-project/llvm/lib/MC/MCParser/ |
H A D | MCAsmParser.cpp | 145 int64_t &IntegerValue) { in parseGNUAttribute() argument 158 IntegerValue = Tok.getIntVal(); in parseGNUAttribute()
|
/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | Arena.cpp | 104 IntegerValue &Arena::makeIntLiteral(llvm::APInt Value) { in makeIntLiteral() 108 It->second = &create<IntegerValue>(); in makeIntLiteral()
|
H A D | DataflowEnvironment.cpp | 1001 return &arena().create<IntegerValue>(); in createLocAndMaybeValue()
|
/llvm-project/clang/utils/TableGen/ |
H A D | MveEmitter.cpp | 595 uint32_t IntegerValue; member in __anon6b6344ba0111::IntLiteralResult 596 IntLiteralResult(const ScalarType *IntegerType, uint32_t IntegerValue) in IntLiteralResult() argument 597 : IntegerType(IntegerType), IntegerValue(IntegerValue) {} in IntLiteralResult() 603 OS << ParamAlloc.allocParam(IntegerType->cName(), utostr(IntegerValue)) in genCode() 607 uint32_t integerConstantValue() const override { return IntegerValue; } in integerConstantValue()
|
/llvm-project/llvm/lib/Target/SystemZ/AsmParser/ |
H A D | SystemZAsmParser.cpp | 1384 int64_t IntegerValue; in tryParseRegister() 1385 if (!Parser.parseGNUAttribute(L, Tag, IntegerValue)) in tryParseRegister() 1389 if (Tag != 8 || (IntegerValue < 0 || IntegerValue > 2)) in tryParseRegister() 1392 Parser.getStreamer().emitGNUAttribute(Tag, IntegerValue); in tryParseRegister() 1344 int64_t IntegerValue; ParseGNUAttribute() local
|
/llvm-project/llvm/include/llvm/MC/MCParser/ |
H A D | MCAsmParser.h | 346 bool parseGNUAttribute(SMLoc L, int64_t &Tag, int64_t &IntegerValue);
|
/llvm-project/llvm/lib/Target/CSKY/AsmParser/ |
H A D | CSKYAsmParser.cpp | 1571 int64_t IntegerValue = 0; in parseDirectiveAttribute() 1585 IntegerValue = CE->getValue(); in parseDirectiveAttribute() 1598 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute() 1573 int64_t IntegerValue = 0; parseDirectiveAttribute() local
|
/llvm-project/llvm/lib/Target/PowerPC/AsmParser/ |
H A D | PPCAsmParser.cpp | 1853 int64_t IntegerValue; in ParseDirectiveLocalEntry() 1854 if (!getParser().parseGNUAttribute(L, Tag, IntegerValue)) in ParseDirectiveLocalEntry() 1857 getParser().getStreamer().emitGNUAttribute(Tag, IntegerValue); in ParseDirectiveLocalEntry() 1868 int64_t IntegerValue; ParseGNUAttribute() local
|
/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
H A D | HexagonAsmParser.cpp | 694 int64_t IntegerValue = 0; in parseDirectiveAttribute() 703 IntegerValue = CE->getValue(); in parseDirectiveAttribute() 708 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute() 695 int64_t IntegerValue = 0; parseDirectiveAttribute() local
|
/llvm-project/clang/lib/Lex/ |
H A D | ModuleMap.cpp | 1505 uint64_t IntegerValue; in getInteger() 1522 return Kind == IntegerLiteral ? IntegerValue : 0; 1740 Tok.IntegerValue = Value; in consumeToken() 1487 uint64_t IntegerValue; global() member
|
/llvm-project/llvm/lib/Target/RISCV/AsmParser/ |
H A D | RISCVAsmParser.cpp | 3188 int64_t IntegerValue = 0; 3205 IntegerValue = CE->getValue(); in emitLoadTLSGDAddress() 3218 getTargetStreamer().emitAttribute(Tag, IntegerValue); in emitLoadStoreSymbol() 3004 int64_t IntegerValue = 0; parseDirectiveAttribute() local
|
/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 10816 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), in CheckImplicitConversion() 10819 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); in CheckImplicitConversion() 10831 if (S.ObjC().isSignedCharBool(T) && IntegerValue != 0 && IntegerValue != 1) { in CheckImplicitConversion() 10856 } else if (IntegerValue == 0) { in CheckImplicitConversion() 10864 if (IntegerValue.isUnsigned()) { in CheckImplicitConversion() 10865 if (!IntegerValue.isMaxValue()) { in CheckImplicitConversion() 10869 } else { // IntegerValue.isSigned() in CheckImplicitConversion() 10870 if (!IntegerValue.isMaxSignedValue() && in CheckImplicitConversion() 10871 !IntegerValue in CheckImplicitConversion() 10436 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), DiagnoseFloatingImpCast() local [all...] |
/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 11899 int64_t IntegerValue = 0; in parseDirectiveEabiAttr() 11923 IntegerValue = CE->getValue(); 11952 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); in parseDirectiveFnStart() 11954 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveFnStart() 11843 int64_t IntegerValue = 0; parseDirectiveEabiAttr() local
|