/external/v8/src/wasm/baseline/ |
D | liftoff-compiler.cc | 211 for (auto& ool : out_of_line_code_) { in BindUnboundLabels() local 212 if (!ool.label.get()->is_bound()) __ bind(ool.label.get()); in BindUnboundLabels() 301 OutOfLineCode& ool = out_of_line_code_.back(); in StackCheck() local 304 __ StackCheck(ool.label.get(), limit_address.gp()); in StackCheck() 305 __ bind(ool.continuation.get()); in StackCheck() 383 void GenerateOutOfLineCode(OutOfLineCode& ool) { in GenerateOutOfLineCode() argument 384 __ bind(ool.label.get()); in GenerateOutOfLineCode() 385 const bool is_stack_check = ool.stub == WasmCode::kWasmStackGuard; in GenerateOutOfLineCode() 387 ool.stub == WasmCode::kThrowWasmTrapMemOutOfBounds; in GenerateOutOfLineCode() 393 trap_handler::ProtectedInstructionData{ool.pc, pc}); in GenerateOutOfLineCode() [all …]
|
/external/v8/src/wasm/baseline/mips64/ |
D | liftoff-assembler-mips64.h | 652 Label ool, done; in emit_f32_min() local 653 TurboAssembler::Float32Min(dst, lhs, rhs, &ool); in emit_f32_min() 656 bind(&ool); in emit_f32_min() 663 Label ool, done; in emit_f32_max() local 664 TurboAssembler::Float32Max(dst, lhs, rhs, &ool); in emit_f32_max() 667 bind(&ool); in emit_f32_max() 674 Label ool, done; in emit_f64_min() local 675 TurboAssembler::Float64Min(dst, lhs, rhs, &ool); in emit_f64_min() 678 bind(&ool); in emit_f64_min() 685 Label ool, done; in emit_f64_max() local [all …]
|
/external/v8/src/wasm/baseline/mips/ |
D | liftoff-assembler-mips.h | 762 Label ool, done; in emit_f32_min() local 763 TurboAssembler::Float32Min(dst, lhs, rhs, &ool); in emit_f32_min() 766 bind(&ool); in emit_f32_min() 773 Label ool, done; in emit_f32_max() local 774 TurboAssembler::Float32Max(dst, lhs, rhs, &ool); in emit_f32_max() 777 bind(&ool); in emit_f32_max() 784 Label ool, done; in emit_f64_min() local 785 TurboAssembler::Float64Min(dst, lhs, rhs, &ool); in emit_f64_min() 788 bind(&ool); in emit_f64_min() 795 Label ool, done; in emit_f64_max() local [all …]
|
/external/v8/src/compiler/ |
D | code-generator.cc | 261 for (OutOfLineCode* ool = ools_; ool; ool = ool->next()) { in AssembleCode() local 262 tasm()->bind(ool->entry()); in AssembleCode() 263 ool->Generate(); in AssembleCode() 264 if (ool->exit()->is_bound()) tasm()->jmp(ool->exit()); in AssembleCode()
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 937 auto ool = new (zone()) OutOfLineTruncateDoubleToI( in AssembleArchInstruction() local 944 __ j(overflow, ool->entry()); in AssembleArchInstruction() 945 __ bind(ool->exit()); in AssembleArchInstruction() 958 auto ool = new (zone()) OutOfLineRecordWrite(this, object, operand, value, in AssembleArchInstruction() local 963 not_zero, ool->entry()); in AssembleArchInstruction() 964 __ bind(ool->exit()); in AssembleArchInstruction() 1347 auto ool = in AssembleArchInstruction() local 1349 __ j(parity_even, ool->entry()); in AssembleArchInstruction() 1362 __ bind(ool->exit()); in AssembleArchInstruction() 1372 auto ool = in AssembleArchInstruction() local [all …]
|
/external/v8/src/compiler/arm/ |
D | code-generator-arm.cc | 958 OutOfLineRecordWrite* ool; in AssembleArchInstruction() local 964 ool = new (zone()) in AssembleArchInstruction() 971 ool = new (zone()) in AssembleArchInstruction() 978 ool->entry()); in AssembleArchInstruction() 979 __ bind(ool->exit()); in AssembleArchInstruction() 1660 auto ool = new (zone()) OutOfLineFloat32Max(this, result, left, right); in AssembleArchInstruction() local 1661 __ FloatMax(result, left, right, ool->entry()); in AssembleArchInstruction() 1662 __ bind(ool->exit()); in AssembleArchInstruction() 1674 auto ool = new (zone()) OutOfLineFloat64Max(this, result, left, right); in AssembleArchInstruction() local 1675 __ FloatMax(result, left, right, ool->entry()); in AssembleArchInstruction() [all …]
|
/external/v8/src/compiler/mips/ |
D | code-generator-mips.cc | 826 auto ool = new (zone()) OutOfLineRecordWrite(this, object, index, value, in AssembleArchInstruction() local 832 ool->entry()); in AssembleArchInstruction() 833 __ bind(ool->exit()); in AssembleArchInstruction() 1309 auto ool = new (zone()) OutOfLineFloat32Max(this, dst, src1, src2); in AssembleArchInstruction() local 1310 __ Float32Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction() 1311 __ bind(ool->exit()); in AssembleArchInstruction() 1318 auto ool = new (zone()) OutOfLineFloat64Max(this, dst, src1, src2); in AssembleArchInstruction() local 1319 __ Float64Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction() 1320 __ bind(ool->exit()); in AssembleArchInstruction() 1327 auto ool = new (zone()) OutOfLineFloat32Min(this, dst, src1, src2); in AssembleArchInstruction() local [all …]
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 846 auto ool = new (zone()) OutOfLineRecordWrite(this, object, index, value, in AssembleArchInstruction() local 852 ool->entry()); in AssembleArchInstruction() 853 __ bind(ool->exit()); in AssembleArchInstruction() 1413 auto ool = new (zone()) OutOfLineFloat32Max(this, dst, src1, src2); in AssembleArchInstruction() local 1414 __ Float32Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction() 1415 __ bind(ool->exit()); in AssembleArchInstruction() 1422 auto ool = new (zone()) OutOfLineFloat64Max(this, dst, src1, src2); in AssembleArchInstruction() local 1423 __ Float64Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction() 1424 __ bind(ool->exit()); in AssembleArchInstruction() 1431 auto ool = new (zone()) OutOfLineFloat32Min(this, dst, src1, src2); in AssembleArchInstruction() local [all …]
|
/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 900 auto ool = new (zone()) OutOfLineTruncateDoubleToI( in AssembleArchInstruction() local 904 __ j(overflow, ool->entry()); in AssembleArchInstruction() 905 __ bind(ool->exit()); in AssembleArchInstruction() 917 auto ool = new (zone()) OutOfLineRecordWrite(this, object, operand, value, in AssembleArchInstruction() local 922 not_zero, ool->entry()); in AssembleArchInstruction() 923 __ bind(ool->exit()); in AssembleArchInstruction() 1267 auto ool = in AssembleArchInstruction() local 1269 __ j(parity_even, ool->entry()); in AssembleArchInstruction() 1282 __ bind(ool->exit()); in AssembleArchInstruction() 1293 auto ool = in AssembleArchInstruction() local [all …]
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 1167 OutOfLineRecordWrite* ool; in AssembleArchInstruction() local 1173 ool = new (zone()) OutOfLineRecordWrite(this, object, offset, value, in AssembleArchInstruction() 1179 ool = new (zone()) OutOfLineRecordWrite(this, object, offset, value, in AssembleArchInstruction() 1185 ool->entry()); in AssembleArchInstruction() 1186 __ bind(ool->exit()); in AssembleArchInstruction() 2189 auto ool = new (zone()) OutOfLineTrap(this, instr); in AssembleArchTrap() local 2190 Label* tlabel = ool->entry(); in AssembleArchTrap()
|
/external/antlr/ |
D | README.txt | 87 ANTLR stands for (AN)other (T)ool for (L)anguage (R)ecognition
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 1592 OutOfLineRecordWrite* ool; in AssembleArchInstruction() local 1598 ool = new (zone()) OutOfLineRecordWrite(this, object, offset, value, in AssembleArchInstruction() 1604 ool = new (zone()) OutOfLineRecordWrite(this, object, offset, value, in AssembleArchInstruction() 1610 ool->entry()); in AssembleArchInstruction() 1611 __ bind(ool->exit()); in AssembleArchInstruction() 2846 auto ool = new (zone()) OutOfLineTrap(this, instr); in AssembleArchTrap() local 2847 Label* tlabel = ool->entry(); in AssembleArchTrap()
|
/external/perfetto/src/traced/probes/ftrace/ |
D | cpu_reader_benchmark.cc | 35 00000030: 6f6f 6c00 140d 0000 8100 0000 0008 0000 ool.............
|
D | cpu_reader_unittest.cc | 1101 00000030: 6f6f 6c00 140d 0000 8100 0000 0008 0000 ool.............
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 843 auto ool = new (zone()) in AssembleArchInstruction() local 849 ool->entry()); in AssembleArchInstruction() 850 __ Bind(ool->exit()); in AssembleArchInstruction() 2284 auto ool = new (zone()) OutOfLineTrap(this, instr); in AssembleArchTrap() local 2285 Label* tlabel = ool->entry(); in AssembleArchTrap()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | nv-fonipa-t-nv.txt | 711 óʼoolʼííłdoo óʔoːlʔɪ́ːɬtoː
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | f066530bb9e1f9b6bece9916e7d19df7.0000ccb0.honggfuzz.cov | 212 …�5��L��^`�3ck�*���ٽ0���b'��t�);����Z��;���^U��%�&����;%�o"�Q3�ool��#@h&[A�7i�qC$dY�…
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | f066530bb9e1f9b6bece9916e7d19df7.0000ccb0.honggfuzz.cov | 212 …�5��L��^`�3ck�*���ٽ0���b'��t�);����Z��;���^U��%�&����;%�o"�Q3�ool��#@h&[A�7i�qC$dY�…
|
/external/antlr/runtime/C/ |
D | README | 97 ANTLR stands for (AN)other (T)ool for (L)anguage (R)ecognition and was
|
/external/toolchain-utils/android_bench_suite/panorama_input/ |
D | test_012.ppm | 5135 …�Ⱥ�������������һ�ͷ�ʵ�Ʋ�í�������������������������ų�����ehebgXKPAPSBfiX��v~|ool]vsd��w��xxse��}�}so…
|