OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntValue
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVELFStreamer.h
24
unsigned
IntValue
;
47
Item->
IntValue
= Value;
70
void setAttributeItems(unsigned Attribute, unsigned
IntValue
,
77
Item->
IntValue
=
IntValue
;
83
Contents.push_back({AttributeType::NumericAndText, Attribute,
IntValue
,
89
void emitIntTextAttribute(unsigned Attribute, unsigned
IntValue
,
RISCVELFStreamer.cpp
86
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
);
RISCVTargetStreamer.h
35
virtual void emitIntTextAttribute(unsigned Attribute, unsigned
IntValue
,
48
void emitIntTextAttribute(unsigned Attribute, unsigned
IntValue
,
RISCVTargetStreamer.cpp
37
unsigned
IntValue
,
146
unsigned
IntValue
,
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
PatternInit.cpp
24
const uint64_t
IntValue
=
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
);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerHelpers.cpp
136
llvm::APInt
IntValue
;
138
if (ValueStr.getAsInteger(AutoSenseRadix,
IntValue
))
145
IntValue
= -
IntValue
;
148
return
IntValue
.getSExtValue();
BugReporterVisitors.cpp
2770
Optional<const llvm::APSInt *>
IntValue
;
2772
IntValue
= getConcreteIntegerValue(CondVarExpr, N);
2774
if (IsAssuming || !
IntValue
.hasValue()) {
2781
Out << (
IntValue
.getValue()->getBoolValue() ? "true" : "false");
2783
Out << *
IntValue
.getValue();
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp
535
static MatchTableRecord
IntValue
(int64_t
IntValue
) {
536
return MatchTableRecord(None, llvm::to_string(
IntValue
), 1,
1266
<< MatchTable::
IntValue
(InsnVarID) << MatchTable::Comment("Op")
1267
<< MatchTable::
IntValue
(OpIdx) << MatchTable::Comment("Type")
1306
<< MatchTable::Comment("MI") << MatchTable::
IntValue
(InsnVarID)
1307
<< MatchTable::Comment("Op") << MatchTable::
IntValue
(OpIdx)
1309
<< MatchTable::
IntValue
(SizeInBits) << MatchTable::LineBreak;
1340
<< MatchTable::Comment("MI") << MatchTable::
IntValue
(InsnVarID)
1341
<< MatchTable::Comment("Op") << MatchTable::
IntValue
(OpIdx
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp
93
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
...]
ARMTargetStreamer.cpp
108
unsigned
IntValue
,
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
BenchmarkResult.cpp
146
int64_t
IntValue
= 0;
148
if (tryDeserializeIntegerOperand(String,
IntValue
))
149
return MCOperand::createImm(
IntValue
);
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCObjectStreamer.cpp
312
int64_t
IntValue
;
313
if (Value->evaluateAsAbsolute(
IntValue
, getAssemblerPtr())) {
314
emitULEB128IntValue(
IntValue
);
321
int64_t
IntValue
;
322
if (Value->evaluateAsAbsolute(
IntValue
, getAssemblerPtr())) {
323
emitSLEB128IntValue(
IntValue
);
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp
3163
uint64_t
IntValue
= MCE->getValue();
3164
if (!isUIntN(8 * Size,
IntValue
) && !isIntN(8 * Size,
IntValue
))
3166
getStreamer().emitIntValue(
IntValue
, Size);
3180
APInt
IntValue
= Asm.getTok().getAPIntVal();
3182
if (!
IntValue
.isIntN(128))
3184
if (!
IntValue
.isIntN(64)) {
3185
hi =
IntValue
.getHiBits(
IntValue
.getBitWidth() - 64).getZExtValue();
3186
lo =
IntValue
.getLoBits(64).getZExtValue()
[
all
...]
MasmParser.cpp
1637
uint64_t
IntValue
= 0;
1639
IntValue
= (
IntValue
<< 8) | CharVal;
1640
Res = MCConstantExpr::create(
IntValue
, getContext());
3441
int64_t
IntValue
= MCE->getValue();
3442
if (!isUIntN(8 * Size,
IntValue
) && !isIntN(8 * Size,
IntValue
))
3444
getStreamer().emitIntValue(
IntValue
, Size);
3596
APInt
IntValue
= Asm.getTok().getAPIntVal();
3598
if (!
IntValue
.isIntN(128)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp
713
uint64_t
IntValue
= MCE->getValue();
714
if (!isUIntN(Size,
IntValue
) && !isIntN(Size,
IntValue
))
716
MaxBytesToFill =
IntValue
;
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp
1599
uint64_t
IntValue
= MCE->getValue();
1600
if (!isUIntN(8 * Size,
IntValue
) && !isIntN(8 * Size,
IntValue
))
1603
getStreamer().emitIntValue(
IntValue
, Size);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp
69
SDValue
IntValue
;
1494
State.
IntValue
= DAG.getNode(ISD::BITCAST, DL, IVT, Value);
1529
State.
IntValue
= DAG.getExtLoad(ISD::EXTLOAD, DL, LoadTy, State.Chain, IntPtr,
1559
EVT IntVT = SignAsInt.
IntValue
.getValueType();
1561
SDValue SignBit = DAG.getNode(ISD::AND, DL, IntVT, SignAsInt.
IntValue
,
1578
EVT MagVT = MagAsInt.
IntValue
.getValueType();
1580
SDValue ClearedSign = DAG.getNode(ISD::AND, DL, MagVT, MagAsInt.
IntValue
,
1613
EVT IntVT = SignAsInt.
IntValue
.getValueType();
1618
DAG.getNode(ISD::XOR, DL, IntVT, SignAsInt.
IntValue
, SignMask);
1638
EVT IntVT = ValueAsInt.
IntValue
.getValueType()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
936
llvm::APInt
IntValue
= IntLiteral->getValue();
937
if ((
IntValue
== 1) || (
IntValue
== 0))
941
!
IntValue
.isNegative();
998
llvm::APInt
IntValue
= IntLiteral->getValue();
999
if ((
IntValue
== 1) || (
IntValue
== 0)) {
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCStreamer.h
154
virtual void emitIntTextAttribute(unsigned Attribute, unsigned
IntValue
,
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
AtomicExpandPass.cpp
1777
Value *
IntValue
=
1779
Args.push_back(
IntValue
);
Completed in 59 milliseconds
Indexes created Mon Sep 21 00:25:25 UTC 2026