- Feb 17, 2011
-
-
Johnny Chen authored
// if d == 15 then // Can only occur for encoding A1 // ALUWritePC(result); // setflags is always FALSE here // else // R[d] = result; // if setflags then // APSR.N = result<31>; // APSR.Z = IsZeroBit(result); // APSR.C = carry; // // APSR.V unchanged into a helper method WriteCoreRegisterWithFlags, and modified the existing methods to take advantage of it. Plus add two emulation methods (declaration only for now) for ORR (immediate) and ORR (register). llvm-svn: 125701
-
Chris Lattner authored
it swaps the LHS/RHS of a single binop. llvm-svn: 125700
-
Fariborz Jahanian authored
a forward class. // rdar://8851803 llvm-svn: 125699
-
Douglas Gregor authored
(KVC) and Key-Value Observing (KVO) protocols. llvm-svn: 125696
-
Stephen Wilson authored
llvm-svn: 125695
-
Nick Lewycky authored
llvm-svn: 125694
-
Ted Kremenek authored
llvm-svn: 125693
-
Greg Clayton authored
clang_type_t GetClangFullType(); // Get a completely defined clang type clang_type_t GetClangLayoutType(); // Get a clang type that can be used for type layout clang_type_t GetClangForwardType(); // A type that can be completed if needed, but is more efficient. llvm-svn: 125691
-
- Feb 16, 2011
-
-
Fariborz Jahanian authored
byref variables again when passing them to inner blocks. // rdar://9006279 llvm-svn: 125690
-
Johnny Chen authored
Turns out that they can be funneled through the helper methods EmulateShiftImm()/ EmulateShiftReg() as well. Modify EmulateShiftImm() to handle SRType_ROR and SRType_RRX. And fix a typo in the impl of utility Shift_C() in ARMUtils.h. llvm-svn: 125689
-
Ted Kremenek authored
llvm-svn: 125688
-
Zhanyong Wan authored
by kremenek. llvm-svn: 125687
-
Caroline Tice authored
Add code to emulate STRB (Thumb) instruction. llvm-svn: 125686
-
Chandler Carruth authored
llvm-svn: 125684
-
Johnny Chen authored
ARM and Thumb opcode tables. llvm-svn: 125683
-
Johnny Chen authored
llvm-svn: 125682
-
Chris Lattner authored
llvm-svn: 125681
-
Douglas Gregor authored
Fix a thinko with llvm::Optional, which is clearly the most dangerous class template in the universe llvm-svn: 125679
-
Douglas Gregor authored
code-completion results accessed via libclang, to extend the lifetime of the allocator used for cached global code-completion results at least until these completion results are destroyed. Fixes <rdar://problem/8997369>. llvm-svn: 125678
-
Devang Patel authored
If preprocessed token introduced empty filename then use main translation unit's filename for debug info entries. llvm-svn: 125672
-
Johnny Chen authored
llvm-svn: 125671
-
Douglas Gregor authored
completions. We now compute a hash of the names of all top-level declarations and macro definitions, and invalidate the cache when the hash value changes. llvm-svn: 125670
-
Douglas Gregor authored
llvm-svn: 125669
-
Jim Ingham authored
Destroy the dynamic loader plugin in Process::Finalize. If you wait till the auto_ptr gets deleted in the normal course of things the real process class will have been destroyed already, and it's hard to shut down the dynamic loader without accessing some process pure virtual method. llvm-svn: 125668
-
Stuart Hastings authored
other getNode() methods. Radar 9002173. llvm-svn: 125665
-
Argyrios Kyrtzidis authored
llvm-svn: 125664
-
Rafael Espindola authored
llvm-svn: 125663
-
John McCall authored
llvm-svn: 125662
-
John McCall authored
llvm-svn: 125661
-
Eli Friedman authored
llvm-svn: 125660
-
Eli Friedman authored
llvm-svn: 125659
-
Eli Friedman authored
llvm-svn: 125658
-
Zhanyong Wan authored
jyasskin and chapuni. llvm-svn: 125657
-
Stephen Wilson authored
llvm-svn: 125656
-
Stephen Wilson authored
This patch reverts a portion of r125199 to allow the tree to build again on linux. The specific mingw issues that revision intended to address can be sorted out at a later time. llvm-svn: 125655
-
Stephen Wilson authored
An ArchSpec's type defaults to MachO. Ensure the type is properly set on ELF systems. llvm-svn: 125654
-
Stephen Wilson authored
Use SIZE_MAX instead of SIZE_T_MAX for portability. llvm-svn: 125653
-
Zhanyong Wan authored
components" and "used libs" arguments of add_clang_unittest(). Reviewed by jyasskin and chapuni. llvm-svn: 125652
-
Eric Christopher authored
llvm-svn: 125651
-
Greg Clayton authored
it should live and the lldb_private::Process takes care of managing the auto pointer to the dynamic loader instance. Also, now that the ArchSpec contains the target triple, we are able to correctly set the Target architecture in DidLaunch/DidAttach in the subclasses, and then the lldb_private::Process will find the dynamic loader plug-in by letting the dynamic loader plug-ins inspect the arch/triple in the target. So now the ProcessGDBRemote plug-in is another step closer to be purely process/platform agnostic. I updated the ProcessMacOSX and the ProcessLinux plug-ins accordingly. llvm-svn: 125650
-