OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IntValue
(Results
1 - 13
of
13
) sorted by relevancy
/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();
/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
,
/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/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/
MCAsmStreamer.cpp
1212
int64_t
IntValue
;
1213
if (!Value->evaluateAsAbsolute(
IntValue
))
1230
uint64_t ValueToEmit =
IntValue
>> (ByteOffset * 8);
1256
int64_t
IntValue
;
1257
if (Value->evaluateAsAbsolute(
IntValue
)) {
1258
emitULEB128IntValue(
IntValue
);
1267
int64_t
IntValue
;
1268
if (Value->evaluateAsAbsolute(
IntValue
)) {
1269
emitSLEB128IntValue(
IntValue
);
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/CodeGen/
AtomicExpandPass.cpp
1777
Value *
IntValue
=
1779
Args.push_back(
IntValue
);
/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/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/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/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
...]
Completed in 82 milliseconds
Indexes created Mon Jun 15 00:25:07 UTC 2026