HomeSort by relevance Sort by last modified time
    Searched defs:imm32 (Results 1 - 22 of 22) sorted by null

  /external/lldb/source/Plugins/Process/Utility/
ARMUtils.h 289 // (imm32, carry_out) = ARMExpandImm_C(imm12, carry_in)
292 uint32_t imm32; // the expanded result local
297 imm32 = imm;
302 imm32 = ror(imm, 32, amt);
303 carry_out = Bit32(imm32, 31);
305 return imm32;
310 // 'carry_in' argument to following function call does not affect the imm32 result.
316 // (imm32, carry_out) = ThumbExpandImm_C(imm12, carry_in)
319 uint32_t imm32; // the expaned result local
330 imm32 = abcdefgh
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 1567 uint32_t imm32; local
    [all...]
  /art/disassembler/
disassembler_arm.cc 96 void DisassemblerArm::DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32) {
97 os << StringPrintf("%+d (", imm32) << FormatInstructionPointer(instr_ptr + imm32) << ")";
348 int32_t imm32 = (imm26 << 6) >> 6; // Sign extend. local
349 DumpBranchTarget(args, instr_ptr + 8, imm32);
1039 int32_t imm32 = (i << 11) | (imm3 << 8) | imm8; local
1176 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1); local
1219 int32_t imm32; local
1256 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1); local
1337 int32_t imm32 = (imm8 << 24) >> 24; \/\/ sign-extend imm8 local
1351 args << "], #" << imm32; local
1353 args << ", #" << imm32 << "]"; local
1843 uint32_t imm32 = (i << 6) | (imm5 << 1); local
1931 int32_t imm32 = imm11 << 1; local
    [all...]
  /art/compiler/utils/arm/
assembler_arm32.cc 290 uint32_t imm32 = bit_cast<uint32_t, float>(s_imm); local
291 if (((imm32 & ((1 << 19) - 1)) == 0) &&
292 ((((imm32 >> 25) & ((1 << 6) - 1)) == (1 << 5)) ||
293 (((imm32 >> 25) & ((1 << 6) - 1)) == ((1 << 5) -1)))) {
294 uint8_t imm8 = ((imm32 >> 31) << 7) | (((imm32 >> 29) & 1) << 6) |
295 ((imm32 >> 19) & ((1 << 6) -1));
    [all...]
assembler_thumb2.cc 365 uint32_t imm32 = bit_cast<uint32_t, float>(s_imm); local
366 if (((imm32 & ((1 << 19) - 1)) == 0) &&
367 ((((imm32 >> 25) & ((1 << 6) - 1)) == (1 << 5)) ||
368 (((imm32 >> 25) & ((1 << 6) - 1)) == ((1 << 5) -1)))) {
369 uint8_t imm8 = ((imm32 >> 31) << 7) | (((imm32 >> 29) & 1) << 6) |
370 ((imm32 >> 19) & ((1 << 6) -1));
2263 int32_t imm32; local
    [all...]
constants_arm.h 335 uint32_t imm32 = (Bit(19) << 31) | (((1 << 5) - Bit(18)) << 25) | local
337 return bit_cast<float, uint32_t>(imm32);
  /external/chromium_org/v8/src/ia32/
assembler-ia32.cc 404 void Assembler::push_imm32(int32_t imm32) {
407 emit(imm32);
502 void Assembler::mov(Register dst, int32_t imm32) {
505 emit(imm32);
645 void Assembler::adc(Register dst, int32_t imm32) {
647 emit_arith(2, Operand(dst), Immediate(imm32));
679 void Assembler::and_(Register dst, int32_t imm32) {
680 and_(dst, Immediate(imm32));
748 void Assembler::cmp(Register reg, int32_t imm32) {
750 emit_arith(7, Operand(reg), Immediate(imm32));
1317 int imm32 = pos - (fixup_pos + sizeof(int32_t)); local
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.cc 297 int imm32 = pos - (current + sizeof(int32_t)); local
298 long_at_put(current, imm32);
    [all...]
  /external/chromium_org/v8/src/x87/
assembler-x87.cc 346 void Assembler::push_imm32(int32_t imm32) {
349 emit(imm32);
444 void Assembler::mov(Register dst, int32_t imm32) {
447 emit(imm32);
578 void Assembler::adc(Register dst, int32_t imm32) {
580 emit_arith(2, Operand(dst), Immediate(imm32));
612 void Assembler::and_(Register dst, int32_t imm32) {
613 and_(dst, Immediate(imm32));
681 void Assembler::cmp(Register reg, int32_t imm32) {
683 emit_arith(7, Operand(reg), Immediate(imm32));
1250 int imm32 = pos - (fixup_pos + sizeof(int32_t)); local
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 2183 int imm32 = SignExtend32<25>(tmp << 1); local
3812 int imm32 = SignExtend32<25>(tmp << 1); local
3949 int imm32 = SignExtend32<25>(tmp << 1); local
    [all...]
  /external/valgrind/main/VEX/priv/
host_x86_defs.c 161 X86AMode* X86AMode_IR ( UInt imm32, HReg reg ) {
164 am->Xam.IR.imm = imm32;
168 X86AMode* X86AMode_IRRS ( UInt imm32, HReg base, HReg indEx, Int shift ) {
171 am->Xam.IRRS.imm = imm32;
243 X86RMI* X86RMI_Imm ( UInt imm32 ) {
246 op->Xrmi.Imm.imm32 = imm32;
265 vex_printf("$0x%x", op->Xrmi.Imm.imm32);
314 X86RI* X86RI_Imm ( UInt imm32 ) {
317 op->Xri.Imm.imm32 = imm32
3454 UInt imm32 = (UInt)Ptr_to_ULong(location_of_counter); local
    [all...]
host_x86_isel.c 1577 UInt imm32 = e->Iex.Binop.arg2->Iex.Const.con->Ico.U32; local
    [all...]
host_amd64_defs.h 174 UInt imm32; member in struct:__anon15351::__anon15352::__anon15353
209 UInt imm32; member in struct:__anon15357::__anon15358::__anon15359
435 UInt imm32; member in struct:__anon15372::__anon15373::__anon15378
701 extern AMD64Instr* AMD64Instr_Test64 ( UInt imm32, HReg dst );
host_arm_defs.c 4614 UInt imm32 = i->ARMin.Add32.imm32; local
    [all...]
host_x86_defs.h 162 UInt imm32; member in struct:__anon15833::__anon15834::__anon15835
196 UInt imm32; member in struct:__anon15839::__anon15840::__anon15841
346 Xin_Test32, /* 32-bit test of REG or MEM against imm32 (AND, set
414 UInt imm32; member in struct:__anon15854::__anon15855::__anon15859
663 extern X86Instr* X86Instr_Test32 ( UInt imm32, X86RM* dst );
host_arm_defs.h 662 UInt imm32; member in struct:__anon15545::__anon15546::__anon15552
663 } Imm32;
942 UInt imm32; member in struct:__anon15545::__anon15546::__anon15592
1014 extern ARMInstr* ARMInstr_Add32 ( HReg rD, HReg rN, UInt imm32 );
guest_arm64_toIR.c 5066 ULong imm32 = (imm8_7 << (1 + 5 + 6 + 19)) local
    [all...]
guest_arm_toIR.c 18369 UInt imm32 = (INSN0(9,9) << 6) | (INSN0(7,3) << 1); local
19289 UInt imm32 = thumbExpandImm_from_I0_I1(NULL, insn0, insn1); local
19338 UInt imm32 = thumbExpandImm_from_I0_I1(NULL, insn0, insn1); local
19364 UInt imm32 = thumbExpandImm_from_I0_I1(&updC, insn0, insn1); local
19398 UInt imm32 = thumbExpandImm_from_I0_I1(NULL, insn0, insn1); local
19457 UInt imm32 = thumbExpandImm_from_I0_I1(NULL, insn0, insn1); local
19526 UInt imm32 = thumbExpandImm_from_I0_I1(&updC, insn0, insn1); local
19926 UInt imm32 = thumbExpandImm_from_I0_I1(&updC, insn0, insn1); local
20923 UInt imm32 = (INSN0(10,10) << 11) local
21055 UInt imm32 = (INSN0(10,10) << 11) local
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 986 static bool fits_shifter(uint32_t imm32,
990 // imm32 must be unsigned.
992 uint32_t imm8 = (imm32 << 2*rot) | (imm32 >> (32 - 2*rot));
1003 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL)) {
1008 if (imm32 < 0x10000) {
1010 *instr |= Assembler::EncodeMovwImmediate(imm32);
1017 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
1025 if (fits_shifter(-static_cast<int>(imm32), rotate_imm, immed_8, NULL)) {
1031 if (fits_shifter(~imm32, rotate_imm, immed_8, NULL))
1115 uint32_t imm32 = static_cast<uint32_t>(x.imm32_); local
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.cc 2525 uint32_t imm32; local
    [all...]
macro-assembler-mips.cc 3008 uint32_t imm32; local
    [all...]
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.cpp 598 (result, carry, overflow) = AddWithCarry(SP, imm32, '0');
619 uint32_t imm32; local
623 imm32 = Bits32(opcode, 7, 0) << 2; // imm32 = ZeroExtend(imm8:'00', 32)
627 imm32 = ARMExpandImm(opcode); // imm32 = ARMExpandImm(imm12)
632 addr_t sp_offset = imm32;
808 result = imm32;
824 uint32_t imm32; // the immediate value to be written to Rd local
833 imm32 = Bits32(opcode, 7, 0); // imm32 = ZeroExtend(imm8, 32
1064 uint32_t imm32; \/\/ the output after ThumbExpandImm_C or ARMExpandImm_C local
1219 uint32_t imm32; \/\/ immediate offset from the PC local
1455 int32_t imm32; \/\/ PC-relative offset local
1823 uint32_t imm32; local
2016 uint32_t imm32; \/\/ stack offset local
2112 uint32_t imm32; \/\/ stack offset local
2266 int32_t imm32; \/\/ PC-relative offset local
2349 uint32_t imm32; \/\/ PC-relative offset to branch forward local
2468 uint32_t imm32; local
2583 uint32_t imm32; \/\/ the immediate value to be added to the value obtained from Rn local
2726 uint32_t imm32; \/\/ the immediate value to be compared with local
2846 uint32_t imm32; \/\/ the immediate value to be compared with local
3879 uint32_t imm32; \/\/ the immediate offset used to form the address local
4588 uint32_t imm32; local
4934 uint32_t imm32; local
5256 uint32_t imm32; \/\/ the immediate value to be added to the value obtained from Rn local
5407 uint32_t imm32; \/\/ the immediate value to be added\/subtracted to\/from the PC local
5477 uint32_t imm32; \/\/ the immediate value to be ANDed to the value obtained from Rn local
5642 uint32_t imm32; \/\/ the immediate value to be bitwise inverted and ANDed to the value obtained from Rn local
5804 uint32_t imm32; local
6147 uint32_t imm32; local
6281 uint32_t imm32; local
6525 uint32_t imm32; local
6671 uint32_t imm32; local
6952 uint32_t imm32; local
7099 uint32_t imm32; local
7353 uint32_t imm32; local
7511 uint32_t imm32; local
8276 uint32_t imm32; \/\/ the immediate value to be ORed to the value obtained from Rn local
8443 uint32_t imm32; \/\/ the immediate value to be ORed to the value obtained from Rn local
8607 uint32_t imm32; \/\/ the immediate value to be added to the value obtained from Rn local
8759 uint32_t imm32; \/\/ the immediate value to be added to the value obtained from Rn local
8888 uint32_t imm32; \/\/ the immediate value to be added to the value obtained from Rn local
9037 uint32_t imm32; \/\/ the immediate value to be subtracted from the value obtained from Rn local
9131 uint32_t imm32; \/\/ the immediate value to be subtracted from the value obtained from Rn local
9192 uint32_t imm32; \/\/ the immediate value to be ANDed to the value obtained from Rn local
9317 uint32_t imm32; \/\/ the immediate value to be ANDed to the value obtained from Rn local
9772 uint32_t imm32; local
9876 uint32_t imm32; local
9972 uint32_t imm32; local
10086 uint32_t imm32; local
10358 uint32_t imm32; local
10648 uint32_t imm32; local
10840 uint32_t imm32; local
11032 uint32_t imm32; local
11161 uint32_t imm32; local
12104 uint32_t imm32; local
    [all...]

Completed in 821 milliseconds