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

  /external/lldb/source/Core/
ArchSpec.cpp 1 //===-- ArchSpec.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/ArchSpec.h"
31 static bool cores_match (const ArchSpec::Core core1, const ArchSpec::Core core2, bool try_inverse, bool enforce_exact_match);
42 ArchSpec::Core core;
48 // This core information can be looked using the ArchSpec::Core as the index
49 static const CoreDefinition g_core_definitions[ArchSpec::kNumCores] =
51 { eByteOrderLittle, 4, 2, 4, llvm::Triple::arm , ArchSpec::eCore_arm_generic , "arm" },
52 { eByteOrderLittle, 4, 2, 4, llvm::Triple::arm , ArchSpec::eCore_arm_armv4 , "armv4" },
53 { eByteOrderLittle, 4, 2, 4, llvm::Triple::arm , ArchSpec::eCore_arm_armv4t , "armv4t" }
    [all...]
  /external/lldb/include/lldb/Core/
ArchSpec.h 1 //===-- ArchSpec.h ----------------------------------------------*- C++ -*-===//
24 /// @class ArchSpec ArchSpec.h "lldb/Core/ArchSpec.h"
32 class ArchSpec
123 ArchSpec ();
128 /// Constructs an ArchSpec with properties consistent with the given
132 ArchSpec (const llvm::Triple &triple);
134 ArchSpec (const char *triple_cstr);
136 ArchSpec (const char *triple_cstr, Platform *platform)
    [all...]

Completed in 173 milliseconds