HomeSort by relevance Sort by last modified time
    Searched refs:vixl (Results 1 - 25 of 43) sorted by null

1 2

  /external/vixl/src/
platform-vixl.h 33 namespace vixl { namespace
36 } // namespace vixl
utils-vixl.cc 27 #include "utils-vixl.h"
30 namespace vixl { namespace
127 } // namespace vixl
  /external/vixl/test/
cctest.cc 33 vixl::Cctest* vixl::Cctest::first_ = NULL;
34 vixl::Cctest* vixl::Cctest::last_ = NULL;
37 bool vixl::Cctest::debug_ = false;
40 bool vixl::Cctest::trace_sim_ = false;
41 bool vixl::Cctest::trace_reg_ = false;
44 bool vixl::Cctest::coloured_trace_ = false;
47 bool vixl::Cctest::instruction_stats_ = false;
50 bool vixl::Cctest::sim_test_trace_ = false
    [all...]
cctest.h 30 #include "utils-vixl.h"
32 namespace vixl { namespace
86 } // namespace vixl
test-fuzz-a64.cc 36 namespace vixl { namespace
119 } // namespace vixl
test-utils-a64.h 36 namespace vixl { namespace
229 } // namespace vixl
  /external/vixl/src/a64/
cpu-a64.h 30 #include "globals-vixl.h"
32 namespace vixl { namespace
54 } // namespace vixl
instrument-a64.h 30 #include "globals-vixl.h"
31 #include "utils-vixl.h"
36 namespace vixl { namespace
105 } // namespace vixl
cpu-a64.cc 27 #include "utils-vixl.h"
30 namespace vixl { namespace
148 } // namespace vixl
debugger-a64.h 35 #include "globals-vixl.h"
36 #include "utils-vixl.h"
40 namespace vixl { namespace
44 // VIXL's macro-assembler and debugger support a few pseudo instructions to
191 } // namespace vixl
disasm-a64.h 30 #include "globals-vixl.h"
31 #include "utils-vixl.h"
35 namespace vixl { namespace
108 } // namespace vixl
decoder-a64.h 32 #include "globals-vixl.h"
84 namespace vixl { namespace
196 } // namespace vixl
instructions-a64.cc 30 namespace vixl { namespace
237 } // namespace vixl
  /art/disassembler/
disassembler_arm64.h 38 vixl::Decoder decoder;
39 vixl::Disassembler disasm;
disassembler_arm64.cc 36 decoder.Decode(reinterpret_cast<vixl::Instruction*>(&instruction));
39 return vixl::kInstructionSize;
43 for (const uint8_t* cur = begin; cur < end; cur += vixl::kInstructionSize) {
  /art/compiler/utils/arm64/
managed_register_arm64_test.cc 614 EXPECT_TRUE(vixl::x0.Is(Arm64Assembler::reg_x(X0)));
615 EXPECT_TRUE(vixl::x1.Is(Arm64Assembler::reg_x(X1)));
616 EXPECT_TRUE(vixl::x2.Is(Arm64Assembler::reg_x(X2)));
617 EXPECT_TRUE(vixl::x3.Is(Arm64Assembler::reg_x(X3)));
618 EXPECT_TRUE(vixl::x4.Is(Arm64Assembler::reg_x(X4)));
619 EXPECT_TRUE(vixl::x5.Is(Arm64Assembler::reg_x(X5)));
620 EXPECT_TRUE(vixl::x6.Is(Arm64Assembler::reg_x(X6)));
621 EXPECT_TRUE(vixl::x7.Is(Arm64Assembler::reg_x(X7)));
622 EXPECT_TRUE(vixl::x8.Is(Arm64Assembler::reg_x(X8)));
623 EXPECT_TRUE(vixl::x9.Is(Arm64Assembler::reg_x(X9)))
    [all...]
assembler_arm64.h 36 #define MEM_OP(x...) vixl::MemOperand(x)
37 #define COND_OP(x) static_cast<vixl::Condition>(x)
85 vixl_masm_(new vixl::MacroAssembler(vixl_buf_, kBufferSizeArm64)) {}
197 static vixl::Register reg_x(int code) {
200 return vixl::sp;
202 return vixl::xzr;
204 return vixl::Register::XRegFromCode(code);
207 static vixl::Register reg_w(int code) {
208 return vixl::Register::WRegFromCode(code);
211 static vixl::FPRegister reg_d(int code)
    [all...]
assembler_arm64.cc 79 // VIXL macro-assembler handles all variants.
84 vixl::UseScratchRegisterScope temps(vixl_masm_);
86 vixl::Register temp = temps.AcquireX();
180 vixl::UseScratchRegisterScope temps(vixl_masm_);
181 vixl::Register temp = temps.AcquireX();
204 vixl::UseScratchRegisterScope temps(vixl_masm_);
206 vixl::Register temp = temps.AcquireX();
307 vixl::UseScratchRegisterScope temps(vixl_masm_);
474 ___ Dmb(vixl::InnerShareable, vixl::BarrierAll)
    [all...]
  /external/vixl/examples/
examples.h 34 using namespace vixl;
89 // This example demonstrates some interesting features of VIXL's stack
getting-started.cc 33 using namespace vixl;
  /external/vixl/
Android.mk 69 src/utils-vixl.cc
119 # cctest_vixl: VIXL native tests (to run all tests execute ./cctest_vixl --run_all)
136 .PHONY: run-vixl-tests
137 run-vixl-tests: cctest_vixl
139 @echo vixl tests PASSED
  /external/vixl/benchmarks/
bench-branch.cc 29 #include "globals-vixl.h"
31 using namespace vixl;
bench-dataop.cc 29 #include "globals-vixl.h"
31 using namespace vixl;
  /art/
Android.mk 163 # We can only run the vixl tests on 64-bit hosts (vixl testing issue) when its a
164 # top-level build (to declare the vixl test rule).
167 VIXL_TEST_DEPENDENCY := run-vixl-tests
171 .PHONY: test-art-host-vixl
172 test-art-host-vixl: $(VIXL_TEST_DEPENDENCY)
176 test-art-host: test-art-host-gtest test-art-host-run-test test-art-host-vixl
  /art/build/
Android.common_build.mk 146 external/vixl/src \

Completed in 237 milliseconds

1 2