- Feb 13, 2010
-
-
Chris Lattner authored
encoder and decoder by using new MRM_ forms. llvm-svn: 96048
-
John McCall authored
disabled in NDEBUG builds). The option applies only to -cc1 invocations and is: -disable_llvm_verifier llvm-svn: 96046
-
Chris Lattner authored
llvm-svn: 96045
-
Douglas Gregor authored
single Imported function, in preparation for fixing a serious design flaw. llvm-svn: 96044
-
Sean Callanan authored
whose opcodes extend into the ModR/M field using the Form field of the instruction rather than by special casing each instruction. Commented out the special casing of VMCALL, which is the first instruction to use this special form. While I was in the neighborhood, added a few comments for people modifying the Intel disassembler. llvm-svn: 96043
-
Ted Kremenek authored
llvm-svn: 96041
-
Chris Lattner authored
rip-relative addresses, and add a testcase. llvm-svn: 96040
-
Dale Johannesen authored
The solution there produces correct code, but is seriously deficient in several ways. llvm-svn: 96039
-
Chris Lattner authored
llvm-svn: 96038
-
Jeffrey Yasskin authored
Patch by Shivram K! llvm-svn: 96037
-
Chris Lattner authored
addressing. This isn't complete because I need an MCContext to generate new MCExprs. llvm-svn: 96036
-
- Feb 12, 2010
-
-
Ted Kremenek authored
Make the following functions thread-safe but having them return an std::string that is reconstructed every time they are called: getClangRevision() getClangFullRepositoryVersion() getClangFullVersion() llvm-svn: 96033
-
Johnny Chen authored
Plus add two formats: MiscFrm and ThumbMiscFrm. Some of the for disassembly only instructions are changed from Pseudo Format to MiscFrm Format. llvm-svn: 96032
-
Chris Lattner authored
llvm-svn: 96031
-
Chris Lattner authored
llvm-svn: 96029
-
Chris Lattner authored
llvm-svn: 96028
-
Bob Wilson authored
llvm-svn: 96027
-
Chris Lattner authored
is pc relative or not, mark call and branches as pcrel. llvm-svn: 96026
-
Douglas Gregor authored
enumerators, along with ImplicitCastExprs to make it work. llvm-svn: 96024
-
Evan Cheng authored
Load / store multiple instructions cannot load / store sp. Sorry, can't come up with a reasonable test case. llvm-svn: 96023
-
Dale Johannesen authored
llvm-svn: 96020
-
Johnny Chen authored
llvm-svn: 96019
-
Chris Lattner authored
llvm-svn: 96018
-
Fariborz Jahanian authored
missing (in c/objc mode). Fixes radar 7528255. llvm-svn: 96017
-
Dale Johannesen authored
stack frame, the prolog/epilog code was using the same register for the copy of CR and the address of the save slot. Oops. This is fixed here for Darwin, sort of, by reserving R2 for this case. A better way would be to do the store before the decrement of SP, which is safe on Darwin due to the red zone. SVR4 probably has the same problem, but I don't know how to fix it; there is no red zone and R2 is already used for something else. I'm going to leave it to someone interested in that target. Better still would be to rewrite the CR-saving code completely; spilling each CR subregister individually is horrible code. llvm-svn: 96015
-
Ted Kremenek authored
(2) Reformat "annotations" topics list to use a collapsable tree. llvm-svn: 96013
-
Fariborz Jahanian authored
in objective-c++ mode (do it for objective-c only). llvm-svn: 96012
-
Chris Lattner authored
llvm-svn: 96011
-
Johnny Chen authored
llvm-svn: 96010
-
Evan Cheng authored
llvm-svn: 96008
-
Dan Gohman authored
llvm-svn: 96007
-
Evan Cheng authored
llvm-svn: 96006
-
Dan Gohman authored
llvm-svn: 96005
-
Chris Lattner authored
we'd add an offset from the spelling location space to the instantiation location, which doesn't make sense and would lead up to the text diagnostics crashing when presented with non-sensical locations. This fixes rdar://7597492, a crash on 255.vortex. llvm-svn: 96004
-
Fariborz Jahanian authored
a qualified objective-c pointer type. Fixes radar 7638810. (Also removes a FIXME). llvm-svn: 96003
-
Dan Gohman authored
offset distributions it doesn't expect. llvm-svn: 96002
-
Johnny Chen authored
llvm-svn: 95999
-
Chris Lattner authored
worth asserting about in this code: 1) if the source range is bogus (begin loc after end loc), and 2) if the client is trying to highlight a range that is purely whitespace. It is possible to just silently ignore #2, but it seems like it is always a bug, so lets keep asserting on this condition, but with a better assert message. llvm-svn: 95998
-
Dale Johannesen authored
didn't handle X = Y<dead> = use X DBG_VALUE(X) I was hoping to avoid this approach as it's slower, but I don't think it can be done. llvm-svn: 95996
-
Chris Lattner authored
2. don't bother trying to merge globals in non-default sections, doing so is quite dubious at best anyway. 3. fix a bug reported by Arnaud de Grandmaison where we'd try to merge two globals in different address spaces. llvm-svn: 95995
-