HomeSort by relevance Sort by last modified time
    Searched refs:IsKill (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Target/Mips/
Mips16RegisterInfo.cpp 130 bool IsKill = false;
147 IsKill = true;
149 MI.getOperand(OpNo).ChangeToRegister(FrameReg, false, false, IsKill);
MipsSERegisterInfo.cpp 146 bool IsKill = false;
180 IsKill = true;
198 IsKill = true;
202 MI.getOperand(OpNo).ChangeToRegister(FrameReg, false, false, IsKill);
MipsSEFrameLowering.cpp 159 .addReg(Src, getKillRegState(I->getOperand(0).isKill()));
211 unsigned SrcKill = getKillRegState(I->getOperand(0).isKill());
247 unsigned SrcKill = getKillRegState(I->getOperand(1).isKill());
470 bool IsKill = !IsRAAndRetAddrIsTaken;
472 TII.storeRegToStackSlot(*EntryBlock, MI, Reg, IsKill,
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_sets.h 21 static bool IsKill(int sysno);
baseline_policy.cc 66 SyscallSets::IsKill(sysno) ||
161 if (SyscallSets::IsKill(sysno)) {
syscall_sets.cc 17 bool SyscallSets::IsKill(int sysno) {
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 81 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
92 /// IsKill - True if this instruction is the last use of the register on this
94 bool IsKill : 1;
294 bool isKill() const {
296 return IsKill;
375 IsKill = Val;
532 /// operand. Note: This method ignores isKill and isDead properties.
551 bool isKill = false, bool isDead = false,
577 bool isKill = false, bool isDead = false,
584 assert(!(isKill && isDef) && "Kill flag on def")
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AdvSIMDScalarPass.cpp 265 unsigned Dst, unsigned Src, bool IsKill) {
269 .addReg(Src, getKillRegState(IsKill));
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 129 bool isKill, bool isDead, bool isUndef,
148 IsKill = isKill;
274 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
295 if (isKill()) {
841 if (Check == CheckKillDead && MO.isKill() != OMO.isKill())
    [all...]

Completed in 1479 milliseconds