/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/VE/ |
D | VEInstrFormats.td | 36 bits<32> imm32 = 0; 44 let Inst{63-32} = imm32; 52 let imm32{0-23} = 0; 53 let imm32{24} = cw; 54 let imm32{25} = cw2; 55 let imm32{26-27} = 0; 56 let imm32{28-31} = cfw;
|
D | VEInstrInfo.td | 116 opc, (outs RC:$sx), (ins RC:$sy, RC:$sz, immOp2:$imm32), 117 !strconcat(opcStr, " $sx, ${imm32}($sy, ${sz})")> { 123 opc, (outs RC:$sx), (ins immOp2:$imm32), 124 !strconcat(opcStr, " $sx, $imm32")> { 191 (ins CCOp:$cf, RC:$sy, RC:$sz, brtarget32:$imm32), 192 !strconcat(opcStr, " $sy, $sz, $imm32")> { 224 // As 1st step, only uses sz and imm32 to represent $addr 244 cz = 1, sz = 0x10 /* SX10 */, imm32 = 0, Uses = [SX10],
|
/third_party/node/deps/v8/src/codegen/s390/ |
D | assembler-s390.cc | 486 int32_t imm32 = in target_at() local 489 imm32 <<= 1; // BR* + LARL treat immediate in # of halfwords in target_at() 490 if (imm32 == 0) return kEndOfChain; in target_at() 491 return pos + imm32; in target_at() 526 int32_t imm32 = target_pos - pos; in target_at_put() local 528 instr_at_put<SixByteInstr>(pos, instr | (imm32 >> 1)); in target_at_put() 534 int32_t imm32 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() local 536 instr_at_put<SixByteInstr>(pos, instr | imm32); in target_at_put()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
D | assembler-ia32.cc | 529 void Assembler::push_imm32(int32_t imm32) { in push_imm32() argument 532 emit(imm32); in push_imm32() 607 void Assembler::mov(Register dst, int32_t imm32) { in mov() argument 610 emit(imm32); in mov() 848 void Assembler::adc(Register dst, int32_t imm32) { in adc() argument 850 emit_arith(2, Operand(dst), Immediate(imm32)); in adc() 877 void Assembler::and_(Register dst, int32_t imm32) { in and_() argument 878 and_(dst, Immediate(imm32)); in and_() 952 void Assembler::cmp(Register reg, int32_t imm32) { in cmp() argument 954 emit_arith(7, Operand(reg), Immediate(imm32)); in cmp() [all …]
|
D | assembler-ia32.h | 482 void push_imm32(int32_t imm32); 504 void mov(Register dst, int32_t imm32); 569 void adc(Register dst, int32_t imm32); 579 void and_(Register dst, int32_t imm32); 601 void cmp(Register reg, int32_t imm32); 627 void imul(Register dst, Register src, int32_t imm32); // dst = src * imm32. 628 void imul(Register dst, Operand src, int32_t imm32); 644 void or_(Register dst, int32_t imm32); 710 void xor_(Register dst, int32_t imm32);
|
/third_party/skia/third_party/externals/imgui/examples/example_null/ |
D | build_win32.bat | 3 ….\.. %* *.cpp ..\..\*.cpp /FeDebug/example_null.exe /FoDebug/ /link gdi32.lib shell32.lib imm32.lib
|
/third_party/vixl/src/aarch32/ |
D | macro-assembler-aarch32.cc | 1291 static inline bool CanBeInverted(uint32_t imm32) { in CanBeInverted() argument 1294 if ((imm32 & 0xffffff00) == 0xffffff00) { in CanBeInverted() 1298 if (((imm32 & 0xff) == 0) || ((imm32 & 0xff) == 0xff)) { in CanBeInverted() 1299 fill8 = imm32 & 0xff; in CanBeInverted() 1300 imm32 >>= 8; in CanBeInverted() 1301 if ((imm32 >> 8) == 0xffff) { in CanBeInverted() 1306 if ((imm32 & 0xff) == fill8) { in CanBeInverted() 1307 imm32 >>= 8; in CanBeInverted() 1308 if ((imm32 >> 8) == 0xff) { in CanBeInverted() 1313 if ((fill8 == 0xff) && ((imm32 & 0xff) == 0xff)) { in CanBeInverted()
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
D | macro-assembler-riscv64.h | 213 inline void GenPCRelativeJump(Register rd, int64_t imm32) { in GenPCRelativeJump() argument 214 DCHECK(is_int32(imm32 + 0x800)); in GenPCRelativeJump() 215 int32_t Hi20 = (((int32_t)imm32 + 0x800) >> 12); in GenPCRelativeJump() 216 int32_t Lo12 = (int32_t)imm32 << 20 >> 20; in GenPCRelativeJump() 221 inline void GenPCRelativeJumpAndLink(Register rd, int64_t imm32) { in GenPCRelativeJumpAndLink() argument 222 DCHECK(is_int32(imm32 + 0x800)); in GenPCRelativeJumpAndLink() 223 int32_t Hi20 = (((int32_t)imm32 + 0x800) >> 12); in GenPCRelativeJumpAndLink() 224 int32_t Lo12 = (int32_t)imm32 << 20 >> 20; in GenPCRelativeJumpAndLink()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | disassemble.c | 256 uint32_t imm32[2] = { (uint32_t) imm, (uint32_t) (imm >> 32) }; in dump_pc_imm() local 257 uint32_t zx32[2] = { imm32[0] << 4, imm32[1] << 4 }; in dump_pc_imm()
|
/third_party/node/deps/v8/src/codegen/arm/ |
D | assembler-arm.cc | 1032 bool FitsShifter(uint32_t imm32, uint32_t* rotate_imm, uint32_t* immed_8, in FitsShifter() argument 1049 if (imm32 <= 0xFF) { in FitsShifter() 1051 *immed_8 = imm32; in FitsShifter() 1058 int half_trailing_zeros = base::bits::CountTrailingZerosNonZero(imm32) / 2; in FitsShifter() 1059 uint32_t imm8 = imm32 >> (half_trailing_zeros * 2); in FitsShifter() 1071 uint32_t imm32_rot16 = base::bits::RotateLeft32(imm32, 16); in FitsShifter() 1090 if (FitsShifter(~imm32, rotate_imm, immed_8, nullptr)) { in FitsShifter() 1095 if (imm32 < 0x10000) { in FitsShifter() 1097 *instr |= Assembler::EncodeMovwImmediate(imm32); in FitsShifter() 1104 if (FitsShifter(-static_cast<int>(imm32), rotate_imm, immed_8, nullptr)) { in FitsShifter() [all …]
|
D | assembler-arm.h | 1046 static bool ImmediateFitsAddrMode1Instruction(int32_t imm32); 1049 bool ImmediateFitsAddrMode2Instruction(int32_t imm32);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BPFISelLowering.cpp | 725 int64_t imm32 = MI.getOperand(2).getImm(); in EmitInstrWithCustomInserter() local 727 assert (isInt<32>(imm32)); in EmitInstrWithCustomInserter() 729 .addReg(LHS).addImm(imm32).addMBB(Copy1MBB); in EmitInstrWithCustomInserter()
|
/third_party/node/deps/v8/src/codegen/mips/ |
D | assembler-mips.cc | 837 int32_t imm32; in target_at() local 840 imm32 = GetLuiOriImmediate(instr_lui, instr_ori); in target_at() 841 if (imm32 == kEndOfJumpChain) { in target_at() 845 return pos + Assembler::kLongBranchPCOffset + imm32; in target_at() 849 int32_t imm32; in target_at() local 852 imm32 = GetLuiOriImmediate(instr_lui, instr_ori); in target_at() 853 if (imm32 == kEndOfJumpChain) { in target_at() 857 return pos + Assembler::kLongBranchPCOffset + imm32; in target_at() 3794 void Assembler::GenPCRelativeJump(Register tf, Register ts, int32_t imm32, in GenPCRelativeJump() argument 3804 lui(ts, (imm32 & kHiMask) >> kLuiShift); in GenPCRelativeJump() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
D | ARCInstrInfo.td | 68 def imm32 : ImmLeaf<i32, [{ 214 def _rrlimm : Pat<(InFrag i32:$B, imm32:$LImm), (RRLImm i32:$B, imm32:$LImm)>; 348 [(ARCbrcc bb:$T, i32:$B, i32:$C, imm32:$cc)]> 354 [(ARCbrcc bb:$T, i32:$B, immU6:$C, imm32:$cc)]>
|
/third_party/node/deps/v8/src/codegen/mips64/ |
D | assembler-mips64.cc | 724 int32_t imm32; in target_at() local 729 imm32 = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift; in target_at() 730 imm32 |= (instr_ori & static_cast<int32_t>(kImm16Mask)); in target_at() 731 if (imm32 == kEndOfJumpChain) { in target_at() 735 return pos + Assembler::kLongBranchPCOffset + imm32; in target_at() 738 int32_t imm32; in target_at() local 743 imm32 = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift; in target_at() 744 imm32 |= (instr_ori & static_cast<int32_t>(kImm16Mask)); in target_at() 745 if (imm32 == kEndOfJumpChain) { in target_at() 749 return pos + Assembler::kLongBranchPCOffset + imm32; in target_at()
|
/third_party/node/deps/v8/src/wasm/baseline/loong64/ |
D | liftoff-assembler-loong64.h | 251 int imm32 = pc_offset() - offset; in PatchPrepareStackFrame() local 252 CHECK(is_int26(imm32)); in PatchPrepareStackFrame() 253 patching_assembler.b(imm32 >> 2); in PatchPrepareStackFrame() 285 imm32 = func_start_offset - pc_offset(); in PatchPrepareStackFrame() 286 CHECK(is_int26(imm32)); in PatchPrepareStackFrame() 287 b(imm32 >> 2); in PatchPrepareStackFrame()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/ |
D | X86Disassembler.cpp | 1396 uint32_t imm32; in readImmediate() local 1418 if (consume(insn, imm32)) in readImmediate() 1420 insn->immediates[insn->numImmediatesConsumed] = imm32; in readImmediate()
|
/third_party/node/deps/v8/src/codegen/loong64/ |
D | assembler-loong64.cc | 471 int32_t imm32; in target_at() local 475 imm32 = ((instr_lu12i_w >> 5) & 0xfffff) << 12; in target_at() 476 imm32 |= ((instr_ori >> 10) & static_cast<int32_t>(kImm12Mask)); in target_at() 477 if (imm32 == kEndOfJumpChain) { in target_at() 481 return pos + imm32; in target_at()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
D | assembler_arm.cc | 894 uint32_t imm32 = bit_cast<uint32_t, float>(s_imm); 895 if (((imm32 & ((1 << 19) - 1)) == 0) && 896 ((((imm32 >> 25) & ((1 << 6) - 1)) == (1 << 5)) || 897 (((imm32 >> 25) & ((1 << 6) - 1)) == ((1 << 5) -1)))) { 898 uint8_t imm8 = ((imm32 >> 31) << 7) | (((imm32 >> 29) & 1) << 6) | 899 ((imm32 >> 19) & ((1 << 6) -1));
|
/third_party/mesa3d/src/gallium/auxiliary/rtasm/ |
D | rtasm_x86sse.c | 585 int imm32 ) in x86_push_imm32() argument 587 DUMP_I( imm32 ); in x86_push_imm32() 589 emit_1i(p, imm32); in x86_push_imm32()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZPatterns.td | 52 def : RMWI<anyextloadi8, operator, truncstorei8, mode, imm32, insn>;
|
/third_party/node/deps/v8/src/codegen/x64/ |
D | assembler-x64.cc | 487 int imm32 = pos - (current + sizeof(int32_t)); in bind_to() local 488 long_at_put(current, imm32); in bind_to() 501 int imm32 = pos - (current + sizeof(int32_t)); in bind_to() local 502 long_at_put(current, imm32); in bind_to() 2110 void Assembler::pushq_imm32(int32_t imm32) { in pushq_imm32() argument 2113 emitl(imm32); in pushq_imm32()
|
/third_party/node/deps/v8/src/wasm/baseline/mips/ |
D | liftoff-assembler-mips.h | 382 int imm32 = pc_offset() - offset - 3 * kInstrSize; in PatchPrepareStackFrame() local 383 patching_assembler.BranchLong(imm32); in PatchPrepareStackFrame() 415 imm32 = func_start_offset - pc_offset() - 3 * kInstrSize; in PatchPrepareStackFrame() 416 BranchLong(imm32); in PatchPrepareStackFrame()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 2630 int imm32 = SignExtend32<25>(tmp << 1); in DecodeT2BInstruction() local 2631 if (!tryAddingSymbolicOperand(Address, Address + imm32 + 4, in DecodeT2BInstruction() 2633 Inst.addOperand(MCOperand::createImm(imm32)); in DecodeT2BInstruction() 4485 int imm32 = SignExtend32<25>(tmp << 1); in DecodeThumbBLXOffset() local 4488 (Address & ~2u) + imm32 + 4, in DecodeThumbBLXOffset() 4490 Inst.addOperand(MCOperand::createImm(imm32)); in DecodeThumbBLXOffset() 4624 int imm32 = SignExtend32<25>(tmp << 1); in DecodeThumbBLTargetOperand() local 4626 if (!tryAddingSymbolicOperand(Address, Address + imm32 + 4, in DecodeThumbBLTargetOperand() 4628 Inst.addOperand(MCOperand::createImm(imm32)); in DecodeThumbBLTargetOperand()
|
/third_party/node/deps/v8/src/diagnostics/arm/ |
D | disasm-arm.cc | 1773 uint32_t imm32 = imm; in DecodeVmovImmediate() local 1775 "vmov.i32 q%d, %d", vd, imm32); in DecodeVmovImmediate()
|