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

/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp66 unsigned IntValue,
65 emitIntTextAttribute(unsigned Attribute, unsigned IntValue, StringRef StringValue) argument
H A DARMELFStreamer.cpp81 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
183 unsigned IntValue,
188 OS << "\t.eabi_attribute\t" << Attribute << ", " << IntValue;
256 unsigned IntValue;
298 Item->IntValue = Value;
333 void setAttributeItems(unsigned Attribute, unsigned IntValue,
340 Item->IntValue = IntValue;
349 IntValue,
377 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
[all...]
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCObjectStreamer.cpp172 int64_t IntValue; local
173 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) {
174 EmitULEB128IntValue(IntValue);
181 int64_t IntValue; local
182 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) {
183 EmitSLEB128IntValue(IntValue);
H A DMCAsmStreamer.cpp706 int64_t IntValue; local
707 if (!Value->evaluateAsAbsolute(IntValue))
726 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
748 int64_t IntValue;
749 if (Value->evaluateAsAbsolute(IntValue)) {
750 EmitULEB128IntValue(IntValue);
759 int64_t IntValue;
760 if (Value->evaluateAsAbsolute(IntValue)) {
761 EmitSLEB128IntValue(IntValue);
/freebsd-11.0-release/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2533 uint64_t IntValue = MCE->getValue(); local
2534 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2536 getStreamer().EmitIntValue(IntValue, Size);
2568 APInt IntValue = getTok().getAPIntVal(); local
2572 if (IntValue.isIntN(64)) {
2574 lo = IntValue.getZExtValue();
2575 } else if (IntValue.isIntN(128)) {
2577 hi = IntValue.getHiBits(IntValue
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp939 uint64_t IntValue = MCE->getValue(); local
940 if (!isUIntN(Size, IntValue) && !isIntN(Size, IntValue))
942 MaxBytesToFill = IntValue;
968 uint64_t IntValue = MCE->getValue(); local
969 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
971 getStreamer().EmitIntValue(IntValue, Size);
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCStreamer.h119 virtual void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp660 llvm::APInt IntValue = IntLiteral->getValue();
661 if ((IntValue == 1) || (IntValue == 0))
665 !IntValue.isNegative();
722 llvm::APInt IntValue = IntLiteral->getValue(); local
723 if ((IntValue == 1) || (IntValue == 0)) {
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1738 uint64_t IntValue = MCE->getValue(); local
1739 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
1741 getStreamer().EmitIntValue(IntValue, Size);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1638 SDValue IntValue;
1655 State.IntValue = DAG.getNode(ISD::BITCAST, DL, IVT, Value);
1690 State.IntValue = DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain,
1721 EVT IntVT = SignAsInt.IntValue.getValueType();
1723 SDValue SignBit = DAG.getNode(ISD::AND, DL, IntVT, SignAsInt.IntValue,
1740 EVT MagVT = MagAsInt.IntValue.getValueType();
1742 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, MagVT, MagAsInt.IntValue,
1786 EVT IntVT = ValueAsInt.IntValue.getValueType();
1788 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, IntVT, ValueAsInt.IntValue,
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2888 uint64_t IntValue = MCE->getValue(); local
2889 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2891 getStreamer().EmitIntValue(IntValue, Size);

Completed in 218 milliseconds