/external/chromium_org/v8/src/ |
hydrogen-environment-liveness.h | 53 void ZapEnvironmentSlot(int index, HSimulate* simulate); 67 ZoneList<HSimulate*> first_simulate_; 79 HSimulate* last_simulate_;
|
hydrogen-removable-simulates.cc | 34 ZoneList<HSimulate*> mergelist(2, zone()); 47 // (Before each HEnterInlined, there is a non-foldable HSimulate 72 HSimulate* current_simulate = HSimulate::cast(current); 88 HSimulate* last = mergelist.RemoveLast();
|
hydrogen-environment-liveness.cc | 60 int index, HSimulate* simulate) { 85 HSimulate* simulate = first_simulate_.at(successor_id); 98 HSimulate* simulate = marker->next_simulate(); 159 // inline sequence always looks like this: HLeaveInlined, HSimulate, 172 last_simulate_ = HSimulate::cast(instr);
|
hydrogen-osr.cc | 96 builder_->Add<HSimulate>(osr_entry_id);
|
hydrogen.h | 138 HSimulate* AddNewSimulate(BailoutId ast_id, 141 HSimulate* instr = CreateSimulate(ast_id, removable); 185 HSimulate* CreateSimulate(BailoutId ast_id, RemovableSimulate removable); [all...] |
hydrogen.cc | 179 HSimulate* HBasicBlock::CreateSimulate(BailoutId ast_id, 190 HSimulate* instr = 191 new(zone()) HSimulate(ast_id, pop_count, zone(), removable); 196 // HSimulate::MergeWith() to easily append additional pushed values 284 HSimulate* simulate = HSimulate::cast(predecessor->end()->previous()); [all...] |
hydrogen-instructions.cc | [all...] |
hydrogen-instructions.h | [all...] |
code-stubs-hydrogen.cc | 178 Add<HSimulate>(BailoutId::StubEntry()); [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
uint32.js | 58 SideEffect(); // x will be used by HSimulate.
|
/external/v8/src/arm/ |
lithium-arm.cc | 762 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/v8/src/mips/ |
lithium-mips.cc | 762 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/v8/src/x64/ |
lithium-x64.cc | 757 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/v8/src/ |
hydrogen-instructions.cc | 1252 void HSimulate::PrintDataTo(StringStream* stream) { [all...] |
hydrogen.h | 170 HSimulate* CreateSimulate(int ast_id); [all...] |
hydrogen-instructions.h | [all...] |
hydrogen.cc | 136 HSimulate* HBasicBlock::CreateSimulate(int ast_id) { 145 HSimulate* instr = new(zone()) HSimulate(ast_id, pop_count); 206 HSimulate* simulate = HSimulate::cast(predecessor->end()->previous()); [all...] |
/external/chromium_org/v8/src/arm/ |
lithium-arm.cc | 636 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/chromium_org/v8/src/ia32/ |
lithium-ia32.cc | 701 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/chromium_org/v8/src/mips/ |
lithium-mips.cc | 641 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/chromium_org/v8/src/x64/ |
lithium-x64.cc | 645 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |
/external/v8/src/ia32/ |
lithium-ia32.cc | 759 HSimulate* sim = HSimulate::cast(hinstr->next()); [all...] |