HomeSort by relevance Sort by last modified time
    Searched defs:Kill (Results 1 - 19 of 19) sorted by null

  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 91 const bool Kill;
95 bool Kill)
96 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
110 return Kill;
507 bool Kill = false;
513 Kill = true;
515 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill);
530 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill);
MachineInstrBuilder.h 33 Kill = 0x8,
41 ImplicitKill = Implicit | Kill
72 flags & RegState::Kill,
395 return B ? RegState::Kill : 0;
  /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);
222 /// @param Kill Index in block where LI is killed. If the value is
223 /// live-through, set Kill = SLotIndex() and also call
227 SlotIndex Kill = SlotIndex()) {
228 LiveIn.push_back(LiveInBlock(LR, DomNode, Kill));
    [all...]
SplitKit.cpp 551 // value. The inserted COPY is not a kill, and we don't need to recompute
649 // If MI doesn't kill the assigned register, just leave it.
654 DEBUG(dbgs() << " cannot find simple kill of RegIdx " << RegIdx << '\n');
657 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot();
658 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
659 AssignI.setStop(Kill);
    [all...]
  /external/v8/build/util/lib/common/
util.py 106 def Kill(pid):
111 os.kill(pid, signal.SIGTERM)
  /system/core/libmemunreachable/
PtracerThread.cpp 86 Kill();
139 void PtracerThread::Kill() {
  /external/libbrillo/brillo/
process.cc 320 // kill the process that has just exited.
343 bool ProcessImpl::Kill(int signal, int timeout) {
345 // Passing pid == 0 to kill is committing suicide. Check specifically.
349 if (kill(pid_, signal) < 0) {
390 Kill(SIGKILL, 0);
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl.cc 254 ResultExpr Kill() {
  /external/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 88 void Kill(MachineInstr &MI);
299 void SILowerControlFlowPass::Kill(MachineInstr &MI) {
307 // Kill is only allowed in pixel / geometry shaders.
535 Kill(MI);
  /external/pdfium/xfa/src/fwl/src/core/
fwl_sdadapterimp.cpp 160 FWL_ERR CFWL_SDAdapterThreadMgr::Kill(FWL_HTHREAD hThread, int32_t iExitCode) {
  /external/v8/src/compiler/
node.cc 130 void Node::Kill() {
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 87 TRACE((" kill-all i%d\n", instr->id()));
88 Kill();
92 TRACE((" kill-maps i%d\n", instr->id()));
96 TRACE((" kill-elements-kind i%d\n", instr->id()));
101 TRACE((" kill-elements i%d\n", instr->id()));
105 TRACE((" kill-osr i%d\n", instr->id()));
106 Kill();
175 // Kill an entry that doesn't agree with the other value.
195 friend class HLoadEliminationEffects; // Calls Kill() and others.
248 // Kill non-equivalent may-alias entries
    [all...]
hydrogen-check-elimination.cc 127 Kill();
530 Kill(object);
538 Kill(object);
632 Kill(object);
646 Kill(object);
667 // Kill everything in the table.
668 void Kill() {
673 // Kill all unstable entries in the table.
691 // Kill everything in the table that may alias {object}.
692 void Kill(HValue* object)
    [all...]
hydrogen-gvn.cc 27 void Kill(SideEffects side_effects);
80 void Kill(SideEffects side_effects);
151 void HInstructionMap::Kill(SideEffects changes) {
326 void HSideEffectMap::Kill(SideEffects side_effects) {
804 // If this is a loop header kill everything killed by the loop.
806 map->Kill(loop_side_effects_[block->block_id()]);
807 dominators->Kill(loop_side_effects_[block->block_id()]);
837 map->Kill(changes);
874 // Kill everything killed on any path between this block and the
885 successor_map->Kill(side_effects_on_all_paths)
    [all...]
hydrogen-instructions.cc 485 Kill();
503 void HValue::Kill() {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iisrsta.h 69 virtual HRESULT WINAPI Kill(void) = 0;
85 HRESULT (WINAPI *Kill)(IIisServiceControl *This);
103 #define IIisServiceControl_Kill(This) (This)->lpVtbl->Kill(This)
  /art/compiler/optimizing/
gvn.cc 29 * through the `Add` method, and the `Kill` method. The `Kill` method removes
128 void Kill(SideEffects side_effects) {
468 set->Kill(side_effects_.GetLoopEffects(block));
487 // Do not kill the set with the side effects of the instruction just now: if
488 // the instruction is GVN'ed, we don't need to kill.
504 set->Kill(current->GetSideEffects());
508 set->Kill(current->GetSideEffects());
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 213 /// This is used to record the kill registers per basic block.
273 /// - its kill set.
284 BlockToInstrPerColor &Gen, BlockToRegSet &Kill,
296 BitVector &BBKillSet = Kill[&MBB];
327 // Clobbers kill the related colors.
392 /// Out[bb] = Gen[bb] U (In[bb] - Kill[bb])
397 BlockToInstrPerColor &Gen, BlockToRegSet &Kill,
422 // Out[bb] = Gen[bb] U (In[bb] - Kill[bb])
423 if (!Kill[&MBB].test(CurReg))
454 // Kill: register set of killed color in this block
    [all...]
  /external/v8/src/wasm/
ast-decoder.cc 58 void Kill(State new_state = kControlEnd) {
851 ssa_env_->Kill(SsaEnv::kControlEnd);
    [all...]

Completed in 802 milliseconds