OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isDef
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
GIMatchDagOperands.h
48
bool
IsDef
;
51
GIMatchDagOperand(unsigned Idx, StringRef Name, bool
IsDef
)
52
: Idx(Idx), Name(Name),
IsDef
(
IsDef
) {}
56
bool
isDef
() const { return
IsDef
; }
66
bool
IsDef
);
95
void add(StringRef Name, unsigned Idx, bool
IsDef
);
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
MCInstrDescView.cpp
44
bool Operand::
isDef
() const { return
IsDef
; }
46
bool Operand::isUse() const { return !
IsDef
; }
117
Operand.
IsDef
= (OpIndex < Description->getNumDefs());
135
Operand.
IsDef
= true;
144
Operand.
IsDef
= false;
175
if (Op.
isDef
())
179
if (Op.
isDef
() && Op.isImplicit())
262
if (Op.
isDef
())
330
if (Op.isReg() && Op.
isDef
() == SelectDef)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h
156
bool
isDef
() const { return Value.is<Def>(); }
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h
91
///
IsDef
- True if this is a def, false if this is a use of the register.
94
unsigned
IsDef
: 1;
288
///
isDef
. Sometimes, if the operand is printed before '=', we don't print
372
return !
IsDef
;
375
bool
isDef
() const {
377
return
IsDef
;
387
return IsDeadOrKill &
IsDef
;
392
return IsDeadOrKill & !
IsDef
;
501
assert(isReg() && !
IsDef
&& "Wrong MachineOperand mutator");
507
assert(isReg() &&
IsDef
&& "Wrong MachineOperand mutator")
[
all
...]
RDFGraph.h
547
bool
isDef
() const {
793
static bool
IsDef
(const NodeAddr<NodeBase*> BA) {
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.cpp
608
bool
isDef
= D->isThisDeclarationADefinition();
609
bool isContainer =
isDef
;
613
isDef
= true;
617
DeclInfo DInfo(!D->isFirstDecl(),
isDef
, isContainer);
804
bool
isDef
= D->isThisDeclarationADefinition();
805
bool isContainer =
isDef
;
809
isDef
= true;
813
DeclInfo DInfo(!D->isCanonicalDecl(),
isDef
, isContainer);
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp
209
if (MO.
isDef
() && MO.getReg() == ARM::CPSR && !MO.isDead())
777
bool
isDef
= isLoadSingle(Opcode);
825
MIB.addReg(R.first, getDefRegState(
isDef
) | getKillRegState(R.second));
881
if (!MO.isReg() || !MO.
isDef
() || MO.isDead())
950
else if (MO.
isDef
())
1732
bool
isDef
, unsigned NewOpc, unsigned Reg,
1737
if (
isDef
) {
2242
if (MO.
isDef
() && TRI->regsOverlap(Reg, Base))
ARMISelLowering.cpp
2524
bool
isDef
= GV->isStrongDefinitionForLinker();
2527
isLocalARMFunc = !Subtarget->isThumb() && (
isDef
|| !ARMInterworking);
11688
MI.addOperand(MachineOperand::CreateReg(0, /*
isDef
=*/true));
11708
MI.addOperand(MachineOperand::CreateReg(0, /*
isDef
=*/false));
11728
if (MO.isReg() && MO.
isDef
() && MO.getReg() == ARM::CPSR) {
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp
2891
bool
isDef
= false;
2892
if (!D->canBeWeakImported(
isDef
)) {
2893
if (
isDef
)
Completed in 58 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026