Skip to content

Commit f24f9d9

Browse files
author
Jim Grosbach
committed
Whitespace cleanup. Remove trailing whitespace.
llvm-svn: 78666
1 parent 74eb9e7 commit f24f9d9

19 files changed

+116
-116
lines changed

llvm/lib/Target/ARM/ARM.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ FunctionPass *createARMCodeEmitterPass(ARMBaseTargetMachine &TM,
9898
MachineCodeEmitter &MCE);
9999
FunctionPass *createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
100100
JITCodeEmitter &JCE);
101-
FunctionPass *createARMObjectCodeEmitterPass(ARMBaseTargetMachine &TM,
101+
FunctionPass *createARMObjectCodeEmitterPass(ARMBaseTargetMachine &TM,
102102
ObjectCodeEmitter &OCE);
103103

104104
FunctionPass *createARMLoadStoreOptimizationPass(bool PreAlloc = false);

llvm/lib/Target/ARM/ARMAddressingModes.h

+35-35
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <cassert>
2121

2222
namespace llvm {
23-
23+
2424
/// ARM_AM - ARM Addressing Mode Stuff
2525
namespace ARM_AM {
2626
enum ShiftOpc {
@@ -31,11 +31,11 @@ namespace ARM_AM {
3131
ror,
3232
rrx
3333
};
34-
34+
3535
enum AddrOpc {
3636
add = '+', sub = '-'
3737
};
38-
38+
3939
static inline const char *getShiftOpcStr(ShiftOpc Op) {
4040
switch (Op) {
4141
default: llvm_unreachable("Unknown shift opc!");
@@ -46,7 +46,7 @@ namespace ARM_AM {
4646
case ARM_AM::rrx: return "rrx";
4747
}
4848
}
49-
49+
5050
static inline ShiftOpc getShiftOpcForNode(SDValue N) {
5151
switch (N.getOpcode()) {
5252
default: return ARM_AM::no_shift;
@@ -95,14 +95,14 @@ namespace ARM_AM {
9595
assert(Amt < 32 && "Invalid rotate amount");
9696
return (Val >> Amt) | (Val << ((32-Amt)&31));
9797
}
98-
98+
9999
/// rotl32 - Rotate a 32-bit unsigned value left by a specified # bits.
100100
///
101101
static inline unsigned rotl32(unsigned Val, unsigned Amt) {
102102
assert(Amt < 32 && "Invalid rotate amount");
103103
return (Val << Amt) | (Val >> ((32-Amt)&31));
104104
}
105-
105+
106106
//===--------------------------------------------------------------------===//
107107
// Addressing Mode #1: shift_operand with registers
108108
//===--------------------------------------------------------------------===//
@@ -137,7 +137,7 @@ namespace ARM_AM {
137137
static inline unsigned getSOImmValRot(unsigned Imm) {
138138
return (Imm >> 8) * 2;
139139
}
140-
140+
141141
/// getSOImmValRotate - Try to handle Imm with an immediate shifter operand,
142142
/// computing the rotate amount to use. If this immediate value cannot be
143143
/// handled with a single shifter-op, determine a good rotate amount that will
@@ -146,14 +146,14 @@ namespace ARM_AM {
146146
// 8-bit (or less) immediates are trivially shifter_operands with a rotate
147147
// of zero.
148148
if ((Imm & ~255U) == 0) return 0;
149-
149+
150150
// Use CTZ to compute the rotate amount.
151151
unsigned TZ = CountTrailingZeros_32(Imm);
152-
152+
153153
// Rotate amount must be even. Something like 0x200 must be rotated 8 bits,
154154
// not 9.
155155
unsigned RotAmt = TZ & ~1;
156-
156+
157157
// If we can handle this spread, return it.
158158
if ((rotr32(Imm, RotAmt) & ~255U) == 0)
159159
return (32-RotAmt)&31; // HW rotates right, not left.
@@ -166,16 +166,16 @@ namespace ARM_AM {
166166
// Restart the search for a high-order bit after the initial seconds of
167167
// ones.
168168
unsigned TZ2 = CountTrailingZeros_32(Imm & ~((1 << TrailingOnes)-1));
169-
169+
170170
// Rotate amount must be even.
171171
unsigned RotAmt2 = TZ2 & ~1;
172-
172+
173173
// If this fits, use it.
174174
if (RotAmt2 != 32 && (rotr32(Imm, RotAmt2) & ~255U) == 0)
175175
return (32-RotAmt2)&31; // HW rotates right, not left.
176176
}
177177
}
178-
178+
179179
// Otherwise, we have no way to cover this span of bits with a single
180180
// shifter_op immediate. Return a chunk of bits that will be useful to
181181
// handle.
@@ -189,30 +189,30 @@ namespace ARM_AM {
189189
// 8-bit (or less) immediates are trivially shifter_operands with a rotate
190190
// of zero.
191191
if ((Arg & ~255U) == 0) return Arg;
192-
192+
193193
unsigned RotAmt = getSOImmValRotate(Arg);
194194

195195
// If this cannot be handled with a single shifter_op, bail out.
196196
if (rotr32(~255U, RotAmt) & Arg)
197197
return -1;
198-
198+
199199
// Encode this correctly.
200200
return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
201201
}
202-
202+
203203
/// isSOImmTwoPartVal - Return true if the specified value can be obtained by
204204
/// or'ing together two SOImmVal's.
205205
static inline bool isSOImmTwoPartVal(unsigned V) {
206206
// If this can be handled with a single shifter_op, bail out.
207207
V = rotr32(~255U, getSOImmValRotate(V)) & V;
208208
if (V == 0)
209209
return false;
210-
210+
211211
// If this can be handled with two shifter_op's, accept.
212212
V = rotr32(~255U, getSOImmValRotate(V)) & V;
213213
return V == 0;
214214
}
215-
215+
216216
/// getSOImmTwoPartFirst - If V is a value that satisfies isSOImmTwoPartVal,
217217
/// return the first chunk of it.
218218
static inline unsigned getSOImmTwoPartFirst(unsigned V) {
@@ -222,14 +222,14 @@ namespace ARM_AM {
222222
/// getSOImmTwoPartSecond - If V is a value that satisfies isSOImmTwoPartVal,
223223
/// return the second chunk of it.
224224
static inline unsigned getSOImmTwoPartSecond(unsigned V) {
225-
// Mask out the first hunk.
225+
// Mask out the first hunk.
226226
V = rotr32(~255U, getSOImmValRotate(V)) & V;
227-
227+
228228
// Take what's left.
229229
assert(V == (rotr32(255U, getSOImmValRotate(V)) & V));
230230
return V;
231231
}
232-
232+
233233
/// getThumbImmValShift - Try to handle Imm with a 8-bit immediate followed
234234
/// by a left shift. Returns the shift amount to use.
235235
static inline unsigned getThumbImmValShift(unsigned Imm) {
@@ -244,7 +244,7 @@ namespace ARM_AM {
244244
/// isThumbImmShiftedVal - Return true if the specified value can be obtained
245245
/// by left shifting a 8-bit immediate.
246246
static inline bool isThumbImmShiftedVal(unsigned V) {
247-
// If this can be handled with
247+
// If this can be handled with
248248
V = (~255U << getThumbImmValShift(V)) & V;
249249
return V == 0;
250250
}
@@ -260,10 +260,10 @@ namespace ARM_AM {
260260
return CountTrailingZeros_32(Imm);
261261
}
262262

263-
/// isThumbImm16ShiftedVal - Return true if the specified value can be
263+
/// isThumbImm16ShiftedVal - Return true if the specified value can be
264264
/// obtained by left shifting a 16-bit immediate.
265265
static inline bool isThumbImm16ShiftedVal(unsigned V) {
266-
// If this can be handled with
266+
// If this can be handled with
267267
V = (~65535U << getThumbImm16ValShift(V)) & V;
268268
return V == 0;
269269
}
@@ -287,9 +287,9 @@ namespace ARM_AM {
287287
static inline int getT2SOImmValSplatVal(unsigned V) {
288288
unsigned u, Vs, Imm;
289289
// control = 0
290-
if ((V & 0xffffff00) == 0)
290+
if ((V & 0xffffff00) == 0)
291291
return V;
292-
292+
293293
// If the value is zeroes in the first byte, just shift those off
294294
Vs = ((V & 0xff) == 0) ? V >> 8 : V;
295295
// Any passing value only has 8 bits of payload, splatted across the word
@@ -325,23 +325,23 @@ namespace ARM_AM {
325325
}
326326

327327
/// getT2SOImmVal - Given a 32-bit immediate, if it is something that can fit
328-
/// into a Thumb-2 shifter_operand immediate operand, return the 12-bit
328+
/// into a Thumb-2 shifter_operand immediate operand, return the 12-bit
329329
/// encoding for it. If not, return -1.
330330
/// See ARM Reference Manual A6.3.2.
331331
static inline int getT2SOImmVal(unsigned Arg) {
332332
// If 'Arg' is an 8-bit splat, then get the encoded value.
333333
int Splat = getT2SOImmValSplatVal(Arg);
334334
if (Splat != -1)
335335
return Splat;
336-
336+
337337
// If 'Arg' can be handled with a single shifter_op return the value.
338338
int Rot = getT2SOImmValRotateVal(Arg);
339339
if (Rot != -1)
340340
return Rot;
341341

342342
return -1;
343343
}
344-
344+
345345

346346
//===--------------------------------------------------------------------===//
347347
// Addressing Mode #2
@@ -359,7 +359,7 @@ namespace ARM_AM {
359359
// If this addressing mode is a frame index (before prolog/epilog insertion
360360
// and code rewriting), this operand will have the form: FI#, reg0, <offs>
361361
// with no shift amount for the frame offset.
362-
//
362+
//
363363
static inline unsigned getAM2Opc(AddrOpc Opc, unsigned Imm12, ShiftOpc SO) {
364364
assert(Imm12 < (1 << 12) && "Imm too large!");
365365
bool isSub = Opc == sub;
@@ -374,8 +374,8 @@ namespace ARM_AM {
374374
static inline ShiftOpc getAM2ShiftOpc(unsigned AM2Opc) {
375375
return (ShiftOpc)(AM2Opc >> 13);
376376
}
377-
378-
377+
378+
379379
//===--------------------------------------------------------------------===//
380380
// Addressing Mode #3
381381
//===--------------------------------------------------------------------===//
@@ -388,7 +388,7 @@ namespace ARM_AM {
388388
// The first operand is always a Reg. The second operand is a reg if in
389389
// reg/reg form, otherwise it's reg#0. The third field encodes the operation
390390
// in bit 8, the immediate in bits 0-7.
391-
391+
392392
/// getAM3Opc - This function encodes the addrmode3 opc field.
393393
static inline unsigned getAM3Opc(AddrOpc Opc, unsigned char Offset) {
394394
bool isSub = Opc == sub;
@@ -400,7 +400,7 @@ namespace ARM_AM {
400400
static inline AddrOpc getAM3Op(unsigned AM3Opc) {
401401
return ((AM3Opc >> 8) & 1) ? sub : add;
402402
}
403-
403+
404404
//===--------------------------------------------------------------------===//
405405
// Addressing Mode #4
406406
//===--------------------------------------------------------------------===//
@@ -448,7 +448,7 @@ namespace ARM_AM {
448448
//
449449
// IA - Increment after
450450
// DB - Decrement before
451-
451+
452452
/// getAM5Opc - This function encodes the addrmode5 opc field.
453453
static inline unsigned getAM5Opc(AddrOpc Opc, unsigned char Offset) {
454454
bool isSub = Opc == sub;

llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ ARMBaseInstrInfo::isMoveInstr(const MachineInstr &MI,
523523
return false;
524524
}
525525

526-
unsigned
526+
unsigned
527527
ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
528528
int &FrameIndex) const {
529529
switch (MI->getOpcode()) {
@@ -805,7 +805,7 @@ foldMemoryOperandImpl(MachineFunction &MF, MachineInstr *MI,
805805
return NewMI;
806806
}
807807

808-
MachineInstr*
808+
MachineInstr*
809809
ARMBaseInstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
810810
MachineInstr* MI,
811811
const SmallVectorImpl<unsigned> &Ops,
@@ -899,11 +899,11 @@ int llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
899899
const TargetInstrDesc &Desc = MI.getDesc();
900900
unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
901901
bool isSub = false;
902-
902+
903903
// Memory operands in inline assembly always use AddrMode2.
904904
if (Opcode == ARM::INLINEASM)
905905
AddrMode = ARMII::AddrMode2;
906-
906+
907907
if (Opcode == ARM::ADDri) {
908908
Offset += MI.getOperand(FrameRegIdx+1).getImm();
909909
if (Offset == 0) {
@@ -997,7 +997,7 @@ int llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
997997
ImmOp.ChangeToImmediate(ImmedOffset);
998998
return 0;
999999
}
1000-
1000+
10011001
// Otherwise, it didn't fit. Pull in what we can to simplify the immed.
10021002
ImmedOffset = ImmedOffset & Mask;
10031003
if (isSub)

llvm/lib/Target/ARM/ARMBaseInstrInfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ class ARMBaseInstrInfo : public TargetInstrInfoImpl {
243243

244244
virtual bool canFoldMemoryOperand(const MachineInstr *MI,
245245
const SmallVectorImpl<unsigned> &Ops) const;
246-
246+
247247
virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
248248
MachineInstr* MI,
249249
const SmallVectorImpl<unsigned> &Ops,
@@ -311,7 +311,7 @@ void emitT2RegPlusImmediate(MachineBasicBlock &MBB,
311311
const ARMBaseInstrInfo &TII);
312312

313313

314-
/// rewriteARMFrameIndex / rewriteT2FrameIndex -
314+
/// rewriteARMFrameIndex / rewriteT2FrameIndex -
315315
/// Rewrite MI to access 'Offset' bytes from the FP. Return the offset that
316316
/// could not be handled directly in MI.
317317
int rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,

llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -470,13 +470,13 @@ ARMBaseRegisterInfo::estimateRSStackSizeLimit(MachineFunction &MF) const {
470470
I != E; ++I) {
471471
for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
472472
if (!I->getOperand(i).isFI()) continue;
473-
473+
474474
const TargetInstrDesc &Desc = TII.get(I->getOpcode());
475475
unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
476476
if (AddrMode == ARMII::AddrMode3 ||
477477
AddrMode == ARMII::AddrModeT2_i8)
478478
return (1 << 8) - 1;
479-
479+
480480
if (AddrMode == ARMII::AddrMode5 ||
481481
AddrMode == ARMII::AddrModeT2_i8s4)
482482
Limit = std::min(Limit, ((1U << 8) - 1) * 4);
@@ -1235,7 +1235,7 @@ static bool isCalleeSavedRegister(unsigned Reg, const unsigned *CSRegs) {
12351235
}
12361236

12371237
static bool isCSRestore(MachineInstr *MI,
1238-
const ARMBaseInstrInfo &TII,
1238+
const ARMBaseInstrInfo &TII,
12391239
const unsigned *CSRegs) {
12401240
return ((MI->getOpcode() == (int)ARM::FLDD ||
12411241
MI->getOpcode() == (int)ARM::LDR ||
@@ -1297,7 +1297,7 @@ emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const {
12971297
ARMCC::AL, 0, TII);
12981298
} else {
12991299
// Thumb2 or ARM.
1300-
if (isARM)
1300+
if (isARM)
13011301
BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP)
13021302
.addReg(FramePtr)
13031303
.addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);

0 commit comments

Comments
 (0)