HomeSort by relevance Sort by last modified time
    Searched refs:assembler (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/vixl/tools/
make_instruction_doc.pl 29 # Assembler header file.
30 my $hfile = "src/a64/assembler-a64.h";
75 This is a list of the AArch64 instructions supported by the VIXL assembler,
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 231 arm64::Arm64Assembler assembler; local
234 assembler.JumpTo(ManagedRegister(arm64::X0), offset, ManagedRegister(arm64::IP0));
236 assembler.EmitSlowPaths();
237 std::vector<uint8_t> thunk_code(assembler.CodeSize());
239 assembler.FinalizeInstructions(code);
  /external/llvm/test/MC/ARM/
eh-directive-save.s 15 @ by 0xA0 or 0xA8, then the assembler should prefer them over 0x8000.
90 @ The assembler should emit 0xB000 unwind opcode.
147 @ The assembler should emit 0xA0 unwind opcode.
203 @ The assembler should emit 0xA8 unwind opcode.
289 @ The assembler should emit 0x8000 unwind opcode.
thumbv7m.s 6 @ Check that the assembler can handle the documented syntax from the ARM ARM.
eh-directive-integrated-test.s 1 @ Integrated test for ARM unwind directive parser and assembler.
eh-directive-text-section-multiple-func.s 6 @ The assembler should emit the machine code of "func2" in .text section.
thumbv7em.s 6 @ Check that the assembler can handle the documented syntax from the ARM ARM.
  /external/v8/src/
lithium.cc 462 MacroAssembler assembler(info()->isolate(), NULL, 0);
465 assembler.positions_recorder()));
467 if (info()->will_serialize()) assembler.enable_serializer();
468 LCodeGen generator(this, &assembler, info());
477 CodeGenerator::MakeCodeEpilogue(&assembler, flags, info());
482 assembler.positions_recorder()->DetachJITHandlerData();
492 assembler.AbortedCodeGeneration();
regexp-macro-assembler-tracer.h 14 explicit RegExpMacroAssemblerTracer(RegExpMacroAssembler* assembler);
lithium-codegen.cc 44 MacroAssembler* assembler,
47 masm_(assembler),
141 // Copy the string before recording it in the assembler to avoid
  /external/libhevc/
decoder.arm64.mk 95 # Clang doesn't pass -I flags to the assembler when building a .s file.
96 # We need to tell it to pass them to the assembler specifically (doesn't hurt
  /external/llvm/test/MC/Mips/
set-at-directive-explicit-at.s 4 # Check that the assembler can handle the documented syntax
micromips-shift-instructions.s 3 # Check that the assembler can handle the documented syntax
micromips-trap-instructions.s 5 # Check that the assembler can handle the documented syntax
mips-memory-instructions.s 2 # Check that the assembler can handle the documented syntax
micromips-expansions.s 3 # Check that the assembler can handle the documented syntax
mips-relocations.s 2 # Check that the assembler can handle the documented syntax
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 34 #include "src/macro-assembler.h"
40 using i::Assembler;
85 // Test the x64 assembler by compiling some simple functions into
159 Assembler::kMinimalBufferSize, &actual_size, true));
163 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size));
164 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro.
244 Assembler::kMinimalBufferSize * 2, &actual_size, true));
248 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size));
250 MacroAssembler* masm = &assembler;
292 Assembler::kMinimalBufferSize, &actual_size, true))
    [all...]
test-macro-assembler-ia32.cc 35 #include "src/macro-assembler.h"
56 Assembler::kMinimalBufferSize, &actual_size, true));
60 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size));
61 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro.
test-macro-assembler-x87.cc 35 #include "src/macro-assembler.h"
56 Assembler::kMinimalBufferSize, &actual_size, true));
60 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size));
61 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro.
  /external/jpeg/
Android.mk 51 # use mips assembler IDCT implementation if MIPS DSP-ASE is present
  /external/sonivox/arm-wt-22k/
Android.mk 95 # .s files not ported for Clang assembler yet.
  /external/libvpx/
libvpx-offsets.mk 16 # RVCT (ARM's in-house compiler) format to GNU Assembler Format for gcc.
54 # assembler to pre-process its assembly files.
  /art/compiler/utils/arm/
assembler_arm.cc 572 static void EmitLoad(ArmAssembler* assembler, ManagedRegister m_dst,
579 assembler->LoadFromOffset(kLoadWord, dst.AsCoreRegister(), src_register, src_offset);
582 assembler->LoadFromOffset(kLoadWord, dst.AsRegisterPairLow(), src_register, src_offset);
583 assembler->LoadFromOffset(kLoadWord, dst.AsRegisterPairHigh(), src_register, src_offset + 4);
585 assembler->LoadSFromOffset(dst.AsSRegister(), src_register, src_offset);
588 assembler->LoadDFromOffset(dst.AsDRegister(), src_register, src_offset);
850 void ArmExceptionSlowPath::Emit(Assembler* sasm) {
    [all...]
assembler_thumb2.h 60 Assembler::FinalizeInstructions(region);
333 // Force the assembler to generate 32 bit instructions.
439 bool force_32bit_branches_; // Force the assembler to use 32 bit branch instructions.
440 bool force_32bit_; // Force the assembler to use 32 bit thumb2 instructions.
522 Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, Condition cond = AL) :
523 assembler_(assembler), type_(type), location_(location),
531 Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, Register rn) :
532 assembler_(assembler), type_(type), location_(location),
539 Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, uint32_t target,
541 assembler_(assembler), type_(type), location_(location)
    [all...]

Completed in 1051 milliseconds

1 23 4 5 6 7