Searched defs:Kill (Results 1 - 21 of 21) sorted by relevance

/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.h88 // determined, the range from the block start to Kill will be added to LI.
89 SlotIndex Kill; member in struct:llvm::LiveRangeCalc::LiveInBlock
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));
233 /// form. Add liveness to all live-in blocks up to the Kill point, or the
H A DExecutionDepsFix.cpp198 void processDefs(MachineInstr*, bool Kill);
278 // Kill register rx, recycle or collapse any DomainValue.
498 // If Kill is set, also kill off DomainValues clobbered by the defs.
501 void ExeDepsFix::processDefs(MachineInstr *MI, bool Kill) { argument
536 // Kill off domains redefined by generic instructions.
537 if (Kill)
592 // Kill all defs and force them.
646 // Kill off any remaining uses that don't match available, and build a list of
690 // If latest didn't merge, it is useless now. Kill all registers using it.
H A DLiveIntervalAnalysis.cpp605 void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill, argument
607 LiveQueryResult LRQ = LR.Query(Kill);
612 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill);
617 LR.removeSegment(Kill, LRQ.endPoint());
623 LR.removeSegment(Kill, MBBEnd);
1058 // Kill flags shouldn't be used while live intervals exist, they will be
H A DSplitKit.cpp657 SlotIndex Kill = LIS.getInstructionIndex(MBBI).getRegSlot(); local
658 DEBUG(dbgs() << " move kill to " << Kill << '\t' << *MBBI);
659 AssignI.setStop(Kill);
/external/v8/build/util/lib/common/
H A Dutil.py106 def Kill(pid): function
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h91 const bool Kill; member in class:llvm::LiveQueryResult
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);
94 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint, bool Kill) argument
H A DMachineInstrBuilder.h33 Kill = 0x8, enumerator in enum:llvm::RegState::__anon11920
41 ImplicitKill = Implicit | Kill
72 flags & RegState::Kill,
395 return B ? RegState::Kill : 0;
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.h77 Kill () function in struct:lldb_perf::TestCase::ActionWanted
/external/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp88 void Kill(MachineInstr &MI);
299 void SILowerControlFlowPass::Kill(MachineInstr &MI) { function in class:SILowerControlFlowPass
307 // Kill is only allowed in pixel / geometry shaders.
535 Kill(MI);
/external/libbrillo/brillo/
H A Dprocess.cc343 bool ProcessImpl::Kill(int signal, int timeout) { function in class:brillo::ProcessImpl
390 Kill(SIGKILL, 0);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.cc254 ResultExpr Kill() { function in namespace:sandbox::bpf_dsl
/external/pdfium/xfa/src/fwl/src/core/
H A Dfwl_sdadapterimp.cpp160 FWL_ERR CFWL_SDAdapterThreadMgr::Kill(FWL_HTHREAD hThread, int32_t iExitCode) { function in class:CFWL_SDAdapterThreadMgr
/external/v8/src/compiler/
H A Dnode.cc130 void Node::Kill() { function in class:v8::internal::compiler::Node
/external/v8/src/crankshaft/
H A Dhydrogen-load-elimination.cc88 Kill();
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.
263 // Kill everything in this table.
264 void Kill() { function in class:v8::internal::HLoadEliminationTable
268 // Kill all entries matching the given offset.
276 // Kill all entries aliasing the given store.
286 // Kill multipl
[all...]
H A Dhydrogen-check-elimination.cc127 Kill();
530 Kill(object);
538 Kill(object);
632 Kill(object);
646 Kill(object);
667 // Kill everything in the table.
668 void Kill() { function in class:v8::internal::HCheckTable
673 // Kill all unstable entries in the table.
691 // Kill everything in the table that may alias {object}.
692 void Kill(HValu function in class:v8::internal::HCheckTable
[all...]
H A Dhydrogen-gvn.cc27 void Kill(SideEffects side_effects);
80 void Kill(SideEffects side_effects);
151 void HInstructionMap::Kill(SideEffects changes) { function in class:v8::internal::BASE_EMBEDDED::HInstructionMap
326 void HSideEffectMap::Kill(SideEffects side_effects) { function in class:v8::internal::BASE_EMBEDDED::HSideEffectMap
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);
886 successor_dominators->Kill(side_effects_on_all_path
[all...]
H A Dhydrogen-instructions.cc485 Kill();
503 void HValue::Kill() { function in class:v8::internal::HValue
/external/llvm/lib/Target/AArch64/
H A DAArch64CollectLOH.cpp284 BlockToInstrPerColor &Gen, BlockToRegSet &Kill,
296 BitVector &BBKillSet = Kill[&MBB];
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.
459 BlockToRegSet Kill; local
462 initReachingDef(MF, ColorOpToReachedUses, Gen, Kill, ReachableUses, RegToId,
467 reachingDefAlgorithm(MF, ColorOpToReachedUses, In, Out, Gen, Kill,
282 initReachingDef(const MachineFunction &MF, InstrToInstrs *ColorOpToReachedUses, BlockToInstrPerColor &Gen, BlockToRegSet &Kill, BlockToSetOfInstrsPerColor &ReachableUses, const MapRegToId &RegToId, const MachineInstr *DummyOp, bool ADRPMode) argument
393 reachingDefAlgorithm(const MachineFunction &MF, InstrToInstrs *ColorOpToReachedUses, BlockToSetOfInstrsPerColor &In, BlockToSetOfInstrsPerColor &Out, BlockToInstrPerColor &Gen, BlockToRegSet &Kill, BlockToSetOfInstrsPerColor &ReachableUses, unsigned NbReg) argument
[all...]
/external/lldb/source/API/
H A DSBProcess.cpp760 SBProcess::Kill () function in class:SBProcess
777 log->Printf ("SBProcess(%p)::Kill () => SBError (%p): %s",
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp401 MachProcess::Kill (const struct timespec *timeout_abstime) function in class:MachProcess
403 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Kill ()");
405 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Kill() DoSIGSTOP() state = %s", DNBStateAsString(state));
411 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Kill() DoSIGSTOP() ::ptrace (PT_KILL, pid=%u, 0, 0) => 0x%8.8x (%s)", m_pid, err.Error(), err.AsString());
/external/v8/src/wasm/
H A Dast-decoder.cc58 void Kill(State new_state = kControlEnd) { function in struct:v8::internal::wasm::SsaEnv
851 ssa_env_->Kill(SsaEnv::kControlEnd);
1156 ssa_env_->Kill(SsaEnv::kControlEnd);
1350 return from->Kill();
1426 from->Kill(SsaEnv::kUnreachable);

Completed in 508 milliseconds