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

1 2

  /external/v8/src/crankshaft/
hydrogen-bce.cc 12 // We try to "factor up" HBoundsCheck instructions towards the root of the
31 HBoundsCheck* check,
84 // Data about each HBoundsCheck that can be eliminated or moved.
104 HBoundsCheck* LowerCheck() const { return lower_check_; }
105 HBoundsCheck* UpperCheck() const { return upper_check_; }
115 void UpdateUpperOffsets(HBoundsCheck* check, int32_t offset) {
124 void UpdateLowerOffsets(HBoundsCheck* check, int32_t offset) {
145 void CoverCheck(HBoundsCheck* new_check,
182 HBoundsCheck* first_check = new_check == lower_check_ ? upper_check_
201 HBoundsCheck* lower_check
    [all...]
hydrogen-instructions.cc 949 std::ostream& HBoundsCheck::PrintDataTo(std::ostream& os) const { // NOLINT
965 void HBoundsCheck::InferRepresentation(HInferRepresentationPhase* h_infer) {
985 Range* HBoundsCheck::InferRange(Zone* zone) {
    [all...]
hydrogen.cc     [all...]
hydrogen-instructions.h     [all...]
  /art/compiler/optimizing/
prepare_for_register_allocation.h 41 void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE;
x86_memory_gen.cc 34 void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE {
bounds_check_elimination_test.cc 94 HBoundsCheck* bounds_check2 = new (&allocator_)
95 HBoundsCheck(parameter2, array_length, 0);
118 HBoundsCheck* bounds_check4 = new (&allocator_)
119 HBoundsCheck(parameter2, array_length, 0);
131 HBoundsCheck* bounds_check5 = new (&allocator_)
132 HBoundsCheck(parameter2, array_length, 0);
203 HBoundsCheck* bounds_check = new (&allocator_)
204 HBoundsCheck(add, array_length, 0);
269 HBoundsCheck* bounds_check = new (&allocator_)
270 HBoundsCheck(sub2, array_length, 0)
    [all...]
bounds_check_elimination.cc 815 void VisitBoundsCheck(HBoundsCheck* bounds_check) OVERRIDE {
    [all...]
graph_checker.h 56 void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE;
prepare_for_register_allocation.cc 51 void PrepareForRegisterAllocation::VisitBoundsCheck(HBoundsCheck* check) {
ssa_liveness_analysis_test.cc 119 HInstruction* bounds_check = new (&allocator_) HBoundsCheck(index, length, /* dex_pc */ 0u);
scheduler_arm64.cc 74 void SchedulingLatencyVisitorARM64::VisitBoundsCheck(HBoundsCheck* ATTRIBUTE_UNUSED) {
scheduler_arm.cc 478 void SchedulingLatencyVisitorARM::VisitBoundsCheck(HBoundsCheck* ATTRIBUTE_UNUSED) {
graph_checker.cc 251 void GraphChecker::VisitBoundsCheck(HBoundsCheck* check) {
253 AddError(StringPrintf("Instruction %s:%d is a HBoundsCheck, "
    [all...]
graph_visualizer.cc 428 void VisitBoundsCheck(HBoundsCheck* bounds_check) OVERRIDE {
    [all...]
instruction_simplifier.cc     [all...]
instruction_builder.cc     [all...]
code_generator_arm64.cc 251 explicit BoundsCheckSlowPathARM64(HBoundsCheck* instruction) : SlowPathCodeARM64(instruction) {}
    [all...]
code_generator_mips64.cc 107 explicit BoundsCheckSlowPathMIPS64(HBoundsCheck* instruction) : SlowPathCodeMIPS64(instruction) {}
    [all...]
nodes.h     [all...]
code_generator_arm_vixl.cc 429 explicit BoundsCheckSlowPathARMVIXL(HBoundsCheck* instruction)
    [all...]
code_generator_mips.cc 152 explicit BoundsCheckSlowPathMIPS(HBoundsCheck* instruction) : SlowPathCodeMIPS(instruction) {}
    [all...]
code_generator_x86.cc 125 explicit BoundsCheckSlowPathX86(HBoundsCheck* instruction) : SlowPathCode(instruction) {}
    [all...]
code_generator_x86_64.cc 178 explicit BoundsCheckSlowPathX86_64(HBoundsCheck* instruction)
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc     [all...]

Completed in 140 milliseconds

1 2