HomeSort by relevance Sort by last modified time
    Searched refs:HInstruction (Results 26 - 50 of 73) sorted by null

12 3

  /art/compiler/optimizing/
graph_test.cc 31 HInstruction* instr = new (allocator) HIntConstant(4);
33 HInstruction* equal = new (allocator) HEqual(instr, instr);
43 HInstruction* got = new (allocator) HGoto();
51 HInstruction* return_instr = new (allocator) HReturnVoid();
59 HInstruction* exit_instr = new (allocator) HExit();
292 HInstruction* got = block->GetLastInstruction();
296 HInstruction* first_instruction = new (&allocator) HIntConstant(4);
309 HInstruction* second_instruction = new (&allocator) HIntConstant(4);
code_generator.cc 55 HInstruction* current = it.Current();
83 HInstruction* current = it.Current();
146 void CodeGenerator::AllocateRegistersLocally(HInstruction* instruction) const {
178 HInstruction* input = instruction->InputAt(i);
225 void CodeGenerator::InitLocations(HInstruction* instruction) {
228 HInstruction* previous = instruction->GetPrevious();
code_generator_arm.h 132 virtual void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
code_generator_x86.h 134 virtual void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
code_generator_x86_64.h 131 virtual void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
ssa_type_propagation.cc 89 for (HUseIterator<HInstruction> it(instruction->GetUses()); !it.Done(); it.Advance()) {
locations.h 28 class HInstruction;
220 static Location RegisterOrConstant(HInstruction* instruction);
278 explicit LocationSummary(HInstruction* instruction);
graph_visualizer.cc 138 void VisitInstruction(HInstruction* instruction) {
175 HInstruction* instruction = it.Current();
216 HInstruction* instruction = it.Current();
  /external/chromium_org/v8/src/
hydrogen-dce.cc 55 HInstruction* instr = it.Current();
75 HInstruction* instr = it.Current();
hydrogen-escape-analysis.cc 46 HInstruction* instr = it.Current();
63 HCapturedObject* HEscapeAnalysisPhase::NewState(HInstruction* previous) {
74 HInstruction* previous) {
86 HInstruction* previous,
101 HInstruction* previous,
149 HInstruction* new_instr =
162 void HEscapeAnalysisPhase::AnalyzeDataFlow(HInstruction* allocate) {
181 HInstruction* instr = it.Current();
hydrogen-store-elimination.cc 35 HInstruction* instr = it.Current();
98 void HStoreEliminationPhase::ProcessInstr(HInstruction* instr,
hydrogen-dehoist.cc 48 HInstruction* instr = it.Current();
code-stubs-hydrogen.cc 88 HInstruction* LoadFromOptimizedCodeMap(HValue* optimized_map,
127 HInstruction* stack_parameter_count = NULL;
159 HInstruction* stack_pop_count = stack_parameter_count;
163 HInstruction* constant_one = graph()->GetConstant1();
337 HInstruction* allocation_site = Add<HLoadKeyed>(GetParameter(0),
348 HInstruction* boilerplate = Add<HLoadNamedField>(
401 HInstruction* allocation_site = Add<HLoadKeyed>(GetParameter(0),
413 HInstruction* boilerplate = Add<HLoadNamedField>(
435 HInstruction* object = Add<HAllocate>(size_in_bytes, HType::JSObject(),
467 HInstruction* object = Add<HAllocate>(size, HType::JSObject(), TENURED
    [all...]
hydrogen-removable-simulates.cc 17 State* Process(HInstruction* instr, Zone* zone) {
168 void Process(HInstruction* instr, Zone* zone) { }
hydrogen-bce.cc 188 HInstruction* old_position = new_check->next();
224 HInstruction* end_of_scan_range) {
236 for (HInstruction* cursor = end_of_scan_range; cursor != insert_before;) {
263 for (HInstruction* cursor = end_of_scan_range; cursor != insert_before;) {
378 HInstruction* i = it.Current();
hydrogen.cc 126 void HBasicBlock::AddInstruction(HInstruction* instr,
572 HInstruction* current = block->first();
    [all...]
hydrogen-instructions.cc 629 void HInstruction::PrintTo(StringStream* stream) {
643 void HInstruction::PrintDataTo(StringStream *stream) {
651 void HInstruction::PrintMnemonicTo(StringStream* stream) {
656 void HInstruction::Unlink() {
672 void HInstruction::InsertBefore(HInstruction* next) {
678 HInstruction* prev = next->previous();
690 void HInstruction::InsertAfter(HInstruction* previous) {
706 HInstruction* next = previous->next_
    [all...]
hydrogen-environment-liveness.cc 95 HInstruction* instr,
181 for (HInstruction* instr = block->end(); instr != NULL;
hydrogen-flow-engine.h 27 inline void Process(HInstruction* value, Zone* zone) {
42 inline NoState* Process(HInstruction* value, Zone* zone) {
lithium-codegen.cc 114 HInstruction* hinstr = HInstruction::cast(hval);
hydrogen-instructions.h 30 class HInstruction;
534 // Declare a non-virtual predicates for each concrete HInstruction or HValue.
541 // Declare virtual predicates for abstract HInstruction or HValue
    [all...]
hydrogen-check-elimination.cc 66 HInstruction* check_; // The last check instruction.
85 HCheckTable* Process(HInstruction* instr, Zone* zone) {
648 HInstruction* instr) {
765 HInstruction* check,
772 HInstruction* check,
810 void Process(HInstruction* instr, Zone* zone) {
hydrogen-load-elimination.cc 46 HLoadEliminationTable* Process(HInstruction* instr, Zone* zone) {
446 void Process(HInstruction* instr, Zone* zone) {
  /external/chromium_org/v8/src/arm64/
lithium-arm64.cc 377 HInstruction* instr = HInstruction::cast(value);
477 HInstruction* hinstr,
635 HInstruction* current = block->first();
654 void LChunkBuilder::VisitInstruction(HInstruction* current) {
655 HInstruction* old_current = current_instruction_;
697 HInstruction* hydrogen_val) {
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 524 HInstruction* instr = HInstruction::cast(value);
585 HInstruction* hinstr,
707 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
803 HInstruction* current = block->first();
823 void LChunkBuilder::VisitInstruction(HInstruction* current) {
824 HInstruction* old_current = current_instruction_;
866 HInstruction* hydrogen_val) {
    [all...]

Completed in 376 milliseconds

12 3