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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeCalc.h 82 // determined, the range from the block start to Kill will be added to LI.
83 SlotIndex Kill;
88 LiveInBlock(LiveInterval *li, MachineDomTreeNode *node, SlotIndex kill)
89 : LI(li), DomNode(node), Kill(kill), Value(0) {}
99 /// Kill, search for values that can reach KillMBB. All blocks that need LI
101 /// its value is returned, if Kill is jointly dominated by multiple values,
105 SlotIndex Kill,
151 /// extend - Extend the live range of LI to reach Kill.
153 /// The existing values in LI must be live so they jointly dominate Kill. I
    [all...]
LiveRangeCalc.cpp 43 if (I->Kill.isValid())
44 I->LI->addRange(LiveRange(Start, I->Kill, VNI));
58 SlotIndex Kill,
63 assert(Kill.isValid() && "Invalid SlotIndex");
67 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill.getPrevSlot());
68 assert(Kill && "No MBB at Kill");
71 if (LI->extendInBlock(Indexes->getMBBStartIdx(KillMBB), Kill))
74 // Find the single reaching def, or determine if Kill is jointly dominated by
78 VNInfo *VNI = findReachingDefs(LI, KillMBB, Kill, Indexes, DomTree)
    [all...]
ExecutionDepsFix.cpp 147 void Kill(int rx);
202 // Kill register rx, recycle or collapse any DomainValue.
203 void ExeDepsFix::Kill(int rx) {
322 // Kill all defs and force them.
328 Kill(rx);
363 Kill(rx);
375 // Kill off any remaining uses that don't match available, and build a list of
383 Kill(*i);
413 // If latest didn't merge, it is useless now. Kill all registers using it.
416 Kill(*i)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
crash_nonunix_test.go 11 // sigquit is the signal to send to kill a hanging testdata program.
12 // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill.
13 var sigquit = os.Kill
  /prebuilts/go/linux-x86/src/runtime/
crash_nonunix_test.go 11 // sigquit is the signal to send to kill a hanging testdata program.
12 // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill.
13 var sigquit = os.Kill
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 88 // determined, the range from the block start to Kill will be added to LI.
89 SlotIndex Kill;
94 LiveInBlock(LiveRange &LR, MachineDomTreeNode *node, SlotIndex kill)
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
115 SlotIndex Kill, unsigned PhysReg);
227 /// @param Kill Index in block where LI is killed. If the value is
228 /// live-through, set Kill = SLotIndex() and also call
232 SlotIndex Kill = SlotIndex()) {
233 LiveIn.push_back(LiveInBlock(LR, DomNode, Kill));
    [all...]
  /system/core/libmemunreachable/
PtracerThread.h 45 void Kill();
PtracerThread.cpp 86 Kill();
139 void PtracerThread::Kill() {
  /prebuilts/go/darwin-x86/test/
sigchld.go 15 syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
  /prebuilts/go/linux-x86/test/
sigchld.go 15 syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Program.h 109 bool Kill
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinFrameLowering.cpp 80 .addReg(BF::RETS, RegState::Kill);
82 .addReg(BF::FP, RegState::Kill);
87 .addReg(BF::SP, RegState::Kill)
88 .addReg(BF::P1, RegState::Kill);
  /frameworks/base/core/proto/android/service/
procstats.proto 93 message Kill {
102 // PSS stats during cached kill
105 optional Kill kill = 3;
  /external/valgrind/gdbserver_tests/
nlvgdbsigqueue.stdoutB.exp 16 Kill the program being debugged? (y or n) [answered Y; input not from terminal]
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprognet/
signal.go 24 syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)
  /prebuilts/go/linux-x86/src/runtime/testdata/testprognet/
signal.go 24 syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)
  /prebuilts/go/darwin-x86/src/os/exec/
exec_posix_test.go 64 cmd.Process.Kill()
77 syscall.Kill(cmd.Process.Pid, syscall.SIGCONT)
80 cmd.Process.Kill()
  /prebuilts/go/linux-x86/src/os/exec/
exec_posix_test.go 64 cmd.Process.Kill()
77 syscall.Kill(cmd.Process.Pid, syscall.SIGCONT)
80 cmd.Process.Kill()
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 109 .addReg(ScratchOffset, RegState::Kill)
116 .addReg(ScratchOffset, RegState::Kill)
122 .addReg(ScratchOffset, RegState::Kill);
185 .addReg(ScratchBase, RegState::Kill)
186 .addReg(ScratchOffset, RegState::Kill)
192 .addReg(ScratchBase, RegState::Kill)
193 .addReg(ScratchOffset, RegState::Kill)
198 .addReg(ScratchBase, RegState::Kill)
199 .addReg(ScratchOffset, RegState::Kill);
  /external/libbrillo/brillo/
process.h 23 // process by pid or pid file, and kill the process. Upon destruction
136 // value based on whether kill was successful. If the process is a
139 virtual bool Kill(int signal, int timeout) = 0;
183 virtual bool Kill(int signal, int timeout);
process_mock.h 38 MOCK_METHOD2(Kill, bool(int signal, int timeout));
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/src/
tsan10.go 29 syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/src/
tsan10.go 29 syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
  /prebuilts/go/darwin-x86/src/os/signal/
signal_test.go 45 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
54 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
61 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
64 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
100 syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
118 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
132 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
136 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
160 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
164 syscall.Kill(syscall.Getpid(), syscall.SIGHUP
    [all...]
  /prebuilts/go/linux-x86/src/os/signal/
signal_test.go 45 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
54 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
61 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
64 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
100 syscall.Kill(syscall.Getpid(), syscall.SIGUSR1)
118 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
132 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
136 syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
160 syscall.Kill(syscall.Getpid(), syscall.SIGWINCH)
164 syscall.Kill(syscall.Getpid(), syscall.SIGHUP
    [all...]

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>