/third_party/node/deps/v8/src/compiler/backend/loong64/ |
D | code-generator-loong64.cc | 826 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/ |
D | code-generator.cc | 314 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/ |
D | liftoff-compiler.cc | 621 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/ |
D | code-generator-ia32.cc | 957 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/ |
D | code-generator-x64.cc | 1461 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/ |
D | code-generator-arm.cc | 976 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/ |
D | liftoff-assembler-loong64.h | 1228 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/ |
D | liftoff-assembler-mips.h | 1256 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/ |
D | code-generator-mips.cc | 880 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/ |
D | code-generator-mips64.cc | 841 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/ |
D | liftoff-assembler-mips64.h | 1334 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/ |
D | code-generator-arm64.cc | 974 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/ |
D | code-generator-s390.cc | 1428 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/ |
D | code-generator-ppc.cc | 1121 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/ |
D | code-generator-riscv64.cc | 871 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/ |
D | hdr-rgb-arboretum.hdr | 611 …�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���…
|
D | hdr-rgb-bellparkpier.hdr | 1805 …���ȸ�����¹��������������������������������������˿����ƾ�������������vp������ool��������Ȁ�����������…
|
D | hdr-rgb-riverwalk.hdr | 7381 …�}�||\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��…
|