Home
last modified time | relevance | path

Searched refs:IntValue (Results 1 – 23 of 23) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVELFStreamer.h24 unsigned IntValue; member
47 Item->IntValue = Value; in setAttributeItem()
70 void setAttributeItems(unsigned Attribute, unsigned IntValue, in setAttributeItems() argument
77 Item->IntValue = IntValue; in setAttributeItems()
83 Contents.push_back({AttributeType::NumericAndText, Attribute, IntValue, in setAttributeItems()
89 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
H A DRISCVELFStreamer.cpp90 unsigned IntValue, in emitIntTextAttribute() argument
92 setAttributeItems(Attribute, IntValue, StringValue, in emitIntTextAttribute()
134 Streamer.emitULEB128IntValue(item.IntValue); in finishAttributeSection()
141 Streamer.emitULEB128IntValue(item.IntValue); in finishAttributeSection()
159 Result += getULEB128Size(item.IntValue); in calculateContentSize()
167 Result += getULEB128Size(item.IntValue); in calculateContentSize()
H A DRISCVTargetStreamer.h35 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
48 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
H A DRISCVTargetStreamer.cpp37 unsigned IntValue, in emitIntTextAttribute() argument
146 unsigned IntValue, in emitIntTextAttribute() argument
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp548 static MatchTableRecord IntValue(int64_t IntValue) { in IntValue() function in __anon612774070111::MatchTable
1845 << MatchTable::IntValue(InsnVarID); in emitPredicateOpcodes()
2474 << MatchTable::IntValue(getInsnVarID()) in emitCaptureOpcodes()
2700 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
2730 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
2811 Table << MatchTable::IntValue(0); in emitRenderOpcodes()
2856 Table << MatchTable::IntValue(0); in emitRenderOpcodes()
2943 << MatchTable::IntValue(RendererID); in emitRenderOpcodes()
2974 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
3507 << MatchTable::IntValue(OtherInsnVarID) in emitPredicateOpcodes()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp24 const uint64_t IntValue = in initializationPatternFor() local
40 return llvm::ConstantInt::get(Ty, IntValue); in initializationPatternFor()
42 Ty, llvm::APInt::getSplat(BitWidth, llvm::APInt(64, IntValue))); in initializationPatternFor()
51 auto *Int = llvm::ConstantInt::get(IntTy, IntValue); in initializationPatternFor()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp136 llvm::APInt IntValue; in tryExpandAsInteger() local
138 if (ValueStr.getAsInteger(AutoSenseRadix, IntValue)) in tryExpandAsInteger()
145 IntValue = -IntValue; in tryExpandAsInteger()
148 return IntValue.getSExtValue(); in tryExpandAsInteger()
H A DBugReporterVisitors.cpp2992 Optional<const llvm::APSInt *> IntValue; in printValue() local
2994 IntValue = getConcreteIntegerValue(CondVarExpr, N); in printValue()
2996 if (IsAssuming || !IntValue.hasValue()) { in printValue()
3003 Out << (IntValue.getValue()->getBoolValue() ? "true" : "false"); in printValue()
3005 Out << *IntValue.getValue(); in printValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCELFStreamer.cpp744 Item->IntValue = Value; in setAttributeItem()
771 void MCELFStreamer::setAttributeItems(unsigned Attribute, unsigned IntValue, in setAttributeItems() argument
779 Item->IntValue = IntValue; in setAttributeItems()
786 IntValue, std::string(StringValue)}; in setAttributeItems()
808 Result += getULEB128Size(Item.IntValue); in calculateContentSize()
816 Result += getULEB128Size(Item.IntValue); in calculateContentSize()
870 emitULEB128IntValue(Item.IntValue); in createAttributesSection()
877 emitULEB128IntValue(Item.IntValue); in createAttributesSection()
H A DMCObjectStreamer.cpp307 int64_t IntValue; in emitULEB128Value() local
308 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) { in emitULEB128Value()
309 emitULEB128IntValue(IntValue); in emitULEB128Value()
316 int64_t IntValue; in emitSLEB128Value() local
317 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) { in emitSLEB128Value()
318 emitSLEB128IntValue(IntValue); in emitSLEB128Value()
H A DMCAsmStreamer.cpp1222 int64_t IntValue; in emitValueImpl() local
1223 if (!Value->evaluateAsAbsolute(IntValue)) in emitValueImpl()
1240 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8); in emitValueImpl()
1266 int64_t IntValue; in emitULEB128Value() local
1267 if (Value->evaluateAsAbsolute(IntValue)) { in emitULEB128Value()
1268 emitULEB128IntValue(IntValue); in emitULEB128Value()
1277 int64_t IntValue; in emitSLEB128Value() local
1278 if (Value->evaluateAsAbsolute(IntValue)) { in emitSLEB128Value()
1279 emitSLEB128IntValue(IntValue); in emitSLEB128Value()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCELFStreamer.h95 unsigned IntValue; member
105 void setAttributeItems(unsigned Attribute, unsigned IntValue,
H A DMCStreamer.h154 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp92 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
207 unsigned IntValue, in emitIntTextAttribute() argument
212 OS << "\t.eabi_attribute\t" << Attribute << ", " << IntValue; in emitIntTextAttribute()
305 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
704 unsigned IntValue, in emitIntTextAttribute() argument
706 getStreamer().setAttributeItems(Attribute, IntValue, StringValue, in emitIntTextAttribute()
H A DARMTargetStreamer.cpp108 unsigned IntValue, in emitIntTextAttribute() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3171 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveValue()
3189 if (!IntValue.isIntN(128)) in parseHexOcta()
3191 if (!IntValue.isIntN(64)) { in parseHexOcta()
3192 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3196 lo = IntValue.getZExtValue(); in parseHexOcta()
4864 uint64_t IntValue = MCE->getValue(); in parseDirectiveDCB() local
4865 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveDCB()
5776 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
5777 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
5792 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
[all …]
H A DMasmParser.cpp1759 uint64_t IntValue = 0; in parsePrimaryExpr() local
1761 IntValue = (IntValue << 8) | CharVal; in parsePrimaryExpr()
3698 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in emitIntValue()
3855 if (!IntValue.isIntN(128)) in parseHexOcta()
3857 if (!IntValue.isIntN(64)) { in parseHexOcta()
3858 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3862 lo = IntValue.getZExtValue(); in parseHexOcta()
7195 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
7196 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
7211 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1612 uint64_t IntValue = MCE->getValue(); in ParseDirectiveWord() local
1613 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveWord()
1616 getStreamer().emitIntValue(IntValue, Size); in ParseDirectiveWord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp713 uint64_t IntValue = MCE->getValue(); in ParseDirectiveFalign() local
714 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue)) in ParseDirectiveFalign()
716 MaxBytesToFill = IntValue; in ParseDirectiveFalign()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp69 SDValue IntValue; member
1500 State.IntValue = DAG.getNode(ISD::BITCAST, DL, IVT, Value); in getSignAsIntValue()
1535 State.IntValue = DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain, IntPtr, in getSignAsIntValue()
1565 EVT IntVT = SignAsInt.IntValue.getValueType(); in ExpandFCOPYSIGN()
1567 SDValue SignBit = DAG.getNode(ISD::AND, DL, IntVT, SignAsInt.IntValue, in ExpandFCOPYSIGN()
1584 EVT MagVT = MagAsInt.IntValue.getValueType(); in ExpandFCOPYSIGN()
1586 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, MagVT, MagAsInt.IntValue, in ExpandFCOPYSIGN()
1619 EVT IntVT = SignAsInt.IntValue.getValueType(); in ExpandFNEG()
1624 DAG.getNode(ISD::XOR, DL, IntVT, SignAsInt.IntValue, SignMask); in ExpandFNEG()
1644 EVT IntVT = ValueAsInt.IntValue.getValueType(); in ExpandFABS()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp936 llvm::APInt IntValue = IntLiteral->getValue(); in checkIncorrectRelationalOperator() local
937 if ((IntValue == 1) || (IntValue == 0)) in checkIncorrectRelationalOperator()
941 !IntValue.isNegative(); in checkIncorrectRelationalOperator()
998 llvm::APInt IntValue = IntLiteral->getValue(); in checkIncorrectEqualityOperator() local
999 if ((IntValue == 1) || (IntValue == 0)) { in checkIncorrectEqualityOperator()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1818 Value *IntValue = in expandAtomicOpToLibcall() local
1820 Args.push_back(IntValue); in expandAtomicOpToLibcall()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc619 class IntValue { class
623 explicit IntValue(int a_value) : value_(a_value) {} in IntValue() function in testing::gmock_matchers_test::IntValue
631 bool IsPositiveIntValue(const IntValue& foo) { in IsPositiveIntValue()
643 Matcher<IntValue> m3 = Truly(IsPositiveIntValue); in TEST()