Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/backend/loong64/
Dcode-generator-loong64.cc826 auto ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction() local
844 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
847 ne, ool->entry()); in AssembleArchInstruction()
848 __ bind(ool->exit()); in AssembleArchInstruction()
1180 auto ool = zone()->New<OutOfLineFloat32Min>(this, dst, src1, src2); in AssembleArchInstruction() local
1181 __ Float32Min(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1182 __ bind(ool->exit()); in AssembleArchInstruction()
1189 auto ool = zone()->New<OutOfLineFloat32Max>(this, dst, src1, src2); in AssembleArchInstruction() local
1190 __ Float32Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1191 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/
Dcode-generator.cc314 for (OutOfLineCode* ool = ools_; ool; ool = ool->next()) { in AssembleCode() local
315 tasm()->bind(ool->entry()); in AssembleCode()
316 ool->Generate(); in AssembleCode()
317 if (ool->exit()->is_bound()) tasm()->jmp(ool->exit()); in AssembleCode()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc621 for (auto& ool : out_of_line_code_) Unuse(ool.label.get()); in UnuseLabels() local
723 OutOfLineCode& ool = out_of_line_code_.back(); in StackCheck() local
724 __ StackCheck(ool.label.get(), limit_address); in StackCheck()
725 __ bind(ool.continuation.get()); in StackCheck()
758 OutOfLineCode& ool = out_of_line_code_.back(); in TierupCheck() local
760 ool.label.get()); in TierupCheck()
762 __ bind(ool.continuation.get()); in TierupCheck()
919 void GenerateOutOfLineCode(OutOfLineCode* ool) { in GenerateOutOfLineCode() argument
921 (std::string("OOL: ") + GetRuntimeStubName(ool->stub)).c_str()); in GenerateOutOfLineCode()
922 __ bind(ool->label.get()); in GenerateOutOfLineCode()
[all …]
/third_party/node/deps/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc957 auto ool = zone()->New<OutOfLineTruncateDoubleToI>( in AssembleArchInstruction() local
961 __ j(overflow, ool->entry()); in AssembleArchInstruction()
962 __ bind(ool->exit()); in AssembleArchInstruction()
983 auto ool = zone()->New<OutOfLineRecordWrite>(this, object, operand, value, in AssembleArchInstruction() local
993 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
997 not_zero, ool->entry()); in AssembleArchInstruction()
998 __ bind(ool->exit()); in AssembleArchInstruction()
1293 auto ool = in AssembleArchInstruction() local
1295 __ j(parity_even, ool->entry()); in AssembleArchInstruction()
1308 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/x64/
Dcode-generator-x64.cc1461 auto ool = zone()->New<OutOfLineTruncateDoubleToI>( in AssembleArchInstruction() local
1468 __ j(overflow, ool->entry()); in AssembleArchInstruction()
1469 __ bind(ool->exit()); in AssembleArchInstruction()
1491 auto ool = zone()->New<OutOfLineRecordWrite>(this, object, operand, value, in AssembleArchInstruction() local
1505 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
1509 not_zero, ool->entry()); in AssembleArchInstruction()
1510 __ bind(ool->exit()); in AssembleArchInstruction()
1880 auto ool = in AssembleArchInstruction() local
1882 __ j(parity_even, ool->entry()); in AssembleArchInstruction()
1895 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/arm/
Dcode-generator-arm.cc976 auto ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction() local
980 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
983 ne, ool->entry()); in AssembleArchInstruction()
984 __ bind(ool->exit()); in AssembleArchInstruction()
1670 auto ool = zone()->New<OutOfLineFloat32Max>(this, result, left, right); in AssembleArchInstruction() local
1671 __ FloatMax(result, left, right, ool->entry()); in AssembleArchInstruction()
1672 __ bind(ool->exit()); in AssembleArchInstruction()
1684 auto ool = zone()->New<OutOfLineFloat64Max>(this, result, left, right); in AssembleArchInstruction() local
1685 __ FloatMax(result, left, right, ool->entry()); in AssembleArchInstruction()
1686 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/wasm/baseline/loong64/
Dliftoff-assembler-loong64.h1228 Label ool, done; in emit_f32_min() local
1229 TurboAssembler::Float32Min(dst, lhs, rhs, &ool); in emit_f32_min()
1232 bind(&ool); in emit_f32_min()
1239 Label ool, done; in emit_f32_max() local
1240 TurboAssembler::Float32Max(dst, lhs, rhs, &ool); in emit_f32_max()
1243 bind(&ool); in emit_f32_max()
1255 Label ool, done; in emit_f64_min() local
1256 TurboAssembler::Float64Min(dst, lhs, rhs, &ool); in emit_f64_min()
1259 bind(&ool); in emit_f64_min()
1266 Label ool, done; in emit_f64_max() local
[all …]
/third_party/node/deps/v8/src/wasm/baseline/mips/
Dliftoff-assembler-mips.h1256 Label ool, done; in emit_f32_min() local
1257 TurboAssembler::Float32Min(dst, lhs, rhs, &ool); in emit_f32_min()
1260 bind(&ool); in emit_f32_min()
1267 Label ool, done; in emit_f32_max() local
1268 TurboAssembler::Float32Max(dst, lhs, rhs, &ool); in emit_f32_max()
1271 bind(&ool); in emit_f32_max()
1283 Label ool, done; in emit_f64_min() local
1284 TurboAssembler::Float64Min(dst, lhs, rhs, &ool); in emit_f64_min()
1287 bind(&ool); in emit_f64_min()
1294 Label ool, done; in emit_f64_max() local
[all …]
/third_party/node/deps/v8/src/compiler/backend/mips/
Dcode-generator-mips.cc880 auto ool = zone()->New<OutOfLineRecordWrite>(this, object, index, value, in AssembleArchInstruction() local
893 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
897 ool->entry()); in AssembleArchInstruction()
898 __ bind(ool->exit()); in AssembleArchInstruction()
1352 auto ool = zone()->New<OutOfLineFloat32Max>(this, dst, src1, src2); in AssembleArchInstruction() local
1353 __ Float32Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1354 __ bind(ool->exit()); in AssembleArchInstruction()
1361 auto ool = zone()->New<OutOfLineFloat64Max>(this, dst, src1, src2); in AssembleArchInstruction() local
1362 __ Float64Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1363 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/compiler/backend/mips64/
Dcode-generator-mips64.cc841 auto ool = zone()->New<OutOfLineRecordWrite>(this, object, index, value, in AssembleArchInstruction() local
854 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
858 ool->entry()); in AssembleArchInstruction()
859 __ bind(ool->exit()); in AssembleArchInstruction()
1366 auto ool = zone()->New<OutOfLineFloat32Max>(this, dst, src1, src2); in AssembleArchInstruction() local
1367 __ Float32Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1368 __ bind(ool->exit()); in AssembleArchInstruction()
1375 auto ool = zone()->New<OutOfLineFloat64Max>(this, dst, src1, src2); in AssembleArchInstruction() local
1376 __ Float64Max(dst, src1, src2, ool->entry()); in AssembleArchInstruction()
1377 __ bind(ool->exit()); in AssembleArchInstruction()
[all …]
/third_party/node/deps/v8/src/wasm/baseline/mips64/
Dliftoff-assembler-mips64.h1334 Label ool, done; in emit_f32_min() local
1335 TurboAssembler::Float32Min(dst, lhs, rhs, &ool); in emit_f32_min()
1338 bind(&ool); in emit_f32_min()
1345 Label ool, done; in emit_f32_max() local
1346 TurboAssembler::Float32Max(dst, lhs, rhs, &ool); in emit_f32_max()
1349 bind(&ool); in emit_f32_max()
1380 Label ool, done; in emit_f64_min() local
1381 TurboAssembler::Float64Min(dst, lhs, rhs, &ool); in emit_f64_min()
1384 bind(&ool); in emit_f64_min()
1391 Label ool, done; in emit_f64_max() local
[all …]
/third_party/node/deps/v8/src/compiler/backend/arm64/
Dcode-generator-arm64.cc974 auto ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction() local
979 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
982 eq, ool->entry()); in AssembleArchInstruction()
983 __ Bind(ool->exit()); in AssembleArchInstruction()
993 auto ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction() local
998 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
1001 eq, ool->entry()); in AssembleArchInstruction()
1002 __ Bind(ool->exit()); in AssembleArchInstruction()
2930 auto ool = zone()->New<WasmOutOfLineTrap>(this, instr); in AssembleArchTrap() local
2931 Label* tlabel = ool->entry(); in AssembleArchTrap()
/third_party/node/deps/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc1428 OutOfLineRecordWrite* ool; in AssembleArchInstruction() local
1441 ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction()
1448 ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction()
1454 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
1458 ool->entry()); in AssembleArchInstruction()
1459 __ bind(ool->exit()); in AssembleArchInstruction()
3283 auto ool = zone()->New<OutOfLineTrap>(this, instr); in AssembleArchTrap() local
3284 Label* tlabel = ool->entry(); in AssembleArchTrap()
/third_party/node/deps/v8/src/compiler/backend/ppc/
Dcode-generator-ppc.cc1121 OutOfLineRecordWrite* ool; in AssembleArchInstruction() local
1134 ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction()
1141 ool = zone()->New<OutOfLineRecordWrite>( in AssembleArchInstruction()
1147 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
1151 ool->entry()); in AssembleArchInstruction()
1152 __ bind(ool->exit()); in AssembleArchInstruction()
3888 auto ool = zone()->New<OutOfLineTrap>(this, instr); in AssembleArchTrap() local
3889 Label* tlabel = ool->entry(); in AssembleArchTrap()
/third_party/node/deps/v8/src/compiler/backend/riscv64/
Dcode-generator-riscv64.cc871 auto ool = zone()->New<OutOfLineRecordWrite>(this, object, index, value, in AssembleArchInstruction() local
877 __ JumpIfSmi(value, ool->exit()); in AssembleArchInstruction()
881 ool->entry()); in AssembleArchInstruction()
882 __ bind(ool->exit()); in AssembleArchInstruction()
3605 auto ool = zone()->New<OutOfLineTrap>(this, instr); in AssembleArchTrap() local
3606 Label* tlabel = ool->entry(); in AssembleArchTrap()
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-arboretum.hdr611 …�pmSRR�^o�l|�TTQ�US�rf��}�VXXV�^]^_`��__^^]]]��__^]�XV�Tccef]��ach�llU���ool�qxym��x�zmymv��uo…
666 …�~���з���Г���ԃ�ʖ�~|~��ri�u�k�l���}q�m��y�t�gs������tn��vt~i�ķq�����q�ϖm�|�ool£xm�}~���wǸ���z�����…
728 …����������������ဥ�����ڔ������������ͭ�������dn��[neseY_f�LW��avHKtPVQHbiQTT[ool�Yx�hͅ�go_TsT`�dd���…
Dhdr-rgb-bellparkpier.hdr1805 …���ȸ�����¹��������������������������������������˿����ƾ�������������vp������ool��������Ȁ�����������…
Dhdr-rgb-riverwalk.hdr7381 …�}�||\c����{���nEBScf�׊Ӷ����_�������Ϻ��}O�ـيu��zyrit�vowtis�z��s���p���v��ool��o�~�����dh�u��gv��…
7941 …l������o{v��zǹm��rݎ�e��c~���u���|���p���e~�x��n��shyp�����x��l�[`��s��gs�ool�h��o��_��jk\|�h��…