- Oct 11, 2010
-
-
Greg Clayton authored
Added frame relative frame selection to "frame select". You can now select frames relative to the current frame (which defaults to zero if the current frame hasn't yet been set for a thread): The gdb "up" command can be done as: (lldb) frame select -r 1 The gdb "down" command can be done as: (lldb) frame select -r -1 Place the following in your ~/.lldbinit file for "up" and "down": command alias up frame select -r 1 command alias down frame select -r -1 llvm-svn: 116176
-
Greg Clayton authored
llvm-svn: 116175
-
Michael J. Spencer authored
llvm-svn: 116174
-
Michael J. Spencer authored
llvm-svn: 116173
-
- Oct 10, 2010
-
-
Greg Clayton authored
as binary bytes or as an ASCII text dump. - The output file is specified with the "--outfile FILE" option. - The memory can be appended to an existing file using the "--append" option. - The memory will be written as an ASCII text dump by default, or as binary with the "--binary" option. Added new options to memory write to allow writing all or part of a file on disk to target memory: - The input file is specified using the "--infile FILE" option - The offset at which to start in the file defaults to zero, but can be overridden using the "--offset OFFSET" option. If the size is not specified, the remaining number of bytes in the file will be used as the default byte size. - The number of bytes to write defaults to the entire file byte size, but can be changed with the "--size COUNT" option. llvm-svn: 116172
-
Johnny Chen authored
with the function name 'lldb_iter'. Example: def disassemble_instructions (insts): from lldbutil import lldb_iter for i in lldb_iter(insts, 'GetSize', 'GetInstructionAtIndex'): print i llvm-svn: 116171
-
Chris Lattner authored
llvm-svn: 116170
-
Chris Lattner authored
truncate the stack pointer to 32-bits on a 64-bit machine. llvm-svn: 116169
-
Chris Lattner authored
alignment for PPC32/64, avoiding some masking operations. llvm-gcc expands vaarg inline instead of using the instruction so it has never hit this. llvm-svn: 116168
-
Chris Lattner authored
llvm-svn: 116167
-
Chris Lattner authored
llvm-svn: 116166
-
Chris Lattner authored
by Pierre Habouzit! llvm-svn: 116165
-
Francois Pichet authored
llvm-svn: 116164
-
Zhongxing Xu authored
Lei Zhang. llvm-svn: 116163
-
Argyrios Kyrtzidis authored
llvm-svn: 116162
-
NAKAMURA Takumi authored
llvm-svn: 116161
-
Kenneth Uildriks authored
Now using a variant of the existing inlining heuristics to decide whether to create a given specialization of a function in PartialSpecialization. If the total performance bonus across all callsites passing the same constant exceeds the specialization cost, we create the specialization. llvm-svn: 116158
-
- Oct 09, 2010
-
-
Nick Lewycky authored
llvm-svn: 116157
-
Benjamin Kramer authored
llvm-svn: 116156
-
Michael J. Spencer authored
llvm-svn: 116155
-
Benjamin Kramer authored
llvm-svn: 116154
-
Benjamin Kramer authored
Store pointer and length of the message in DelayedDiagnostic and hide the gory union details. llvm-svn: 116153
-
Michael J. Spencer authored
llvm-svn: 116152
-
Michael J. Spencer authored
llvm-svn: 116151
-
Michael J. Spencer authored
llvm-svn: 116150
-
Michael J. Spencer authored
llvm-svn: 116149
-
Michael J. Spencer authored
llvm-svn: 116148
-
Bill Wendling authored
__builtin_ia32_vec_init_v8qi __builtin_ia32_vec_init_v4hi __builtin_ia32_vec_init_v2si They are lowered to bitcasts. (These are all ready tested by the gcc testsuite.) <rdar://problem/8529957> llvm-svn: 116147
-
Michael J. Spencer authored
llvm-svn: 116146
-
Abramo Bagnara authored
llvm-svn: 116145
-
-
Evan Cheng authored
llvm-svn: 116143
-
Michael J. Spencer authored
llvm-svn: 116142
-
John McCall authored
llvm-svn: 116141
-
Evan Cheng authored
llvm-svn: 116140
-
Greg Clayton authored
obey the UnixSignals table that we have in the process. llvm-svn: 116139
-
John McCall authored
constant initializers. llvm-svn: 116138
-
Johnny Chen authored
structures into an iterable Python object. Example: def disassemble_instructions (insts): from lldbutil import Iterator for i in Iterator(insts, 'GetSize', 'GetInstructionAtIndex'): print i llvm-svn: 116137
-
Evan Cheng authored
llvm-svn: 116136
-
Evan Cheng authored
llvm-svn: 116135
-