HomeSort by relevance Sort by last modified time
    Searched full:simulator (Results 1 - 25 of 866) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
simulator.h 9 #include "src/ia32/simulator-ia32.h"
11 #include "src/x64/simulator-x64.h"
13 #include "src/arm64/simulator-arm64.h"
15 #include "src/arm/simulator-arm.h"
17 #include "src/ppc/simulator-ppc.h"
19 #include "src/mips/simulator-mips.h"
21 #include "src/mips64/simulator-mips64.h"
23 #include "src/s390/simulator-s390.h"
25 #include "src/x87/simulator-x87.h"
  /system/tpm/trunks/
trunksd-simulator.rc 4 service trunksd /system/bin/trunksd --simulator
  /external/v8/src/ia32/
simulator-ia32.cc 5 #include "src/ia32/simulator-ia32.h"
7 // Since there is no simulator for the ia32 architecture this file is empty.
  /external/v8/src/x87/
simulator-x87.cc 5 #include "src/x87/simulator-x87.h"
7 // Since there is no simulator for the ia32 architecture this file is empty.
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorModule.java 17 package com.android.dialer.simulator.impl;
19 import com.android.dialer.simulator.Simulator;
20 import com.android.dialer.simulator.SimulatorConnectionsBank;
25 /** This module provides an instance of the simulator. */
30 public abstract Simulator bindsSimulator(SimulatorImpl simulator);
SimulatorImpl.java 17 package com.android.dialer.simulator.impl;
24 import com.android.dialer.simulator.Simulator;
27 /** The entry point for the simulator feature. */
28 final class SimulatorImpl implements Simulator {
  /external/vixl/examples/aarch64/
swap4.cc 53 Simulator simulator(&decoder);
62 simulator.WriteXRegister(0, 0x1111111111111111);
63 simulator.WriteXRegister(1, 0x2222222222222222);
64 simulator.WriteXRegister(2, 0x3333333333333333);
65 simulator.WriteXRegister(3, 0x4444444444444444);
73 simulator.ReadXRegister(0), simulator.ReadXRegister(1),
74 simulator.ReadXRegister(2), simulator.ReadXRegister(3))
    [all...]
check-bounds.cc 61 void run_function(Simulator* simulator,
66 simulator->WriteXRegister(0, value);
67 simulator->WriteXRegister(1, low);
68 simulator->WriteXRegister(2, high);
70 simulator->RunFrom(function);
73 simulator->ReadXRegister(0) ? "is" : "is not",
77 simulator->ResetState();
83 Simulator simulator(&decoder)
    [all...]
add4-double.cc 58 Simulator simulator(&decoder);
71 simulator.WriteXRegister(0, a);
72 simulator.WriteDRegister(0, b);
73 simulator.WriteXRegister(1, c);
74 simulator.WriteDRegister(1, d);
75 simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&add4_double));
78 a, b, c, d, simulator.ReadDRegister(0));
84 // Without the simulator there is nothing to test.
add3-double.cc 50 Simulator simulator(&decoder);
62 simulator.WriteDRegister(0, a);
63 simulator.WriteDRegister(1, b);
64 simulator.WriteDRegister(2, c);
65 simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&add3_double));
66 printf("%f + %f + %f = %f\n", a, b, c, simulator.ReadDRegister(0));
71 // Without the simulator there is nothing to test.
getting-started.cc 28 #include "aarch64/simulator-aarch64.h"
47 Simulator simulator(&decoder);
54 simulator.WriteXRegister(0, 0x8899aabbccddeeff);
55 simulator.RunFrom(masm.GetLabelAddress<Instruction *>(&demo_function));
56 printf("x0 = %" PRIx64 "\n", simulator.ReadXRegister(0));
61 // Without the simulator there is nothing to test.
swap-int32.cc 67 Simulator simulator(&decoder);
76 simulator.WriteWRegister(0, 0x11111111);
77 simulator.WriteWRegister(1, 0x22222222);
83 simulator.ReadWRegister(0), simulator.ReadWRegister(1));
86 simulator.RunFrom(masm.GetLabelAddress<Instruction*>(&swap_int32));
92 simulator.ReadWRegister(0), simulator.ReadWRegister(1));
98 // Without the simulator there is nothing to test
    [all...]
  /system/chre/
run_sim.sh 6 # Build and run the CHRE simulator.
15 export CHRE_VARIANT_MK_INCLUDES=variant/simulator/variant.mk
  /art/simulator/
code_simulator_container.cc 31 kIsDebugBuild ? "libartd-simulator.so" : "libart-simulator.so";
33 // It is not a real error when libart-simulator does not exist, e.g., on target.
35 VLOG(simulator) << "Could not load " << libart_simulator_so_name << ": " << dlerror();
48 // Free simulator object before closing libart-simulator because destructor of
Android.bp 43 name: "libart-simulator",
52 name: "libartd-simulator",
80 name: "libart-simulator-container",
88 name: "libartd-simulator-container",
  /external/vixl/test/aarch64/examples/
test-examples.cc 35 #include "aarch64/simulator-aarch64.h"
45 // The tests below only work with the simulator.
114 saved_xregs[0] = simulator.ReadXRegister(19); \
115 saved_xregs[1] = simulator.ReadXRegister(20); \
116 saved_xregs[2] = simulator.ReadXRegister(21); \
117 saved_xregs[3] = simulator.ReadXRegister(22); \
118 saved_xregs[4] = simulator.ReadXRegister(23); \
119 saved_xregs[5] = simulator.ReadXRegister(24); \
120 saved_xregs[6] = simulator.ReadXRegister(25); \
121 saved_xregs[7] = simulator.ReadXRegister(26);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/
MainToolbarMenu.java 25 import com.android.dialer.simulator.Simulator;
26 import com.android.dialer.simulator.SimulatorComponent;
41 Simulator simulator = SimulatorComponent.get(activity).getSimulator(); local
42 if (simulator.shouldShow()) {
44 simulatorMenuItem.setActionProvider(simulator.getActionProvider(activity));
  /external/v8/src/profiler/
tick-sample.cc 11 #include "src/simulator.h"
87 // from the simulator, otherwise returns false.
93 Simulator* simulator = isolate->thread_local_top()->simulator_; local
94 // Check if there is active simulator.
95 if (simulator == NULL) return false;
97 if (!simulator->has_bad_pc()) {
98 state->pc = reinterpret_cast<Address>(simulator->get_pc());
100 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp))
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/simulator/
SimulatorConnectionsBank.java 17 package com.android.dialer.simulator;
22 import com.android.dialer.simulator.Simulator.ConferenceType;
37 /** Merge all existing connections created by simulator into a conference. */
40 /** Set all connections created by simulator to disconnected. */
50 /** Determine whether a connection is created by simulator. */
  /system/chre/variant/simulator/
variant.mk 2 # Simulator-Specific CHRE Makefile
27 COMMON_SRCS += variant/simulator/static_nanoapps.cc
  /toolchain/binutils/binutils-2.27/include/gdb/
remote-sim.h 1 /* This file defines the interface between the simulator and gdb.
42 It is up to each simulator to define `sim_state'. */
50 SIM_OPEN_STANDALONE, /* simulator used standalone (run.c) */
51 SIM_OPEN_DEBUG /* simulator used by debugger (gdb) */
69 /* Main simulator entry points. */
72 /* Create a fully initialized simulator instance.
74 (This function is called when the simulator is selected from the
77 KIND specifies how the simulator shall be used. Currently there
89 stand-alone simulator.
92 passed to the other sim_foo functions. While the simulator
    [all...]
  /external/v8/src/x64/
simulator-x64.cc 5 #include "src/x64/simulator-x64.h"
  /system/chre/ash/
ash.mk 15 # Simulator-specific Source Files ##############################################
  /toolchain/binutils/binutils-2.27/ld/emulparams/
m32relf.sh 11 # This sets the stack to the top of simulator memory (8MB).
m32relf_linux.sh 11 # top of simulator memory (32MB).

Completed in 838 milliseconds

1 2 3 4 5 6 7 8 91011>>