Home
last modified time | relevance | path

Searched refs:ool (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc211 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/
Dliftoff-assembler-mips64.h652 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/
Dliftoff-assembler-mips.h762 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/
Dcode-generator.cc261 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/
Dcode-generator-x64.cc937 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/
Dcode-generator-arm.cc958 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/
Dcode-generator-mips.cc826 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/
Dcode-generator-mips64.cc846 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/
Dcode-generator-ia32.cc900 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/
Dcode-generator-ppc.cc1167 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/
DREADME.txt87 ANTLR stands for (AN)other (T)ool for (L)anguage (R)ecognition
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc1592 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/
Dcpu_reader_benchmark.cc35 00000030: 6f6f 6c00 140d 0000 8100 0000 0008 0000 ool.............
Dcpu_reader_unittest.cc1101 00000030: 6f6f 6c00 140d 0000 8100 0000 0008 0000 ool.............
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc843 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/
Dnv-fonipa-t-nv.txt711 óʼoolʼííłdoo óʔoːlʔɪ́ːɬtoː
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Df066530bb9e1f9b6bece9916e7d19df7.0000ccb0.honggfuzz.cov212 …�5 ��L��^`�3c�k�*� ��ٽ0����b'��t�);���� Z��;���^U��%�&����;%�o"�Q3�ool��#@h�&[A�7i�qC$dY�…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Df066530bb9e1f9b6bece9916e7d19df7.0000ccb0.honggfuzz.cov212 …�5 ��L��^`�3c�k�*� ��ٽ0����b'��t�);���� Z��;���^U��%�&����;%�o"�Q3�ool��#@h�&[A�7i�qC$dY�…
/external/antlr/runtime/C/
DREADME97 ANTLR stands for (AN)other (T)ool for (L)anguage (R)ecognition and was
/external/toolchain-utils/android_bench_suite/panorama_input/
Dtest_012.ppm5135 …�Ⱥ�������������һ�ͷ�ʵ�Ʋ�í�������������������������ų�����ehebgXKPAPSBfiX��v~|ool]vsd��w��xxse��}�}so…