| /llvm-project-15.0.7/clang/unittests/Analysis/FlowSensitive/ |
| H A D | TransferTest.cpp | 841 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(FooVal)); in TEST() 847 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 1433 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 1509 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 1581 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 1622 ASSERT_TRUE(isa_and_nonnull<IntegerValue>(BarVal)); in TEST() 2128 EXPECT_TRUE(isa<IntegerValue>(FooVal)); in TEST() 2129 EXPECT_TRUE(isa<IntegerValue>(BarVal)); in TEST() 2157 EXPECT_TRUE(isa<IntegerValue>(FooVal)); in TEST() 2158 EXPECT_TRUE(isa<IntegerValue>(BarVal)); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | MCAsmParser.cpp | 144 int64_t &IntegerValue) { in parseGNUAttribute() argument 157 IntegerValue = Tok.getIntVal(); in parseGNUAttribute()
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | Value.h | 217 class IntegerValue : public Value { 219 explicit IntegerValue() : Value(Kind::Integer) {} in IntegerValue() function
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | MveEmitter.cpp | 595 uint32_t IntegerValue; member in __anondd1c47770111::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-15.0.7/llvm/include/llvm/MC/MCParser/ |
| H A D | MCAsmParser.h | 344 bool parseGNUAttribute(SMLoc L, int64_t &Tag, int64_t &IntegerValue);
|
| /llvm-project-15.0.7/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 80 ExpressionFormat::getMatchingString(ExpressionValue IntegerValue) const { in getMatchingString() 82 StringRef SignPrefix = IntegerValue.isNegative() ? "-" : ""; in getMatchingString() 85 Expected<int64_t> SignedValue = IntegerValue.getSignedValue(); in getMatchingString() 89 AbsoluteValue = cantFail(IntegerValue.getAbsolute().getUnsignedValue()); in getMatchingString() 93 Expected<uint64_t> UnsignedValue = IntegerValue.getUnsignedValue(); in getMatchingString()
|
| /llvm-project-15.0.7/llvm/lib/Target/CSKY/AsmParser/ |
| H A D | CSKYAsmParser.cpp | 1666 int64_t IntegerValue = 0; in parseDirectiveAttribute() local 1680 IntegerValue = CE->getValue(); in parseDirectiveAttribute() 1693 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
|
| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/AsmParser/ |
| H A D | PPCAsmParser.cpp | 1713 int64_t IntegerValue; in ParseGNUAttribute() local 1714 if (!getParser().parseGNUAttribute(L, Tag, IntegerValue)) in ParseGNUAttribute() 1717 getParser().getStreamer().emitGNUAttribute(Tag, IntegerValue); in ParseGNUAttribute()
|
| /llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.cpp | 454 return &takeOwnership(std::make_unique<IntegerValue>()); in createValueUnlessSelfReferential()
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 2194 int64_t IntegerValue = 0; in parseDirectiveAttribute() local 2211 IntegerValue = CE->getValue(); in parseDirectiveAttribute() 2224 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
|
| /llvm-project-15.0.7/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 1409 uint64_t IntegerValue; member 1426 return Kind == IntegerLiteral ? IntegerValue : 0; in getInteger() 1647 Tok.IntegerValue = Value; in consumeToken()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 13162 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), in DiagnoseFloatingImpCast() local 13165 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); in DiagnoseFloatingImpCast() 13177 if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) { in DiagnoseFloatingImpCast() 13203 } else if (IntegerValue == 0) { in DiagnoseFloatingImpCast() 13211 if (IntegerValue.isUnsigned()) { in DiagnoseFloatingImpCast() 13212 if (!IntegerValue.isMaxValue()) { in DiagnoseFloatingImpCast() 13217 if (!IntegerValue.isMaxSignedValue() && in DiagnoseFloatingImpCast() 13218 !IntegerValue.isMinSignedValue()) { in DiagnoseFloatingImpCast() 13231 IntegerValue.toString(PrettyTargetValue); in DiagnoseFloatingImpCast()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 11410 int64_t IntegerValue = 0; in parseDirectiveEabiAttr() local 11434 IntegerValue = CE->getValue(); in parseDirectiveEabiAttr() 11455 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); in parseDirectiveEabiAttr() 11457 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveEabiAttr()
|