Home
last modified time | relevance | path

Searched refs:live (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/external/v8/src/crankshaft/
Dhydrogen-environment-liveness.cc48 HBasicBlock* block, BitVector* live) { in ZapEnvironmentSlotsInSuccessors() argument
55 if (live_in_successor->Equals(*live)) continue; in ZapEnvironmentSlotsInSuccessors()
56 for (int i = 0; i < live->length(); ++i) { in ZapEnvironmentSlotsInSuccessors()
57 if (!live->Contains(i)) continue; in ZapEnvironmentSlotsInSuccessors()
85 BitVector* live) { in UpdateLivenessAtBlockEnd() argument
87 live->Clear(); in UpdateLivenessAtBlockEnd()
89 live->Union(*live_at_block_start_[it.Current()->block_id()]); in UpdateLivenessAtBlockEnd()
96 BitVector* live) { in UpdateLivenessAtInstruction() argument
101 if (!live->Contains(index)) { in UpdateLivenessAtInstruction()
110 live->Add(index); in UpdateLivenessAtInstruction()
[all …]
Dhydrogen-environment-liveness.h30 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live);
32 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live);
33 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
/external/clang/test/Sema/
Dwarn-unreachable.c6 int live();
30 switch (live()) { in test2()
36 live(), halt(), in test2()
40 live() in test2()
47 live(), in test2()
57 live(), in test2()
63 if (live()) in test2()
65 live(), in test2()
74 live(), in test2()
97 live(), in test2()
/external/clang/test/SemaCXX/
Dwarn-unreachable.cpp4 int &live();
11 live(); in test1()
13 live(); in test1()
20 live(); in test2()
22 live(); in test2()
27 live(); in test2()
32 live(); in test2()
47 live(), in test3()
75 live(), in test6()
/external/v8/src/compiler/
Dall-nodes.cc14 : live(local_zone), is_live(graph->NodeCount(), false, local_zone) { in AllNodes()
17 live.push_back(end); in AllNodes()
19 for (size_t i = 0; i < live.size(); i++) { in AllNodes()
20 for (Node* const input : live[i]->inputs()) { in AllNodes()
31 live.push_back(input); in AllNodes()
Dgraph-trimmer.cc30 for (Node* const live : live_) { in TrimGraph()
31 DCHECK(IsLive(live)); in TrimGraph()
32 for (Edge edge : live->use_edges()) { in TrimGraph()
37 os << "DeadLink: " << *user << "(" << edge.index() << ") -> " << *live in TrimGraph()
Dliveness-analyzer.cc132 bool live = liveness->Contains(i) || permanently_live_.Contains(i); in ClearNonLiveFrameStateSlots() local
133 if (!live || locals_state->InputAt(i) != replacement_node_) { in ClearNonLiveFrameStateSlots()
149 bool live = liveness->Contains(var) || permanently_live_.Contains(var); in ClearNonLiveStateValues() local
150 inputs_buffer_.push_back(live ? node.node : replacement_node_); in ClearNonLiveStateValues()
Dgraph-replay.cc27 for (Node* node : nodes.live) { in PrintReplay()
37 for (Node* node : nodes.live) { in PrintReplay()
/external/autotest/client/site_tests/desktopui_UrlFetchWithChromeDriver/
Dcontrol21 job.run_test('desktopui_UrlFetchWithChromeDriver', live=True, tag='live')
22 job.run_test('desktopui_UrlFetchWithChromeDriver', live=False, tag='not-live')
Dcontrol.bvt23 job.run_test('desktopui_UrlFetchWithChromeDriver', live=False, tag='not-live')
Ddesktopui_UrlFetchWithChromeDriver.py18 def initialize(self, live=True): argument
24 self._live = live
/external/llvm/test/CodeGen/X86/
Dcoalescer-dce.ll21 ; live-in at 240L
22 ; live-in at 416L
23 ; live-in at 320L
24 ; live-in at 304L
28 ; extend the live range of %vreg7 to end at 256d. When the joined copy is
/external/llvm/docs/HistoricalNotes/
D2003-06-26-Reoptimizer2.txt19 The BinInterface tries to find live-outs for traces so that it can do
21 the original code. It has to preserve the live-ins and live-outs when
23 epilogues that copy live-outs back into the right registers, but
24 live-ins have to be in the right registers.)
98 2. Section 0 is the trace prolog, consisting mainly of live-ins and
/external/autotest/client/common_lib/
DREADME5 to both client and server. Libraries which are client-specific should live
6 in client/bin and libraries which are server-specific should live in
/external/llvm/test/CodeGen/AArch64/
Dregress-fp128-livein.ll3 ; Regression test for NZCV reg live-in not being added to fp128csel IfTrue BB,
4 ; causing a crash during live range calc.
Darm64-dead-register-def-bug.ll5 ; with dead defs, but live implicit-defs of subregs:
7 ; These instructions are live, and their definitions should not be rewritten.
/external/llvm/test/Transforms/DeadArgElim/
D2008-06-23-DeadAfterLive.ll7 ; This function has a live return value, it is used by @alive.
19 ; This function ensures the retval of @test5 is live.
Daggregates.ll46 ; Case 2: an opaque use of the aggregate exists (in this case *live*). Other
73 ; Case 3: the insertvalue meant %in was live if ret-slot-1 was, but we were only
135 ; unconditionally live, but 1 only conditionally live. Since at that level we're
136 ; applying the results to the whole of %res, this means %res is live and cannot
/external/llvm/test/CodeGen/X86/GC/
Derlang-gc.ll14 ; CHECK64-NEXT: .short 0 # live root count
22 ; CHECK32-NEXT: .short 0 # live root count
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
DREADME.md7 Record live Web pages and use them for local performance testing!
10 Use local DNS and HTTP(S) proxies to captures your live traffic. Then
/external/llvm/test/ExecutionEngine/MCJIT/
D2003-08-23-RegisterAllocatePhysReg.ll4 ; of registers (due to too many overlapping live ranges), but then attempts to
10 ; Produce lots of overlapping live ranges
/external/llvm/test/ExecutionEngine/OrcMCJIT/
D2003-08-23-RegisterAllocatePhysReg.ll4 ; of registers (due to too many overlapping live ranges), but then attempts to
10 ; Produce lots of overlapping live ranges
/external/llvm/test/Transforms/RewriteStatepointsForGC/deopt-bundles/
Dliveness-basics.ll2 ; correct live values at statepoints
5 ; Tests to make sure we consider %obj live in both the taken and untaken
55 ; A local kill should effect values live from a successor phi. Also, we
87 ; A base pointer must be live if it is needed at a later statepoint,
/external/llvm/test/CodeGen/ARM/
Difcvt-regmask-noreturn.ll9 ; live across it when if converting. This will be R0 which is passed to the call to free at the end
12 ; leading to verifier errors because the later use of R0 in free() is not live.
/external/chromium-trace/catapult/docs/
Ddirectory-structure.md3 ## Where should the code live?
12 use these guidelines to decide where code should live.
48 * Executable files (e.g. files chmodded to +x) must live in `x/bin`.

12345678910>>...19