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

1 2

  /external/llvm/include/llvm/MC/
MCWinCOFFObjectWriter.h 21 const unsigned Machine;
29 unsigned getMachine() const { return Machine; }
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 252 /*===---- Target Machine --------------------------------------------------===*/
256 static void llvm_finalize_target_machine(value Machine) {
257 LLVMDisposeTargetMachine(TargetMachine_val(Machine));
272 static value llvm_alloc_targetmachine(LLVMTargetMachineRef Machine) {
275 TargetMachine_val(V) = Machine;
285 LLVMTargetMachineRef Machine;
302 Machine = LLVMCreateTargetMachine(Target, String_val(Triple), CPUStr,
305 return llvm_alloc_targetmachine(Machine);
314 CAMLprim LLVMTargetRef llvm_targetmachine_target(value Machine) {
315 return LLVMGetTargetMachineTarget(TargetMachine_val(Machine));
    [all...]
  /external/chromium_org/tools/relocation_packer/src/
elf_traits.h 62 static inline const char* Machine() { return "ARM"; }
96 static inline const char* Machine() { return "ARM64"; }
main.cc 146 LOG(INFO) << "Configured for " << ELF::Machine();
  /external/llvm/lib/IR/
AsmWriter.cpp 352 /// will reset the state of the machine back to just the module contents.
678 SlotTracker *Machine,
767 SlotTracker *Machine,
897 WriteAsOperandInternal(Out, BA->getFunction(), &TypePrinter, Machine,
900 WriteAsOperandInternal(Out, BA->getBasicBlock(), &TypePrinter, Machine,
912 &TypePrinter, Machine,
918 WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
    [all...]
AsmWriter.h 72 SlotTracker &Machine;
  /external/chromium_org/tools/checkbins/
checkbins.py 85 pe.FILE_HEADER.Machine == MACHINE_TYPE_AMD64):
94 if pe.FILE_HEADER.Machine == MACHINE_TYPE_AMD64:
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 27 * upon a {@link Frame}. A machine conceptually contains four arbitrary-value
31 public interface Machine {
127 * {@code Machine} are collapsed to the {@code int}
Simulator.java 47 /** {@code non-null;} machine to use when simulating */
48 private final Machine machine; field in class:Simulator
62 * @param machine {@code non-null;} machine to use when simulating
65 public Simulator(Machine machine, ConcreteMethod method) {
66 if (machine == null) {
67 throw new NullPointerException("machine == null");
74 this.machine = machine
192 private final Machine machine; field in class:Simulator.SimVisitor
    [all...]
BaseMachine.java 29 * Base implementation of {@link Machine}.
35 public abstract class BaseMachine implements Machine {
  /external/llvm/lib/Object/
COFFYAML.cpp 265 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {}
266 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {}
267 uint16_t denormalize(IO &) { return Machine; }
268 COFF::MachineTypes Machine;
296 if (H.Machine == COFF::IMAGE_FILE_MACHINE_I386) {
300 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_AMD64) {
310 MappingNormalization<NMachine, uint16_t> NM(IO, H.Machine);
314 IO.mapRequired("Machine", NM->Machine);
ELFYAML.cpp 250 switch (Object->Header.Machine) {
386 switch (Object->Header.Machine) {
651 IO.mapRequired("Machine", FileHdr.Machine);
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 48 YAMLObj.Header.Machine = Header->Machine;
  /external/llvm/tools/opt/
opt.cpp 458 TargetMachine *Machine = nullptr;
460 Machine = GetTargetMachine(Triple(ModuleTriple));
461 std::unique_ptr<TargetMachine> TM(Machine);
463 // Add internal analysis passes from the target machine.
  /external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win_unittest.cc 58 EXPECT_EQ(expected_data_->machine_identifier, file_header->Machine);
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Lexicons.py 110 machine = None # Machine variable in class:Lexicon
120 nfa = Machines.Machine()
156 self.machine = dfa
158 def add_token_to_machine(self, machine, initial_state, token_spec, token_number):
174 final_state = machine.new_state()
175 re.build_machine(machine, initial_state, final_state,
192 return self.machine.get_initial_state(name)
Machines.py 15 class Machine(object):
31 """Add a new state to the machine and return it."""
51 file.write("Plex.Machine:\n")
124 FastMachine is a deterministic machine represented in a way that
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 145 idesc64 isrL, 0x0008, 0 ; 0x12 18, #MC, Machine Check
184 dw isrR, 0 ; 0x12 18, #MC, Machine Check
xdfprotect.asm 119 idesc32 isrP, 0x0008, 0 ; 0x12 18, #MC, Machine Check
157 dw isrR, 0 ; 0x12 18, #MC, Machine Check
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 308 Header.Machine = TargetObjectWriter->getMachine();
570 WriteLE16(Header.Machine);
781 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 &&
783 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 &&
787 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) {
    [all...]
  /external/llvm/include/llvm/Support/
COFF.h 49 uint16_t Machine;
105 /// Machine is based on a 32bit word architecture.
117 /// This file should only be run on a uniprocessor machine.
628 uint16_t Machine;
  /external/llvm/test/Bindings/Ocaml/
target.ml 40 let machine = TargetMachine.create (Target.default_triple ()) target var
81 (*===-- Target Machine ----------------------------------------------------===*)
85 assert_equal (TM.target machine) target;
86 assert_equal (TM.triple machine) (Target.default_triple ());
87 assert_equal (TM.cpu machine) "";
88 assert_equal (TM.features machine) "";
89 ignore (TM.data_layout machine);
90 TM.set_verbose_asm true machine
96 TargetMachine.emit_to_file m CodeGenFileType.ObjectFile filename machine;
99 "/nonexistent/file" machine;
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 267 if (Header->Machine != COFF::IMAGE_FILE_MACHINE_I386)
525 if (Header->Machine != COFF::IMAGE_FILE_MACHINE_AMD64) {
526 errs() << "Unsupported image machine type "
  /external/llvm/include/llvm/Object/
ELFYAML.h 56 ELF_EM Machine;
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 356 W.printEnum ("Machine", COFFHeader->Machine,
    [all...]

Completed in 862 milliseconds

1 2