mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -724,12 +724,12 @@ Constant *llvm::ConstantFoldSelectInstruction(Constant *Cond,
|
||||
if (ConstantExpr *TrueVal = dyn_cast<ConstantExpr>(V1)) {
|
||||
if (TrueVal->getOpcode() == Instruction::Select)
|
||||
if (TrueVal->getOperand(0) == Cond)
|
||||
return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
|
||||
return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
|
||||
}
|
||||
if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
|
||||
if (FalseVal->getOpcode() == Instruction::Select)
|
||||
if (FalseVal->getOperand(0) == Cond)
|
||||
return ConstantExpr::getSelect(Cond, V1, FalseVal->getOperand(2));
|
||||
return ConstantExpr::getSelect(Cond, V1, FalseVal->getOperand(2));
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@@ -64,7 +64,7 @@ bool GCOVFile::read(GCOVBuffer &Buffer) {
|
||||
/// dump - Dump GCOVFile content on standard out for debugging purposes.
|
||||
void GCOVFile::dump() {
|
||||
for (SmallVector<GCOVFunction *, 16>::iterator I = Functions.begin(),
|
||||
E = Functions.end(); I != E; ++I)
|
||||
E = Functions.end(); I != E; ++I)
|
||||
(*I)->dump();
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ void GCOVFile::dump() {
|
||||
/// reading .gcno and .gcda files.
|
||||
void GCOVFile::collectLineCounts(FileInfo &FI) {
|
||||
for (SmallVector<GCOVFunction *, 16>::iterator I = Functions.begin(),
|
||||
E = Functions.end(); I != E; ++I)
|
||||
E = Functions.end(); I != E; ++I)
|
||||
(*I)->collectLineCounts(FI);
|
||||
FI.print();
|
||||
}
|
||||
@@ -143,7 +143,7 @@ bool GCOVFunction::read(GCOVBuffer &Buff, GCOVFormat Format) {
|
||||
StringRef Filename = Buff.readString();
|
||||
if (Buff.getCursor() == (Size - 4)) break;
|
||||
while (uint32_t L = Buff.readInt())
|
||||
Block->addLine(Filename, L);
|
||||
Block->addLine(Filename, L);
|
||||
}
|
||||
Buff.readInt(); // flag
|
||||
}
|
||||
@@ -154,7 +154,7 @@ bool GCOVFunction::read(GCOVBuffer &Buff, GCOVFormat Format) {
|
||||
void GCOVFunction::dump() {
|
||||
outs() << "===== " << Name << " @ " << Filename << ":" << LineNumber << "\n";
|
||||
for (SmallVector<GCOVBlock *, 16>::iterator I = Blocks.begin(),
|
||||
E = Blocks.end(); I != E; ++I)
|
||||
E = Blocks.end(); I != E; ++I)
|
||||
(*I)->dump();
|
||||
}
|
||||
|
||||
@@ -162,7 +162,7 @@ void GCOVFunction::dump() {
|
||||
/// reading .gcno and .gcda files.
|
||||
void GCOVFunction::collectLineCounts(FileInfo &FI) {
|
||||
for (SmallVector<GCOVBlock *, 16>::iterator I = Blocks.begin(),
|
||||
E = Blocks.end(); I != E; ++I)
|
||||
E = Blocks.end(); I != E; ++I)
|
||||
(*I)->collectLineCounts(FI);
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ void GCOVBlock::addLine(StringRef Filename, uint32_t LineNo) {
|
||||
/// reading .gcno and .gcda files.
|
||||
void GCOVBlock::collectLineCounts(FileInfo &FI) {
|
||||
for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
|
||||
E = Lines.end(); I != E; ++I)
|
||||
E = Lines.end(); I != E; ++I)
|
||||
I->second->collectLineCounts(FI, I->first(), Counter);
|
||||
}
|
||||
|
||||
@@ -196,14 +196,14 @@ void GCOVBlock::dump() {
|
||||
if (!Edges.empty()) {
|
||||
outs() << "\tEdges : ";
|
||||
for (SmallVector<uint32_t, 16>::iterator I = Edges.begin(), E = Edges.end();
|
||||
I != E; ++I)
|
||||
I != E; ++I)
|
||||
outs() << (*I) << ",";
|
||||
outs() << "\n";
|
||||
}
|
||||
if (!Lines.empty()) {
|
||||
outs() << "\tLines : ";
|
||||
for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
|
||||
LE = Lines.end(); LI != LE; ++LI) {
|
||||
LE = Lines.end(); LI != LE; ++LI) {
|
||||
outs() << LI->first() << " -> ";
|
||||
LI->second->dump();
|
||||
outs() << "\n";
|
||||
@@ -217,16 +217,16 @@ void GCOVBlock::dump() {
|
||||
/// collectLineCounts - Collect line counts. This must be used after
|
||||
/// reading .gcno and .gcda files.
|
||||
void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename,
|
||||
uint32_t Count) {
|
||||
uint32_t Count) {
|
||||
for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(),
|
||||
E = Lines.end(); I != E; ++I)
|
||||
E = Lines.end(); I != E; ++I)
|
||||
FI.addLineCount(Filename, *I, Count);
|
||||
}
|
||||
|
||||
/// dump - Dump GCOVLines content on standard out for debugging purposes.
|
||||
void GCOVLines::dump() {
|
||||
for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(),
|
||||
E = Lines.end(); I != E; ++I)
|
||||
E = Lines.end(); I != E; ++I)
|
||||
outs() << (*I) << ",";
|
||||
}
|
||||
|
||||
@@ -266,12 +266,12 @@ void FileInfo::print() {
|
||||
StringRef AllLines = Buff.take()->getBuffer();
|
||||
for (unsigned i = 0, e = L.size(); i != e; ++i) {
|
||||
if (L[i])
|
||||
outs() << L[i] << ":\t";
|
||||
outs() << L[i] << ":\t";
|
||||
else
|
||||
outs() << " :\t";
|
||||
outs() << " :\t";
|
||||
std::pair<StringRef, StringRef> P = AllLines.split('\n');
|
||||
if (AllLines != P.first)
|
||||
outs() << P.first;
|
||||
outs() << P.first;
|
||||
outs() << "\n";
|
||||
AllLines = P.second;
|
||||
}
|
||||
|
@@ -120,13 +120,13 @@ CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
|
||||
|
||||
CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
|
||||
assert(isa<PointerType>(Ptr->getType()) &&
|
||||
"lifetime.start only applies to pointers.");
|
||||
"lifetime.start only applies to pointers.");
|
||||
Ptr = getCastedInt8PtrValue(Ptr);
|
||||
if (!Size)
|
||||
Size = getInt64(-1);
|
||||
else
|
||||
assert(Size->getType() == getInt64Ty() &&
|
||||
"lifetime.start requires the size to be an i64");
|
||||
"lifetime.start requires the size to be an i64");
|
||||
Value *Ops[] = { Size, Ptr };
|
||||
Module *M = BB->getParent()->getParent();
|
||||
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
|
||||
@@ -135,13 +135,13 @@ CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
|
||||
|
||||
CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) {
|
||||
assert(isa<PointerType>(Ptr->getType()) &&
|
||||
"lifetime.end only applies to pointers.");
|
||||
"lifetime.end only applies to pointers.");
|
||||
Ptr = getCastedInt8PtrValue(Ptr);
|
||||
if (!Size)
|
||||
Size = getInt64(-1);
|
||||
else
|
||||
assert(Size->getType() == getInt64Ty() &&
|
||||
"lifetime.end requires the size to be an i64");
|
||||
"lifetime.end requires the size to be an i64");
|
||||
Value *Ops[] = { Size, Ptr };
|
||||
Module *M = BB->getParent()->getParent();
|
||||
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
|
||||
|
Reference in New Issue
Block a user