Home
last modified time | relevance | path

Searched refs:IntegerValue (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp146 int64_t &IntegerValue) { in parseGNUAttribute() argument
159 IntegerValue = Tok.getIntVal(); in parseGNUAttribute()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h242 class IntegerValue : public Value {
244 explicit IntegerValue() : Value(Kind::Integer) {} in IntegerValue() function
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp1367 int64_t IntegerValue; in ParseGNUAttribute() local
1368 if (!Parser.parseGNUAttribute(L, Tag, IntegerValue)) in ParseGNUAttribute()
1372 if (Tag != 8 || (IntegerValue < 0 || IntegerValue > 2)) { in ParseGNUAttribute()
1378 Parser.getStreamer().emitGNUAttribute(Tag, IntegerValue); in ParseGNUAttribute()
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DMveEmitter.cpp595 uint32_t IntegerValue; member in __anonece5a09e0111::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()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h346 bool parseGNUAttribute(SMLoc L, int64_t &Tag, int64_t &IntegerValue);
/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp80 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()
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/AsmParser/
H A DCSKYAsmParser.cpp1667 int64_t IntegerValue = 0; in parseDirectiveAttribute() local
1681 IntegerValue = CE->getValue(); in parseDirectiveAttribute()
1694 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1797 int64_t IntegerValue; in ParseGNUAttribute() local
1798 if (!getParser().parseGNUAttribute(L, Tag, IntegerValue)) in ParseGNUAttribute()
1801 getParser().getStreamer().emitGNUAttribute(Tag, IntegerValue); in ParseGNUAttribute()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DModuleMap.cpp1443 uint64_t IntegerValue; member
1460 return Kind == IntegerLiteral ? IntegerValue : 0; in getInteger()
1681 Tok.IntegerValue = Value; in consumeToken()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp2197 int64_t IntegerValue = 0; in parseDirectiveAttribute() local
2214 IntegerValue = CE->getValue(); in parseDirectiveAttribute()
2227 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveAttribute()
/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp700 return &takeOwnership(std::make_unique<IntegerValue>()); in createValueUnlessSelfReferential()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp13493 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), in DiagnoseFloatingImpCast() local
13496 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); in DiagnoseFloatingImpCast()
13508 if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) { in DiagnoseFloatingImpCast()
13534 } else if (IntegerValue == 0) { in DiagnoseFloatingImpCast()
13542 if (IntegerValue.isUnsigned()) { in DiagnoseFloatingImpCast()
13543 if (!IntegerValue.isMaxValue()) { in DiagnoseFloatingImpCast()
13548 if (!IntegerValue.isMaxSignedValue() && in DiagnoseFloatingImpCast()
13549 !IntegerValue.isMinSignedValue()) { in DiagnoseFloatingImpCast()
13562 IntegerValue.toString(PrettyTargetValue); in DiagnoseFloatingImpCast()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp11431 int64_t IntegerValue = 0; in parseDirectiveEabiAttr() local
11455 IntegerValue = CE->getValue(); in parseDirectiveEabiAttr()
11484 getTargetStreamer().emitIntTextAttribute(Tag, IntegerValue, StringValue); in parseDirectiveEabiAttr()
11486 getTargetStreamer().emitAttribute(Tag, IntegerValue); in parseDirectiveEabiAttr()