Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/BinaryFormat/
H A DMsgPackTypes.cpp123 ScalarNode::ScalarNode(int64_t IntValue) in ScalarNode() argument
124 : Node(NK_Scalar), SKind(SK_Int), IntValue(IntValue) {} in ScalarNode()
126 ScalarNode::ScalarNode(int32_t IntValue) in ScalarNode() argument
127 : ScalarNode(static_cast<int64_t>(IntValue)) {} in ScalarNode()
132 ScalarNode::ScalarNode(uint32_t IntValue) in ScalarNode() argument
133 : ScalarNode(static_cast<uint64_t>(IntValue)) {} in ScalarNode()
167 IntValue = RHS.IntValue; in operator =()
192 return yaml::ScalarTraits<int64_t>::input(ScalarStr, nullptr, IntValue); in inputYAML()
212 yaml::ScalarTraits<int64_t>::output(IntValue, nullptr, OS); in outputYAML()
282 MPWriter.write(IntValue); in write()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp500 static MatchTableRecord IntValue(int64_t IntValue) { in IntValue() function in __anon7e76e5f80111::MatchTable
2058 << MatchTable::IntValue(getInsnVarID()) in emitCaptureOpcodes()
2249 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
2279 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
2375 Table << MatchTable::IntValue(0); in emitRenderOpcodes()
2437 << MatchTable::IntValue(RendererID); in emitRenderOpcodes()
2468 << MatchTable::IntValue(OldInsnVarID) in emitRenderOpcodes()
2567 << MatchTable::IntValue(RecycleInsnID) in emitActionOpcodes()
2621 Table << MatchTable::IntValue(MergeInsnID); in emitActionOpcodes()
2948 << MatchTable::IntValue(OtherInsnVarID) in emitPredicateOpcodes()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp94 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
285 unsigned IntValue; member
327 Item->IntValue = Value; in setAttributeItem()
362 void setAttributeItems(unsigned Attribute, unsigned IntValue, in setAttributeItems() argument
369 Item->IntValue = IntValue; in setAttributeItems()
378 IntValue, in setAttributeItems()
785 setAttributeItems(Attribute, IntValue, StringValue, in emitIntTextAttribute()
1046 Result += getULEB128Size(item.IntValue); in calculateContentSize()
1054 Result += getULEB128Size(item.IntValue); in calculateContentSize()
1119 Streamer.EmitULEB128IntValue(item.IntValue); in finishAttributeSection()
[all …]
H A DARMTargetStreamer.cpp109 unsigned IntValue, in emitIntTextAttribute() argument
/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMsgPackTypes.h92 int64_t IntValue; member
101 ScalarNode(int64_t IntValue);
103 ScalarNode(int32_t IntValue);
164 return IntValue; in getInt()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCObjectStreamer.cpp262 int64_t IntValue; in EmitULEB128Value() local
263 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) { in EmitULEB128Value()
264 EmitULEB128IntValue(IntValue); in EmitULEB128Value()
271 int64_t IntValue; in EmitSLEB128Value() local
272 if (Value->evaluateAsAbsolute(IntValue, getAssemblerPtr())) { in EmitSLEB128Value()
273 EmitSLEB128IntValue(IntValue); in EmitSLEB128Value()
H A DMCAsmStreamer.cpp942 int64_t IntValue; in EmitValueImpl() local
943 if (!Value->evaluateAsAbsolute(IntValue)) in EmitValueImpl()
960 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8); in EmitValueImpl()
986 int64_t IntValue; in EmitULEB128Value() local
987 if (Value->evaluateAsAbsolute(IntValue)) { in EmitULEB128Value()
988 EmitULEB128IntValue(IntValue); in EmitULEB128Value()
997 int64_t IntValue; in EmitSLEB128Value() local
998 if (Value->evaluateAsAbsolute(IntValue)) { in EmitSLEB128Value()
999 EmitSLEB128IntValue(IntValue); in EmitSLEB128Value()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3000 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveValue()
3020 if (!IntValue.isIntN(128)) in parseHexOcta()
3022 if (!IntValue.isIntN(64)) { in parseHexOcta()
3023 hi = IntValue.getHiBits(IntValue.getBitWidth() - 64).getZExtValue(); in parseHexOcta()
3027 lo = IntValue.getZExtValue(); in parseHexOcta()
4614 uint64_t IntValue = MCE->getValue(); in parseDirectiveDCB() local
4615 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in parseDirectiveDCB()
5549 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSEmit() local
5550 if (!isUInt<8>(IntValue) && !isInt<8>(IntValue)) in parseDirectiveMSEmit()
5565 uint64_t IntValue = MCE->getValue(); in parseDirectiveMSAlign() local
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1658 uint64_t IntValue = MCE->getValue(); in ParseDirectiveWord() local
1659 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue)) in ParseDirectiveWord()
1662 getStreamer().EmitIntValue(IntValue, Size); in ParseDirectiveWord()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp707 uint64_t IntValue = MCE->getValue(); in ParseDirectiveFalign() local
708 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue)) in ParseDirectiveFalign()
710 MaxBytesToFill = IntValue; in ParseDirectiveFalign()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp907 llvm::APInt IntValue = IntLiteral->getValue(); in checkIncorrectRelationalOperator() local
908 if ((IntValue == 1) || (IntValue == 0)) in checkIncorrectRelationalOperator()
912 !IntValue.isNegative(); in checkIncorrectRelationalOperator()
969 llvm::APInt IntValue = IntLiteral->getValue(); in checkIncorrectEqualityOperator() local
970 if ((IntValue == 1) || (IntValue == 0)) { in checkIncorrectEqualityOperator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDecl.cpp1006 uint64_t IntValue; in patternFor() local
1011 IntValue = LargeValue; in patternFor()
1014 IntValue = SmallValue; in patternFor()
1017 auto *Int = llvm::ConstantInt::get(IntTy, IntValue); in patternFor()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp69 SDValue IntValue; member
1432 State.IntValue = DAG.getNode(ISD::BITCAST, DL, IVT, Value); in getSignAsIntValue()
1467 State.IntValue = DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain, IntPtr, in getSignAsIntValue()
1497 EVT IntVT = SignAsInt.IntValue.getValueType(); in ExpandFCOPYSIGN()
1499 SDValue SignBit = DAG.getNode(ISD::AND, DL, IntVT, SignAsInt.IntValue, in ExpandFCOPYSIGN()
1516 EVT MagVT = MagAsInt.IntValue.getValueType(); in ExpandFCOPYSIGN()
1518 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, MagVT, MagAsInt.IntValue, in ExpandFCOPYSIGN()
1558 EVT IntVT = ValueAsInt.IntValue.getValueType(); in ExpandFABS()
1560 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, IntVT, ValueAsInt.IntValue, in ExpandFABS()
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCStreamer.h146 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1692 Value *IntValue = in expandAtomicOpToLibcall() local
1694 Args.push_back(IntValue); in expandAtomicOpToLibcall()
/freebsd-12.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()