Searched refs:IntValue (Results 1 - 21 of 21) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVELFStreamer.h24 unsigned IntValue; member in struct:llvm::RISCVTargetELFStreamer::AttributeItem
47 Item->IntValue = Value;
70 void setAttributeItems(unsigned Attribute, unsigned IntValue, argument
77 Item->IntValue = IntValue;
83 Contents.push_back({AttributeType::NumericAndText, Attribute, IntValue,
89 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
H A DRISCVELFStreamer.cpp86 unsigned IntValue,
88 setAttributeItems(Attribute, IntValue, StringValue,
130 Streamer.emitULEB128IntValue(item.IntValue);
137 Streamer.emitULEB128IntValue(item.IntValue);
155 Result += getULEB128Size(item.IntValue);
163 Result += getULEB128Size(item.IntValue);
85 emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue) argument
H A DRISCVTargetStreamer.h33 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
46 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
H A DRISCVTargetStreamer.cpp37 unsigned IntValue,
114 unsigned IntValue,
36 emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue) argument
113 emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp24 const uint64_t IntValue = local
40 return llvm::ConstantInt::get(Ty, IntValue);
42 Ty, llvm::APInt::getSplat(BitWidth, llvm::APInt(64, IntValue)));
51 auto *Int = llvm::ConstantInt::get(IntTy, IntValue);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp136 llvm::APInt IntValue; local
138 if (ValueStr.getAsInteger(AutoSenseRadix, IntValue))
145 IntValue = -IntValue;
148 return IntValue.getSExtValue();
H A DBugReporterVisitors.cpp2642 Optional<const llvm::APSInt *> IntValue;
2644 IntValue = getConcreteIntegerValue(CondVarExpr, N);
2646 if (IsAssuming || !IntValue.hasValue()) {
2653 Out << (IntValue.getValue()->getBoolValue() ? "true" : "false");
2655 Out << *IntValue.getValue();
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp528 static MatchTableRecord IntValue(int64_t IntValue) { argument
529 return MatchTableRecord(None, llvm::to_string(IntValue), 1,
1245 << MatchTable::IntValue(InsnVarID) << MatchTable::Comment("Op")
1246 << MatchTable::IntValue(OpIdx) << MatchTable::Comment("Type")
1280 << MatchTable::Comment("MI") << MatchTable::IntValue(InsnVarID)
1281 << MatchTable::Comment("Op") << MatchTable::IntValue(OpIdx)
1283 << MatchTable::IntValue(SizeInBits) << MatchTable::LineBreak;
1312 << MatchTable::Comment("MI") << MatchTable::IntValue(InsnVarID)
1313 << MatchTable::Comment("Op") << MatchTable::IntValue(OpId
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp93 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
208 unsigned IntValue,
213 OS << "\t.eabi_attribute\t" << Attribute << ", " << IntValue;
288 unsigned IntValue;
330 Item->IntValue = Value;
357 void setAttributeItems(unsigned Attribute, unsigned IntValue,
364 Item->IntValue = IntValue;
371 IntValue, std::string(StringValue)};
397 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
[all...]
H A DARMTargetStreamer.cpp108 unsigned IntValue,
107 emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp310 int64_t IntValue; local
311 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) {
312 emitULEB128IntValue(IntValue);
319 int64_t IntValue; local
320 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) {
321 emitSLEB128IntValue(IntValue);
H A DMCAsmStreamer.cpp1074 int64_t IntValue; local
1075 if (!Value->evaluateAsAbsolute(IntValue))
1092 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
1118 int64_t IntValue;
1119 if (Value->evaluateAsAbsolute(IntValue)) {
1120 emitULEB128IntValue(IntValue);
1129 int64_t IntValue;
1130 if (Value->evaluateAsAbsolute(IntValue)) {
1131 emitSLEB128IntValue(IntValue);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3062 uint64_t IntValue = MCE->getValue();
3063 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
3065 getStreamer().emitIntValue(IntValue, Size);
3081 APInt IntValue = Asm.getTok().getAPIntVal(); local
3083 if (!IntValue.isIntN(128))
3085 if (!IntValue.isIntN(64)) {
3086 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue();
3087 lo = IntValue
4768 uint64_t IntValue = MCE->getValue(); local
[all...]
H A DMasmParser.cpp3186 int64_t IntValue = MCE->getValue(); local
3187 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
3189 getStreamer().emitIntValue(IntValue, Size);
3220 uint64_t IntValue = 0;
3222 IntValue = (IntValue << 8) | CharVal;
3223 Values.push_back(MCConstantExpr::create(IntValue, getContext()));
3341 APInt IntValue = Asm.getTok().getAPIntVal(); local
3343 if (!IntValue
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp713 uint64_t IntValue = MCE->getValue(); local
714 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue))
716 MaxBytesToFill = IntValue;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1678 uint64_t IntValue = MCE->getValue();
1679 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
1682 getStreamer().emitIntValue(IntValue, Size);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp936 llvm::APInt IntValue = IntLiteral->getValue();
937 if ((IntValue == 1) || (IntValue == 0))
941 !IntValue.isNegative();
998 llvm::APInt IntValue = IntLiteral->getValue(); local
999 if ((IntValue == 1) || (IntValue == 0)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp69 SDValue IntValue; member in struct:__anon3573::FloatSignAsInt
1456 State.IntValue = DAG.getNode(ISD::BITCAST, DL, IVT, Value);
1490 State.IntValue = DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain, IntPtr,
1520 EVT IntVT = SignAsInt.IntValue.getValueType();
1522 SDValue SignBit = DAG.getNode(ISD::AND, DL, IntVT, SignAsInt.IntValue,
1539 EVT MagVT = MagAsInt.IntValue.getValueType();
1541 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, MagVT, MagAsInt.IntValue,
1581 EVT IntVT = ValueAsInt.IntValue.getValueType();
1583 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, IntVT, ValueAsInt.IntValue,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCStreamer.h153 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1759 Value *IntValue = local
1761 Args.push_back(IntValue);
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc619 class IntValue { class in namespace:testing::gmock_matchers_test
622 // IntValue.
623 explicit IntValue(int a_value) : value_(a_value) {} function in class:testing::gmock_matchers_test::IntValue
631 bool IsPositiveIntValue(const IntValue& foo) {
643 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
646 // to IntValue objects, and then tested by the IsPositiveIntValue()

Completed in 426 milliseconds