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

1 2 3 4 5

  /external/v8/src/compiler/
all-nodes.cc 14 : live(local_zone), is_live(graph->NodeCount(), false, local_zone) {
17 live.push_back(end);
18 // Find all live nodes reachable from end.
19 for (size_t i = 0; i < live.size(); i++) {
20 for (Node* const input : live[i]->inputs()) {
31 live.push_back(input);
graph-trimmer.cc 23 // Mark end node as live.
25 // Compute transitive closure of live nodes.
27 Node* const live = live_[i]; local
28 for (Node* const input : live->inputs()) MarkAsLive(input);
30 // Remove dead->live edges.
31 for (Node* const live : live_) {
32 DCHECK(IsLive(live));
33 for (Edge edge : live->use_edges()) {
38 os << "DeadLink: " << *user << "(" << edge.index() << ") -> " << *live
all-nodes.h 19 // Constructor. Traverses the graph and builds the {live} sets.
28 NodeVector live; // Nodes reachable from end. member in class:v8::internal::compiler::AllNodes
graph-replay.cc 27 for (Node* node : nodes.live) {
37 for (Node* node : nodes.live) {
liveness-analyzer.cc 132 bool live = liveness->Contains(i) || permanently_live_.Contains(i); local
133 if (!live || locals_state->InputAt(i) != replacement_node_) {
149 bool live = liveness->Contains(var) || permanently_live_.Contains(var); local
150 inputs_buffer_.push_back(live ? node.node : replacement_node_);
190 os << " Live set: ";
  /external/v8/src/crankshaft/
hydrogen-environment-liveness.cc 48 HBasicBlock* block, BitVector* live) {
49 // When a value is live in successor A but dead in B, we must
55 if (live_in_successor->Equals(*live)) continue;
56 for (int i = 0; i < live->length(); ++i) {
57 if (!live->Contains(i)) continue;
85 BitVector* live) {
87 live->Clear();
89 live->Union(*live_at_block_start_[it.Current()->block_id()]);
96 BitVector* live) {
101 if (!live->Contains(index))
    [all...]
hydrogen-environment-liveness.h 14 // Trims live ranges of environment slots by doing explicit liveness analysis.
18 // live ranges of environment slots by zapping them with a constant after
30 void ZapEnvironmentSlotsInSuccessors(HBasicBlock* block, BitVector* live);
32 void UpdateLivenessAtBlockEnd(HBasicBlock* block, BitVector* live);
33 void UpdateLivenessAtInstruction(HInstruction* instr, BitVector* live);
56 // for which a new live range has started since (so they must not be zapped
57 // in that simulate when the end of another live range of theirs is found).
  /external/clang/test/Sema/
warn-unreachable.c 6 int live();
30 switch (live()) {
36 live(), halt(),
40 live()
47 live(),
57 live(),
63 if (live())
65 live(),
74 live(),
97 live(),
    [all...]
  /external/clang/test/SemaCXX/
warn-unreachable.cpp 4 int &live();
11 live();
13 live();
20 live();
22 live();
27 live();
32 live();
47 live(),
75 live(),
  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 12 #define comment /##/ dead tokens live here
  /dalvik/libdex/
DexDebugInfo.cpp 117 bool live; member in struct:LocalInfo
123 if (localCb != NULL && localInReg[reg].live) {
170 localInReg[argReg].live = true;
207 localInReg[reg].live = true;
248 localInReg[reg].live = true;
259 localInReg[reg].live = false;
276 * If the register is live, the "restart" is superfluous,
279 if (!localInReg[reg].live) {
281 localInReg[reg].live = true;
  /external/autotest/client/site_tests/desktopui_UrlFetchWithChromeDriver/
desktopui_UrlFetchWithChromeDriver.py 18 def initialize(self, live=True):
21 @param live: Set to True to access external websites. Otherwise, test
24 self._live = live
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
sonofmmm.cfg 38 input_bucket = <S3 bucket where source videos live>
  /external/chromium-trace/catapult/experimental/heatmap/
color.js 2 // https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
weakhiddso.d 7 # correctly when generating a DSO. For now, we have to live with the
  /external/v8/test/mjsunit/es6/
generators-debug-liveedit.js 74 // Patch should not succeed because there is a live generator activation on
79 // At this point one iterator is live, but closed, so the patch will succeed.
86 // Patching will fail however when a live iterator is suspended.
debug-liveedit-new-target-2.js 7 // Test that live-editing a frame to introduce new.target fails.
  /tools/test/connectivity/acts/framework/acts/bin/
monsoon.py 57 sample_offset=FLAGS.offset, live=True)
  /external/v8/test/webkit/fast/js/
arguments.js 224 // Arguments that were not provided are not live
282 // Arguments that were not provided are not live
622 // Test a0 is a live mapped argument.
632 // When a1 is redefined as an accessor, it is no longer live.
642 // When a2 is made read-only the value is set, but it is no longer live.
653 // When a3 is made read-only, it is no longer live.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
tab.py 245 renderer, ensuring that even "live" resources in the memory cache are
  /external/v8/test/mjsunit/harmony/
debug-async-liveedit.js 83 // Patch should not succeed because there is a live async function activation
90 // At this point one iterator is live, but closed, so the patch will succeed.
  /docs/source.android.com/
Android.mk 35 # live docs branch.
  /external/libpng/contrib/gregbook/
makevms.com 8 $! Set locations where zlib and libpng sources live.
  /external/v8/test/mjsunit/compiler/
alloc-number-debug.js 31 // have live values (o) in a register.
alloc-number.js 30 // have live values (o) in a register.

Completed in 4338 milliseconds

1 2 3 4 5