HomeSort by relevance Sort by last modified time
    Searched refs:HLoopInformation (Results 1 - 9 of 9) sorted by null

  /art/compiler/optimizing/
ssa_liveness_analysis.cc 30 static bool IsLoopExit(HLoopInformation* current, HLoopInformation* to) {
35 static bool IsLoop(HLoopInformation* info) {
39 static bool InSameLoop(HLoopInformation* first_loop, HLoopInformation* second_loop) {
43 static bool IsInnerLoop(HLoopInformation* outer, HLoopInformation* inner) {
66 HLoopInformation* my_loop = block->GetLoopInformation();
67 HLoopInformation* first_loop = first_successor->GetLoopInformation();
68 HLoopInformation* second_loop = second_successor->GetLoopInformation()
    [all...]
nodes.cc 150 HLoopInformation* info = successor->GetLoopInformation();
159 HLoopInformation* info = header->GetLoopInformation();
224 HLoopInformation* info = block->GetLoopInformation();
234 void HLoopInformation::PopulateRecursive(HBasicBlock* block) {
246 bool HLoopInformation::Populate() {
265 HBasicBlock* HLoopInformation::GetPreHeader() const {
270 bool HLoopInformation::Contains(const HBasicBlock& block) const {
274 bool HLoopInformation::IsIn(const HLoopInformation& other) const {
nodes.h 190 class HLoopInformation : public ArenaObject {
192 HLoopInformation(HBasicBlock* header, HGraph* graph)
240 bool IsIn(const HLoopInformation& other) const;
252 DISALLOW_COPY_AND_ASSIGN(HLoopInformation);
282 loop_information_ = new (graph_->GetArena()) HLoopInformation(this, graph_);
362 HLoopInformation* GetLoopInformation() const {
368 void SetInLoop(HLoopInformation* info) {
402 HLoopInformation* loop_information_;
    [all...]
find_loops_test.cc 125 HLoopInformation* info = block->GetLoopInformation();
338 HLoopInformation* info = graph->GetBlocks().Get(3)->GetLoopInformation();
  /external/chromium_org/v8/src/
hydrogen-flow-engine.h 150 HLoopInformation* loop = block->loop_information();
hydrogen-bch.cc 48 HLoopInformation* loop = data->phi()->block()->current_loop();
hydrogen.h 27 class HLoopInformation;
50 HLoopInformation* loop_information() const { return loop_information_; }
51 HLoopInformation* current_loop() const {
196 HLoopInformation* loop_information_;
256 class HLoopInformation FINAL : public ZoneObject {
258 HLoopInformation(HBasicBlock* loop_header, Zone* zone)
265 ~HLoopInformation() {}
278 bool IsNestedInThisLoop(HLoopInformation* other) {
287 HLoopInformation* parent_loop() {
    [all...]
hydrogen.cc 106 loop_information_ = new(zone()) HLoopInformation(this, zone());
483 void HLoopInformation::RegisterBackEdge(HBasicBlock* block) {
489 HBasicBlock* HLoopInformation::GetLastBackEdge() const {
503 void HLoopInformation::AddBlock(HBasicBlock* block) {
    [all...]
hydrogen-instructions.h 33 class HLoopInformation;
    [all...]

Completed in 297 milliseconds