OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsKill
(Results
1 - 6
of
6
) 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
106
bool
IsKill
= false;
130
IsKill
= true;
133
MI.getOperand(OpNo).ChangeToRegister(FrameReg, false, false,
IsKill
);
MipsSEFrameLowering.cpp
148
.addReg(Src, getKillRegState(I->getOperand(0).
isKill
()));
199
unsigned SrcKill = getKillRegState(I->getOperand(0).
isKill
());
237
unsigned SrcKill = getKillRegState(I->getOperand(1).
isKill
());
457
bool
IsKill
= !IsRAAndRetAddrIsTaken;
459
TII.storeRegToStackSlot(*EntryBlock, MI, Reg,
IsKill
,
/external/llvm/include/llvm/CodeGen/
MachineOperand.h
79
/// IsDef/IsImp/
IsKill
/IsDead flags - These are only valid for MO_Register
90
///
IsKill
- True if this instruction is the last use of the register on this
92
bool
IsKill
: 1;
289
bool
isKill
() const {
291
return
IsKill
;
370
IsKill
= Val;
516
/// operand. Note: This method ignores
isKill
and isDead properties.
535
bool
isKill
= false, bool isDead = false,
561
bool
isKill
= false, bool isDead = false,
570
Op.
IsKill
= isKill
[
all
...]
/external/chromium_org/content/common/
sandbox_seccomp_bpf_linux.cc
268
bool
IsKill
(int sysno) {
1251
IsKill
(sysno) ||
[
all
...]
/external/llvm/lib/CodeGen/
MachineInstr.cpp
130
bool
isKill
, bool isDead, bool isUndef,
149
IsKill
=
isKill
;
269
if (isDef() ||
isKill
() || isDead() || isImplicit() || isUndef() ||
290
if (
isKill
()) {
821
if (Check == CheckKillDead && MO.
isKill
() != OMO.
isKill
())
[
all
...]
Completed in 128 milliseconds