OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isUndef
(Results
1 - 25
of
135
) sorted by relevancy
1
2
3
4
5
6
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueLattice.cpp
15
if (Val.
isUndef
())
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueLattice.h
238
bool
isUndef
() const { return Tag == undef; }
294
if (
isUndef
())
316
assert(isUnknown() ||
isUndef
());
357
(
isUndef
() || isConstantRangeIncludingUndef() || Opts.MayIncludeUndef)
376
assert(isUnknown() ||
isUndef
());
395
if (
isUndef
()) {
397
if (RHS.
isUndef
())
416
if (RHS.
isUndef
())
431
if (RHS.
isUndef
()) {
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp
51
return St->getSVal(Ex, LCtx).
isUndef
();
67
if (X.
isUndef
()) {
UndefinedAssignmentChecker.cpp
37
if (!val.
isUndef
())
75
if (C.getSVal(B->getLHS()).
isUndef
()) {
UndefResultChecker.cpp
78
if (C.getSVal(B).
isUndef
()) {
102
if (C.getSVal(B->getLHS()).
isUndef
()) {
106
else if (C.getSVal(B->getRHS()).
isUndef
()) {
BuiltinFunctionChecker.cpp
50
if (Arg.
isUndef
())
92
if (Size.
isUndef
())
UndefinedArraySubscriptChecker.cpp
38
if (!C.getSVal(Index).
isUndef
())
ReturnUndefChecker.cpp
48
if (RetVal.
isUndef
()) {
CallAndMessageChecker.cpp
222
if (PSV.
isUndef
()) {
267
if (V.
isUndef
())
295
if (V.
isUndef
()) {
376
if (L.
isUndef
()) {
447
if (V.
isUndef
()) {
484
if (!Arg.
isUndef
())
578
if (recVal.
isUndef
()) {
DereferenceChecker.cpp
210
if (l.
isUndef
()) {
256
if (V.
isUndef
())
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Clustering.h
58
bool
isUndef
() const { return Id_ == kUndef; }
97
assert(!Id.
isUndef
() && "unlabeled cluster");
Clustering.cpp
132
if (!ClusterIdForPoint_[P].
isUndef
())
162
if (!ClusterIdForPoint_[Q].
isUndef
()) {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BreakFalseDeps.cpp
115
assert(MO.
isUndef
() && "Expected undef machine operand");
140
if (!CurrMO.isReg() || CurrMO.isDef() || CurrMO.
isUndef
() ||
195
if (!MO.isReg() || !MO.getReg() || !MO.isUse() || !MO.
isUndef
())
MachineInstrBundle.cpp
168
if (MO.
isUndef
())
222
bool
isUndef
= UndefUseSet.count(Reg);
223
MIB.addReg(Reg, getKillRegState(isKill) | getUndefRegState(
isUndef
) |
ExpandPostRAPseudos.cpp
148
if (IdentityCopy || SrcMO.
isUndef
()) {
153
if (SrcMO.
isUndef
() || MI->getNumOperands() > 2) {
RegAllocFast.cpp
820
assert(MO.
isUndef
() && "expected undef use");
866
if (MO.getSubReg() && !MO.
isUndef
()) {
1005
if (MO.isDef() && MO.
isUndef
()) {
1123
if (MO.isTied() || (MO.getSubReg() != 0 && !MO.
isUndef
()))
1207
(MO0.getSubReg() == 0 && !MO0.
isUndef
());
1209
(MO1.getSubReg() == 0 && !MO1.
isUndef
());
1224
(MO.getSubReg() && !MO.
isUndef
())) {
1316
if (MO.
isUndef
()) {
1343
assert(MO.
isUndef
() && "Should only have undef virtreg uses left");
DeadMachineInstructionElim.cpp
93
assert(U.
isUndef
() && "'Undef' use on a 'dead' register is found!");
UnreachableBlockElim.cpp
184
!Input.
isUndef
()) {
RegisterScavenging.cpp
143
if (MO.
isUndef
())
192
if (MO.
isUndef
())
311
if (!MO.isReg() || MO.
isUndef
() || !MO.getReg())
531
if (MO.isReg() && MO.getReg() != 0 && !(MO.isUse() && MO.
isUndef
()) &&
715
assert((!MO.
isUndef
() || MO.isDef()) && "Cannot handle undef uses");
730
assert((!MO.
isUndef
() || MO.isDef()) && "Cannot handle undef uses");
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCVSXFMAMutate.cpp
229
bool AddRegUndef = AddendMI->getOperand(1).
isUndef
();
230
bool KilledProdRegUndef = MI.getOperand(KilledProdOp).
isUndef
();
231
bool OtherProdRegUndef = MI.getOperand(OtherProdOp).
isUndef
();
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp
185
if (!recVal.
isUndef
()) {
249
if (!recVal.
isUndef
()) {
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h
115
///
IsUndef
- True if this register operand reads an "undef" value, i.e. the
132
unsigned
IsUndef
: 1;
395
bool
isUndef
() const {
397
return
IsUndef
;
460
return !
isUndef
() && !isInternalRead() && (isUse() || getSubReg());
513
IsUndef
= Val;
718
/// for liveness related flags (isKill,
isUndef
and isDead). Note that this
762
bool
isUndef
= false, bool isDebug = false);
793
bool
isUndef
= false,
805
Op.
IsUndef
= isUndef
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyMemIntrinsicResults.cpp
125
if (!O.
isUndef
()) {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
186
while (i != e && N->getOperand(i).
isUndef
())
215
if (N->getOperand(i) != NotZero && !N->getOperand(i).
isUndef
())
234
if (Op.
isUndef
())
275
if (Op.
isUndef
())
288
if (Op.
isUndef
())
302
return all_of(N->op_values(), [](SDValue Op) { return Op.
isUndef
(); });
319
if (AllowUndefs && Op.getOperand(i).
isUndef
()) {
353
bool LHSUndef = AllowUndefs && LHSOp.
isUndef
();
354
bool RHSUndef = AllowUndefs && RHSOp.
isUndef
();
1778
if (N1.
isUndef
() && N2.isUndef()
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h
140
bool
isUndef
() const {
227
bool
isUndef
() const = delete;
240
return !V.
isUndef
();
Completed in 46 milliseconds
1
2
3
4
5
6
Indexes created Sat Jun 06 00:24:59 UTC 2026