HomeSort by relevance Sort by last modified time
    Searched refs:isDef (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
DeadMachineInstructionElim.cpp 71 if (MO.isReg() && MO.isDef()) {
136 if (!MO.isReg() || !MO.isDef())
165 if (MO.isReg() && MO.isDef()) {
LiveRangeEdit.cpp 90 if (!MO.isReg() || !MO.getReg() || MO.isDef())
174 if (MO.isDef()) {
256 (MI->isCopy() || MOI->isDef() || MRI.hasOneNonDBGUse(Reg) ||
261 if (MOI->isDef()) {
MachineLICM.cpp 413 if (!MO.isDef()) {
516 if (!MO.isReg() || MO.isDef() || !MO.getReg())
546 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
713 if (MO.isDef())
743 if (MO.isDef())
    [all...]
MachineInstr.cpp 69 if (*Head && (*Head)->isDef())
155 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
176 IsDef = isDef;
196 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
242 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
246 if (isDef()) {
759 if (MO.isDef()) {
    [all...]
ProcessImplicitDefs.cpp 143 if (!MO.isReg() || (MO.isDef() && !MO.getSubReg()) || MO.isUndef())
170 if (MO.isDef()) {
191 if (!MO.isReg() || !MO.isDef())
RegisterScavenging.cpp 171 assert(MO.isDef());
214 assert(MO.isDef());
292 if (MO.isDef())
  /external/llvm/lib/Target/AArch64/
AArch64DeadRegisterDefinitionsPass.cpp 72 if (MO.isReg() && MO.isDef())
104 if (MO.isReg() && MO.isDead() && MO.isDef()) {
  /external/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 207 if (MO.isDef()) {
266 assert((!MO.isDef() || RegDefs.count(MO.getReg())) &&
268 return !MO.isDef() || RegDefs.find(MO.getReg())->second == MI;
282 if (MO.isDef())
436 if (!MO.isReg() || !MO.getReg() || !MO.isDef())
542 if (!MO.isReg() || !MO.isDef())
552 if (!MO.isReg() || !MO.getReg() || !MO.isDef())
LiveRangeCalc.cpp 62 if (!MO.isDef() && !MO.readsReg())
93 if (MO.isDef())
100 if (MO.isDef())
107 if (MO.isDef() && !LI.hasSubRanges())
188 assert(!MO.isDef() && "Cannot handle PHI def of partial register.");
196 if (MO.isDef())
DeadMachineInstructionElim.cpp 79 if (MO.isReg() && MO.isDef()) {
145 if (MO.isReg() && MO.isDef()) {
LivePhysRegs.cpp 49 if (!O->isDef())
82 if (O->isDef()) {
MachineInstrBundle.cpp 141 if (MO.isDef()) {
280 if (MO.isDef())
285 if (MO.isDef())
327 } else if (MO.isDef()) {
MachineLICM.cpp 386 if (!MO.isDef()) {
505 if (!MO.isReg() || MO.isDef() || !MO.getReg())
531 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
719 if (!MO.isDef() || !MO.isReg() || !MO.getReg())
814 if (MO.isDef())
    [all...]
LiveRangeEdit.cpp 171 if (MO.isDef()) {
289 else if (MOI->isDef())
299 if ((MI->readsVirtualRegister(Reg) && (MI->isCopy() || MOI->isDef())) ||
304 if (MOI->isDef()) {
RenameIndependentSubregs.cpp 180 if (!MO.isDef() && !MO.readsReg())
190 Pos = MO.isDef() ? Pos.getRegSlot(MO.isEarlyClobber())
219 if (!MO.isDef() && !MO.readsReg())
334 if (!MO.isDef())
VirtRegMap.cpp 411 if (MO.readsReg() && (MO.isDef() || MO.isKill()))
414 if (MO.isDef()) {
429 assert(MO.isDef());
437 if (MO.isDef())
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 82 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
85 /// IsDef - True if this is a def, false if this is a use of the register.
87 bool IsDef : 1;
279 return !IsDef;
282 bool isDef() const {
284 return IsDef;
376 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
382 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
397 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
402 assert(isReg() && !IsDef && "Wrong MachineOperand accessor")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineOperand.h 87 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
90 /// IsDef - True if this is a def, false if this is a use of the register.
92 bool IsDef : 1;
290 return !IsDef;
293 bool isDef() const {
295 return IsDef;
387 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
393 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
408 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
413 assert(isReg() && !IsDef && "Wrong MachineOperand mutator")
    [all...]

Completed in 235 milliseconds

1 2 3 4 5 6 7 8 910