Fix spelling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9027 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-10-10 17:57:28 +00:00
parent 452fea9972
commit cf00c4ab3b
39 changed files with 83 additions and 81 deletions

View File

@ -81,7 +81,7 @@ static bool isSync(const CallInst& CI) {
// class Cilkifier // class Cilkifier
// //
// Code generation pass that transforms code to identify where Cilk keywords // Code generation pass that transforms code to identify where Cilk keywords
// should be inserted. This relies on dis -c to print out the keywords. // should be inserted. This relies on `llvm-dis -c' to print out the keywords.
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@ -167,7 +167,7 @@ void Cilkifier::DFSVisitInstr(Instruction* I,
else else
syncI = new CallInst(DummySyncFunc, std::vector<Value*>(), "", I); syncI = new CallInst(DummySyncFunc, std::vector<Value*>(), "", I);
// Remember the sync for each spawn to eliminate rendundant ones later // Remember the sync for each spawn to eliminate redundant ones later
spawnToSyncsMap[cast<CallInst>(root)].insert(syncI); spawnToSyncsMap[cast<CallInst>(root)].insert(syncI);
return; return;
@ -494,7 +494,7 @@ bool Parallelize::run(Module& M)
#undef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS #undef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS
#ifdef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS #ifdef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS
// Use this undecipherable STLese because erase invalidates iterators. // Use this indecipherable STLese because erase invalidates iterators.
// Otherwise we have to copy sets as above. // Otherwise we have to copy sets as above.
hash_set<Function*>::iterator extrasBegin = hash_set<Function*>::iterator extrasBegin =
std::remove_if(parallelFunctions.begin(), parallelFunctions.end(), std::remove_if(parallelFunctions.begin(), parallelFunctions.end(),

View File

@ -151,9 +151,9 @@ static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy); SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy);
if (PI == SrcST->end()) return false; // No named types, do nothing. if (PI == SrcST->end()) return false; // No named types, do nothing.
// Some types cannot be resolved immediately becuse they depend on other types // Some types cannot be resolved immediately because they depend on other
// being resolved to each other first. This contains a list of types we are // types being resolved to each other first. This contains a list of types we
// waiting to recheck. // are waiting to recheck.
std::vector<std::string> DelayedTypesToResolve; std::vector<std::string> DelayedTypesToResolve;
const SymbolTable::VarMap &VM = PI->second; const SymbolTable::VarMap &VM = PI->second;

View File

@ -132,7 +132,7 @@ bool MappingInfoAsmPrinter::doInitialization(Module &M) {
/// Function. MachineBasicBlocks are numbered from begin() to end() /// Function. MachineBasicBlocks are numbered from begin() to end()
/// in the Function's corresponding MachineFunction. Each successive /// in the Function's corresponding MachineFunction. Each successive
/// MachineBasicBlock increments the numbering by the number of instructions /// MachineBasicBlock increments the numbering by the number of instructions
/// it contains. The side-effect of this method is to fill in the paramete /// it contains. The side-effect of this method is to fill in the parameter
/// KEY with the mapping of MachineBasicBlocks to numbers. KEY /// KEY with the mapping of MachineBasicBlocks to numbers. KEY
/// is keyed on MachineInstrs, so each MachineBasicBlock is represented /// is keyed on MachineInstrs, so each MachineBasicBlock is represented
/// therein by its first MachineInstr. /// therein by its first MachineInstr.

View File

@ -366,10 +366,11 @@ void JITResolver::CompilationCallback() {
RestoreRegisters(DoubleFP, FSR, FPRS, CCR); RestoreRegisters(DoubleFP, FSR, FPRS, CCR);
// Change the return address to reexecute the restore, then the jump. However, // Change the return address to re-execute the restore, then the jump.
// we can't just modify %i7 here, because we return to the function that will // However, we can't just modify %i7 here, because we return to the function
// restore the floating-point registers for us. Thus, we just return the value // that will restore the floating-point registers for us. Thus, we just return
// we want it to be, and the parent will take care of setting %i7 correctly. // the value we want it to be, and the parent will take care of setting %i7
// correctly.
DEBUG(std::cerr << "Callback returning to: 0x" DEBUG(std::cerr << "Callback returning to: 0x"
<< std::hex << (CameFrom-Offset-12) << "\n"); << std::hex << (CameFrom-Offset-12) << "\n");
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9) #if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
@ -482,7 +483,7 @@ SparcV9CodeEmitter::getRealRegNum(unsigned fakeReg,
// only numbered 0-31, hence can already fit into 5 bits (and 6) // only numbered 0-31, hence can already fit into 5 bits (and 6)
DEBUG(std::cerr << "FP single reg, returning: " << fakeReg << "\n"); DEBUG(std::cerr << "FP single reg, returning: " << fakeReg << "\n");
} else if (regType == UltraSparcRegInfo::FPDoubleRegType) { } else if (regType == UltraSparcRegInfo::FPDoubleRegType) {
// FIXME: This assumes that we only have 5-bit register fiels! // FIXME: This assumes that we only have 5-bit register fields!
// From Sparc Manual, page 40. // From Sparc Manual, page 40.
// The bit layout becomes: b[4], b[3], b[2], b[1], b[5] // The bit layout becomes: b[4], b[3], b[2], b[1], b[5]
fakeReg |= (fakeReg >> 5) & 1; fakeReg |= (fakeReg >> 5) & 1;
@ -624,7 +625,7 @@ int64_t SparcV9CodeEmitter::getMachineOpValue(MachineInstr &MI,
int64_t CallInstTarget = (rv - CurrPC) >> 2; int64_t CallInstTarget = (rv - CurrPC) >> 2;
if (CallInstTarget >= (1<<29) || CallInstTarget <= -(1<<29)) { if (CallInstTarget >= (1<<29) || CallInstTarget <= -(1<<29)) {
DEBUG(std::cerr << "Making far call!\n"); DEBUG(std::cerr << "Making far call!\n");
// addresss is out of bounds for the 30-bit call, // address is out of bounds for the 30-bit call,
// make an indirect jump-and-link // make an indirect jump-and-link
emitFarCall(rv); emitFarCall(rv);
// this invalidates the instruction so that the call with an incorrect // this invalidates the instruction so that the call with an incorrect

View File

@ -261,7 +261,7 @@ void SparcFloatRegClass::colorIGNode(IGNode * Node,
return; return;
} else { } else {
// if we didn't find a color becuase the LR was single precision or // if we didn't find a color because the LR was single precision or
// all f32-f63 range is filled, we try to allocate a register from // all f32-f63 range is filled, we try to allocate a register from
// the f0 - f31 region // the f0 - f31 region
@ -292,7 +292,7 @@ void SparcFloatRegClass::colorIGNode(IGNode * Node,
} }
if (ColorFound >= 0) { if (ColorFound >= 0) {
LR->setColor(ColorFound); // first color found in prefered order LR->setColor(ColorFound); // first color found in preferred order
LR->markForSaveAcrossCalls(); LR->markForSaveAcrossCalls();
} else { } else {
// we are here because no color could be found // we are here because no color could be found

View File

@ -466,7 +466,7 @@ void UltraSparcRegInfo::colorMethodArgs(const Function *Meth,
} }
else { else {
// Now the arg is coming on stack. Since the LR recieved a register, // Now the arg is coming on stack. Since the LR received a register,
// we just have to load the arg on stack into that register // we just have to load the arg on stack into that register
// //
const TargetFrameInfo& frameInfo = target.getFrameInfo(); const TargetFrameInfo& frameInfo = target.getFrameInfo();
@ -522,7 +522,7 @@ void UltraSparcRegInfo::colorMethodArgs(const Function *Meth,
else { else {
// Now the arg is coming on stack. Since the LR did NOT // Now the arg is coming on stack. Since the LR did NOT
// recieved a register as well, it is allocated a stack position. We // received a register as well, it is allocated a stack position. We
// can simply change the stack position of the LR. We can do this, // can simply change the stack position of the LR. We can do this,
// since this method is called before any other method that makes // since this method is called before any other method that makes
// uses of the stack pos of the LR (e.g., updateMachineInstr) // uses of the stack pos of the LR (e.g., updateMachineInstr)

View File

@ -549,7 +549,7 @@ void FPS::handleTwoArgFP(MachineBasicBlock::iterator &I) {
/// handleSpecialFP - Handle special instructions which behave unlike other /// handleSpecialFP - Handle special instructions which behave unlike other
/// floating point instructions. This is primarily inteaded for use by pseudo /// floating point instructions. This is primarily intended for use by pseudo
/// instructions. /// instructions.
/// ///
void FPS::handleSpecialFP(MachineBasicBlock::iterator &I) { void FPS::handleSpecialFP(MachineBasicBlock::iterator &I) {

View File

@ -1214,7 +1214,7 @@ void ISel::visitDivRem(BinaryOperator &I) {
return; return;
} }
case cByte: case cShort: case cInt: case cByte: case cShort: case cInt:
break; // Small integerals, handled below... break; // Small integrals, handled below...
default: assert(0 && "Unknown class!"); default: assert(0 && "Unknown class!");
} }

View File

@ -549,7 +549,7 @@ void FPS::handleTwoArgFP(MachineBasicBlock::iterator &I) {
/// handleSpecialFP - Handle special instructions which behave unlike other /// handleSpecialFP - Handle special instructions which behave unlike other
/// floating point instructions. This is primarily inteaded for use by pseudo /// floating point instructions. This is primarily intended for use by pseudo
/// instructions. /// instructions.
/// ///
void FPS::handleSpecialFP(MachineBasicBlock::iterator &I) { void FPS::handleSpecialFP(MachineBasicBlock::iterator &I) {

View File

@ -1214,7 +1214,7 @@ void ISel::visitDivRem(BinaryOperator &I) {
return; return;
} }
case cByte: case cShort: case cInt: case cByte: case cShort: case cInt:
break; // Small integerals, handled below... break; // Small integrals, handled below...
default: assert(0 && "Unknown class!"); default: assert(0 && "Unknown class!");
} }

View File

@ -104,7 +104,7 @@ static Instruction *ConvertMallocToType(MallocInst *MI, const Type *Ty,
// If we have a scale, apply it first... // If we have a scale, apply it first...
if (Expr.Var) { if (Expr.Var) {
// Expr.Var is not neccesarily unsigned right now, insert a cast now. // Expr.Var is not necessarily unsigned right now, insert a cast now.
if (Expr.Var->getType() != Type::UIntTy) if (Expr.Var->getType() != Type::UIntTy)
Expr.Var = new CastInst(Expr.Var, Type::UIntTy, Expr.Var = new CastInst(Expr.Var, Type::UIntTy,
Expr.Var->getName()+"-uint", It); Expr.Var->getName()+"-uint", It);
@ -255,7 +255,7 @@ bool ExpressionConvertibleToType(Value *V, const Type *Ty,
// Do not Check to see if our incoming pointer can be converted // Do not Check to see if our incoming pointer can be converted
// to be a ptr to an array of the right type... because in more cases than // to be a ptr to an array of the right type... because in more cases than
// not, it is simply not analyzable because of pointer/array // not, it is simply not analyzable because of pointer/array
// discrepencies. To fix this, we will insert a cast before the GEP. // discrepancies. To fix this, we will insert a cast before the GEP.
// //
// Check to see if 'N' is an expression that can be converted to // Check to see if 'N' is an expression that can be converted to
@ -1169,7 +1169,7 @@ static void ConvertOperandToType(User *U, Value *OldVal, Value *NewVal,
Name = ""; // Make sure not to name a void call! Name = ""; // Make sure not to name a void call!
// Get an iterator to the call instruction so that we can insert casts for // Get an iterator to the call instruction so that we can insert casts for
// operands if needbe. Note that we do not require operands to be // operands if need be. Note that we do not require operands to be
// convertible, we can insert casts if they are convertible but not // convertible, we can insert casts if they are convertible but not
// compatible. The reason for this is that we prefer to have resolved // compatible. The reason for this is that we prefer to have resolved
// functions but casted arguments if possible. // functions but casted arguments if possible.

View File

@ -232,7 +232,7 @@ void DAE::RemoveDeadArgumentsFromFunction(Function *F,
bool DAE::run(Module &M) { bool DAE::run(Module &M) {
// First phase: loop through the module, determining which arguments are live. // First phase: loop through the module, determining which arguments are live.
// We assume all arguments are dead unless proven otherwise (allowing us to // We assume all arguments are dead unless proven otherwise (allowing us to
// determing that dead arguments passed into recursive functions are dead). // determine that dead arguments passed into recursive functions are dead).
// //
std::set<Argument*> LiveArguments, MaybeLiveArguments, DeadArguments; std::set<Argument*> LiveArguments, MaybeLiveArguments, DeadArguments;
std::multimap<Function*, CallSite> CallSites; std::multimap<Function*, CallSite> CallSites;

View File

@ -15,7 +15,7 @@ namespace {
if (Named == 0) return false; // No function to extract if (Named == 0) return false; // No function to extract
} }
// Make sure our result is globally accessable... // Make sure our result is globally accessible...
Named->setLinkage(GlobalValue::ExternalLinkage); Named->setLinkage(GlobalValue::ExternalLinkage);
// Mark all global variables internal // Mark all global variables internal

View File

@ -52,7 +52,7 @@ int SimpleInliner::getInlineCost(CallSite CS) {
if (Callee->use_size() == 1 && Callee->hasInternalLinkage()) if (Callee->use_size() == 1 && Callee->hasInternalLinkage())
InlineCost -= 30000; InlineCost -= 30000;
// Add to the inline quality for properties that make the call valueable to // Add to the inline quality for properties that make the call valuable to
// inline. This includes factors that indicate that the result of inlining // inline. This includes factors that indicate that the result of inlining
// the function will be optimizable. Currently this just looks at arguments // the function will be optimizable. Currently this just looks at arguments
// passed into the function. // passed into the function.

View File

@ -93,7 +93,7 @@ const Type *MutateStructTypes::ConvertType(const Type *Ty) {
} }
// AdjustIndices - Convert the indexes specifed by Idx to the new changed form // AdjustIndices - Convert the indices specified by Idx to the new changed form
// using the specified OldTy as the base type being indexed into. // using the specified OldTy as the base type being indexed into.
// //
void MutateStructTypes::AdjustIndices(const CompositeType *OldTy, void MutateStructTypes::AdjustIndices(const CompositeType *OldTy,

View File

@ -81,7 +81,7 @@ static bool isSync(const CallInst& CI) {
// class Cilkifier // class Cilkifier
// //
// Code generation pass that transforms code to identify where Cilk keywords // Code generation pass that transforms code to identify where Cilk keywords
// should be inserted. This relies on dis -c to print out the keywords. // should be inserted. This relies on `llvm-dis -c' to print out the keywords.
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@ -167,7 +167,7 @@ void Cilkifier::DFSVisitInstr(Instruction* I,
else else
syncI = new CallInst(DummySyncFunc, std::vector<Value*>(), "", I); syncI = new CallInst(DummySyncFunc, std::vector<Value*>(), "", I);
// Remember the sync for each spawn to eliminate rendundant ones later // Remember the sync for each spawn to eliminate redundant ones later
spawnToSyncsMap[cast<CallInst>(root)].insert(syncI); spawnToSyncsMap[cast<CallInst>(root)].insert(syncI);
return; return;
@ -494,7 +494,7 @@ bool Parallelize::run(Module& M)
#undef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS #undef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS
#ifdef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS #ifdef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS
// Use this undecipherable STLese because erase invalidates iterators. // Use this indecipherable STLese because erase invalidates iterators.
// Otherwise we have to copy sets as above. // Otherwise we have to copy sets as above.
hash_set<Function*>::iterator extrasBegin = hash_set<Function*>::iterator extrasBegin =
std::remove_if(parallelFunctions.begin(), parallelFunctions.end(), std::remove_if(parallelFunctions.begin(), parallelFunctions.end(),

View File

@ -174,7 +174,7 @@ void Graph::addNode(Node *nd){
//add an edge //add an edge
//this adds an edge ONLY when //this adds an edge ONLY when
//the edge to be added doesn not already exist //the edge to be added does not already exist
//we "equate" two edges here only with their //we "equate" two edges here only with their
//end points //end points
void Graph::addEdge(Edge ed, int w){ void Graph::addEdge(Edge ed, int w){
@ -497,7 +497,7 @@ void Graph::makeUnDirectional(){
//reverse the sign of weights on edges //reverse the sign of weights on edges
//this way, max-spanning tree could be obtained //this way, max-spanning tree could be obtained
//usin min-spanning tree, and vice versa //using min-spanning tree, and vice versa
void Graph::reverseWts(){ void Graph::reverseWts(){
vector<Node *> allNodes=getAllNodes(); vector<Node *> allNodes=getAllNodes();
for(vector<Node *>::iterator NI=allNodes.begin(), NE=allNodes.end(); NI!=NE; for(vector<Node *>::iterator NI=allNodes.begin(), NE=allNodes.end(); NI!=NE;

View File

@ -1,6 +1,6 @@
//===-- GrapAuxillary.cpp- Auxillary functions on graph ----------*- C++ -*--=// //===-- GrapAuxiliary.cpp- Auxiliary functions on graph ----------*- C++ -*--=//
// //
//auxillary function associated with graph: they //auxiliary function associated with graph: they
//all operate on graph, and help in inserting //all operate on graph, and help in inserting
//instrumentation for trace generation //instrumentation for trace generation
// //
@ -132,7 +132,7 @@ int valueAssignmentToEdges(Graph& g, map<Node *, int> nodePriority,
} }
//This is a helper function to get the edge increments //This is a helper function to get the edge increments
//This is used in conjuntion with inc_DFS //This is used in conjunction with inc_DFS
//to get the edge increments //to get the edge increments
//Edge increment implies assigning a value to all the edges in the graph //Edge increment implies assigning a value to all the edges in the graph
//such that if we traverse along any path from root to exit, and //such that if we traverse along any path from root to exit, and
@ -144,7 +144,7 @@ static int inc_Dir(Edge e, Edge f){
if(e.isNull()) if(e.isNull())
return 1; return 1;
//check that the edges must have atleast one common endpoint //check that the edges must have at least one common endpoint
assert(*(e.getFirst())==*(f.getFirst()) || assert(*(e.getFirst())==*(f.getFirst()) ||
*(e.getFirst())==*(f.getSecond()) || *(e.getFirst())==*(f.getSecond()) ||
*(e.getSecond())==*(f.getFirst()) || *(e.getSecond())==*(f.getFirst()) ||

View File

@ -1,6 +1,6 @@
//===-- ProfilePaths.cpp - interface to insert instrumentation ---*- C++ -*--=// //===-- ProfilePaths.cpp - interface to insert instrumentation ---*- C++ -*--=//
// //
// This inserts intrumentation for counting // This inserts instrumentation for counting
// execution of paths though a given function // execution of paths though a given function
// Its implemented as a "Function" Pass, and called using opt // Its implemented as a "Function" Pass, and called using opt
// //
@ -13,7 +13,7 @@
// //
// The algorithms work on a Graph constructed over the nodes // The algorithms work on a Graph constructed over the nodes
// made from Basic Blocks: The transformations then take place on // made from Basic Blocks: The transformations then take place on
// the constucted graph (implementation in Graph.cpp and GraphAuxillary.cpp) // the constructed graph (implementation in Graph.cpp and GraphAuxiliary.cpp)
// and finally, appropriate instrumentation is placed over suitable edges. // and finally, appropriate instrumentation is placed over suitable edges.
// (code inserted through EdgeCode.cpp). // (code inserted through EdgeCode.cpp).
// //
@ -81,7 +81,7 @@ bool ProfilePaths::runOnFunction(Function &F){
Node *tmp; Node *tmp;
Node *exitNode = 0, *startNode = 0; Node *exitNode = 0, *startNode = 0;
// The nodes must be uniquesly identified: // The nodes must be uniquely identified:
// That is, no two nodes must hav same BB* // That is, no two nodes must hav same BB*
for (Function::iterator BB = F.begin(), BE = F.end(); BB != BE; ++BB) { for (Function::iterator BB = F.begin(), BE = F.end(); BB != BE; ++BB) {
@ -93,7 +93,7 @@ bool ProfilePaths::runOnFunction(Function &F){
startNode=nd; startNode=nd;
} }
// now do it againto insert edges // now do it again to insert edges
for (Function::iterator BB = F.begin(), BE = F.end(); BB != BE; ++BB){ for (Function::iterator BB = F.begin(), BE = F.end(); BB != BE; ++BB){
Node *nd=findBB(nodes, BB); Node *nd=findBB(nodes, BB);
assert(nd && "No node for this edge!"); assert(nd && "No node for this edge!");
@ -174,7 +174,7 @@ bool ProfilePaths::runOnFunction(Function &F){
if(fr->getParent()->getName() == "main"){ if(fr->getParent()->getName() == "main"){
//intialize threshold //initialize threshold
// FIXME: THIS IS HORRIBLY BROKEN. FUNCTION PASSES CANNOT DO THIS, EXCEPT // FIXME: THIS IS HORRIBLY BROKEN. FUNCTION PASSES CANNOT DO THIS, EXCEPT
// IN THEIR INITIALIZE METHOD!! // IN THEIR INITIALIZE METHOD!!

View File

@ -259,7 +259,7 @@ bool ADCE::doADCE() {
// Loop over all of the instructions in the function, telling dead // Loop over all of the instructions in the function, telling dead
// instructions to drop their references. This is so that the next sweep // instructions to drop their references. This is so that the next sweep
// over the program can safely delete dead instructions without other dead // over the program can safely delete dead instructions without other dead
// instructions still refering to them. // instructions still referring to them.
// //
dropReferencesOfDeadInstructionsInLiveBlock(I); dropReferencesOfDeadInstructionsInLiveBlock(I);
@ -328,9 +328,9 @@ bool ADCE::doADCE() {
if (LastNode == 0) { // No postdominator! if (LastNode == 0) { // No postdominator!
// Call RemoveSuccessor to transmogrify the terminator instruction // Call RemoveSuccessor to transmogrify the terminator instruction
// to not contain the outgoing branch, or to create a new // to not contain the outgoing branch, or to create a new
// terminator if the form fundementally changes (ie unconditional // terminator if the form fundamentally changes (i.e.,
// branch to return). Note that this will change a branch into an // unconditional branch to return). Note that this will change a
// infinite loop into a return instruction! // branch into an infinite loop into a return instruction!
// //
RemoveSuccessor(TI, i); RemoveSuccessor(TI, i);
@ -378,7 +378,7 @@ bool ADCE::doADCE() {
// Now loop over all of the instructions in the basic block, telling // Now loop over all of the instructions in the basic block, telling
// dead instructions to drop their references. This is so that the next // dead instructions to drop their references. This is so that the next
// sweep over the program can safely delete dead instructions without // sweep over the program can safely delete dead instructions without
// other dead instructions still refering to them. // other dead instructions still referring to them.
// //
dropReferencesOfDeadInstructionsInLiveBlock(BB); dropReferencesOfDeadInstructionsInLiveBlock(BB);
} }

View File

@ -121,7 +121,7 @@ namespace {
void setReplacement(Value *Repl) { Replacement = Repl; } void setReplacement(Value *Repl) { Replacement = Repl; }
// getRelation - return the relationship entry for the specified value. // getRelation - return the relationship entry for the specified value.
// This can invalidate references to other Relation's, so use it carefully. // This can invalidate references to other Relations, so use it carefully.
// //
Relation &getRelation(Value *V) { Relation &getRelation(Value *V) {
// Binary search for V's entry... // Binary search for V's entry...
@ -896,7 +896,7 @@ void CEE::PropagateRelation(Instruction::BinaryOps Opcode, Value *Op0,
return; return;
} }
// If the information propogted is new, then we want process the uses of this // If the information propagated is new, then we want process the uses of this
// instruction to propagate the information down to them. // instruction to propagate the information down to them.
// //
if (Op1R.incorporate(Opcode, VI)) if (Op1R.incorporate(Opcode, VI))

View File

@ -193,7 +193,7 @@ Instruction *GCSE::EliminateCSE(Instruction *I, Instruction *Other) {
Instruction *Ret = 0; Instruction *Ret = 0;
if (BB1 == BB2) { if (BB1 == BB2) {
// Eliminate the second occuring instruction. Add all uses of the second // Eliminate the second occurring instruction. Add all uses of the second
// instruction to the worklist. // instruction to the worklist.
// //
// Scan the basic block looking for the "first" instruction // Scan the basic block looking for the "first" instruction
@ -242,7 +242,7 @@ Instruction *GCSE::EliminateCSE(Instruction *I, Instruction *Other) {
// ... X+Y ... // ... X+Y ...
// } // }
// //
// In thiscase, the expression would be hoisted to outside the 'if' stmt, // In this case, the expression would be hoisted to outside the 'if' stmt,
// causing the expression to be evaluated, even for the if (d) path, which // causing the expression to be evaluated, even for the if (d) path, which
// could cause problems, if, for example, it caused a divide by zero. In // could cause problems, if, for example, it caused a divide by zero. In
// general the problem this case is trying to solve is better addressed with // general the problem this case is trying to solve is better addressed with

View File

@ -50,7 +50,7 @@ static bool TransformLoop(LoopInfo *Loops, Loop *Loop) {
BasicBlock::iterator AfterPHIIt = Header->begin(); BasicBlock::iterator AfterPHIIt = Header->begin();
for (; PHINode *PN = dyn_cast<PHINode>(AfterPHIIt); ++AfterPHIIt) for (; PHINode *PN = dyn_cast<PHINode>(AfterPHIIt); ++AfterPHIIt)
IndVars.push_back(InductionVariable(PN, Loops)); IndVars.push_back(InductionVariable(PN, Loops));
// AfterPHIIt now points to first nonphi instruction... // AfterPHIIt now points to first non-phi instruction...
// If there are no phi nodes in this basic block, there can't be indvars... // If there are no phi nodes in this basic block, there can't be indvars...
if (IndVars.empty()) return Changed; if (IndVars.empty()) return Changed;

View File

@ -77,7 +77,7 @@ namespace {
/// HoistRegion - Walk the specified region of the CFG (defined by all /// HoistRegion - Walk the specified region of the CFG (defined by all
/// blocks dominated by the specified block, and that are in the current /// blocks dominated by the specified block, and that are in the current
/// loop) in depth first order w.r.t the DominatorTree. This allows us to /// loop) in depth first order w.r.t the DominatorTree. This allows us to
/// visit defintions before uses, allowing us to hoist a loop body in one /// visit definitions before uses, allowing us to hoist a loop body in one
/// pass without iteration. /// pass without iteration.
/// ///
void HoistRegion(DominatorTree::Node *N); void HoistRegion(DominatorTree::Node *N);
@ -240,7 +240,7 @@ void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
/// HoistRegion - Walk the specified region of the CFG (defined by all blocks /// HoistRegion - Walk the specified region of the CFG (defined by all blocks
/// dominated by the specified block, and that are in the current loop) in depth /// dominated by the specified block, and that are in the current loop) in depth
/// first order w.r.t the DominatorTree. This allows us to visit defintions /// first order w.r.t the DominatorTree. This allows us to visit definitions
/// before uses, allowing us to hoist a loop body in one pass without iteration. /// before uses, allowing us to hoist a loop body in one pass without iteration.
/// ///
void LICM::HoistRegion(DominatorTree::Node *N) { void LICM::HoistRegion(DominatorTree::Node *N) {

View File

@ -1,7 +1,7 @@
//===- PiNodeInsertion.cpp - Insert Pi nodes into a program ---------------===// //===- PiNodeInsertion.cpp - Insert Pi nodes into a program ---------------===//
// //
// PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks // PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks
// that are preceeded by a conditional branch, where the branch gives // that are preceded by a conditional branch, where the branch gives
// information about the operands of the condition. For example, this C code: // information about the operands of the condition. For example, this C code:
// if (x == 0) { ... = x + 4; // if (x == 0) { ... = x + 4;
// becomes: // becomes:
@ -15,7 +15,7 @@
// saying that X has a value of 0 in this scope. The power of this analysis // saying that X has a value of 0 in this scope. The power of this analysis
// information is that "in the scope" translates to "for all uses of x2". // information is that "in the scope" translates to "for all uses of x2".
// //
// This special form of Phi node is refered to as a Pi node, following the // This special form of Phi node is referred to as a Pi node, following the
// terminology defined in the "Array Bounds Checks on Demand" paper. // terminology defined in the "Array Bounds Checks on Demand" paper.
// //
// As a really trivial example of what the Pi nodes are good for, this pass // As a really trivial example of what the Pi nodes are good for, this pass

View File

@ -499,7 +499,7 @@ void SCCP::visitPHINode(PHINode &PN) {
// this is the case, the PHI remains undefined. // this is the case, the PHI remains undefined.
// //
if (OperandVal) if (OperandVal)
markConstant(PNIV, &PN, OperandVal); // Aquire operand value markConstant(PNIV, &PN, OperandVal); // Acquire operand value
} }
void SCCP::visitTerminatorInst(TerminatorInst &TI) { void SCCP::visitTerminatorInst(TerminatorInst &TI) {

View File

@ -64,7 +64,7 @@ const Type *getStructOffsetType(const Type *Ty, unsigned &Offset,
Indices.push_back(ConstantSInt::get(Type::LongTy, Offset/ChildSize)); Indices.push_back(ConstantSInt::get(Type::LongTy, Offset/ChildSize));
ThisOffset = (Offset/ChildSize)*ChildSize; ThisOffset = (Offset/ChildSize)*ChildSize;
} else { } else {
Offset = 0; // Return the offset that we were able to acheive Offset = 0; // Return the offset that we were able to achieve
return Ty; // Return the leaf type return Ty; // Return the leaf type
} }

View File

@ -64,7 +64,7 @@ void ReplaceInstWithInst(Instruction *From, Instruction *To) {
// degree of the current basic block, the actual terminator instruction itself // degree of the current basic block, the actual terminator instruction itself
// may have to be changed. In the case where the last successor of the block is // may have to be changed. In the case where the last successor of the block is
// deleted, a return instruction is inserted in its place which can cause a // deleted, a return instruction is inserted in its place which can cause a
// suprising change in program behavior if it is not expected. // surprising change in program behavior if it is not expected.
// //
void RemoveSuccessor(TerminatorInst *TI, unsigned SuccNum) { void RemoveSuccessor(TerminatorInst *TI, unsigned SuccNum) {
assert(SuccNum < TI->getNumSuccessors() && assert(SuccNum < TI->getNumSuccessors() &&

View File

@ -106,7 +106,7 @@ void SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P) {
DS->addBasicBlock(NewBB, DomSet); DS->addBasicBlock(NewBB, DomSet);
} }
// Should we update ImmdediateDominator information? // Should we update ImmediateDominator information?
if (ImmediateDominators *ID = P->getAnalysisToUpdate<ImmediateDominators>()) { if (ImmediateDominators *ID = P->getAnalysisToUpdate<ImmediateDominators>()) {
// TIBB is the new immediate dominator for NewBB. NewBB doesn't dominate // TIBB is the new immediate dominator for NewBB. NewBB doesn't dominate
// anything. // anything.

View File

@ -14,7 +14,7 @@
/// CloneModule - Return an exact copy of the specified module. This is not as /// CloneModule - Return an exact copy of the specified module. This is not as
/// easy as it might seem because we have to worry about making copies of global /// easy as it might seem because we have to worry about making copies of global
/// variables and functions, and making their (intializers and references, /// variables and functions, and making their (initializers and references,
/// respectively) refer to the right globals. /// respectively) refer to the right globals.
/// ///
Module *CloneModule(const Module *M) { Module *CloneModule(const Module *M) {

View File

@ -151,9 +151,9 @@ static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy); SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy);
if (PI == SrcST->end()) return false; // No named types, do nothing. if (PI == SrcST->end()) return false; // No named types, do nothing.
// Some types cannot be resolved immediately becuse they depend on other types // Some types cannot be resolved immediately because they depend on other
// being resolved to each other first. This contains a list of types we are // types being resolved to each other first. This contains a list of types we
// waiting to recheck. // are waiting to recheck.
std::vector<std::string> DelayedTypesToResolve; std::vector<std::string> DelayedTypesToResolve;
const SymbolTable::VarMap &VM = PI->second; const SymbolTable::VarMap &VM = PI->second;

View File

@ -13,7 +13,7 @@
// as store-sinking that are built into LICM. // as store-sinking that are built into LICM.
// //
// Note that the simplifycfg pass will clean up blocks which are split out but // Note that the simplifycfg pass will clean up blocks which are split out but
// end up being unnecessary, so usage of this pass does not neccesarily // end up being unnecessary, so usage of this pass does not necessarily
// pessimize generated code. // pessimize generated code.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
@ -203,7 +203,7 @@ void Preheaders::InsertPreheaderForLoop(Loop *L) {
SplitBlockPredecessors(Header, ".preheader", OutsideBlocks); SplitBlockPredecessors(Header, ".preheader", OutsideBlocks);
//===--------------------------------------------------------------------===// //===--------------------------------------------------------------------===//
// Update analysis results now that we have preformed the transformation // Update analysis results now that we have performed the transformation
// //
// We know that we have loop information to update... update it now. // We know that we have loop information to update... update it now.

View File

@ -19,7 +19,7 @@
// have extra slots added to them to hold the merge edges from BB's // have extra slots added to them to hold the merge edges from BB's
// predecessors, and BB itself might have had PHI nodes in it. This function // predecessors, and BB itself might have had PHI nodes in it. This function
// returns true (failure) if the Succ BB already has a predecessor that is a // returns true (failure) if the Succ BB already has a predecessor that is a
// predecessor of BB and incoming PHI arguments would not be discernable. // predecessor of BB and incoming PHI arguments would not be discernible.
// //
// Assumption: Succ is the single successor for BB. // Assumption: Succ is the single successor for BB.
// //
@ -269,10 +269,10 @@ bool SimplifyCFG(BasicBlock *BB) {
// Delete the unconditional branch from the predecessor... // Delete the unconditional branch from the predecessor...
OnlyPred->getInstList().pop_back(); OnlyPred->getInstList().pop_back();
// Move all definitions in the succecessor to the predecessor... // Move all definitions in the successor to the predecessor...
OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList()); OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
// Make all PHI nodes that refered to BB now refer to Pred as their // Make all PHI nodes that referred to BB now refer to Pred as their
// source... // source...
BB->replaceAllUsesWith(OnlyPred); BB->replaceAllUsesWith(OnlyPred);

View File

@ -151,9 +151,9 @@ static bool LinkTypes(Module *Dest, const Module *Src, std::string *Err) {
SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy); SymbolTable::const_iterator PI = SrcST->find(Type::TypeTy);
if (PI == SrcST->end()) return false; // No named types, do nothing. if (PI == SrcST->end()) return false; // No named types, do nothing.
// Some types cannot be resolved immediately becuse they depend on other types // Some types cannot be resolved immediately because they depend on other
// being resolved to each other first. This contains a list of types we are // types being resolved to each other first. This contains a list of types we
// waiting to recheck. // are waiting to recheck.
std::vector<std::string> DelayedTypesToResolve; std::vector<std::string> DelayedTypesToResolve;
const SymbolTable::VarMap &VM = PI->second; const SymbolTable::VarMap &VM = PI->second;

View File

@ -36,7 +36,7 @@ void *__llvm_cxxeh_allocate_exception(unsigned NumBytes) throw() {
// //
llvm_cxx_exception *E = llvm_cxx_exception *E =
(llvm_cxx_exception *)malloc(NumBytes+sizeof(llvm_cxx_exception)); (llvm_cxx_exception *)malloc(NumBytes+sizeof(llvm_cxx_exception));
E->BaseException.ExceptionType = 0; // intialize to invalid E->BaseException.ExceptionType = 0; // initialize to invalid
return E+1; // return the pointer after the header return E+1; // return the pointer after the header
} }

View File

@ -91,7 +91,7 @@ public:
}; };
bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
// Clone the program to try hacking it appart... // Clone the program to try hacking it apart...
Module *M = CloneModule(BD.Program); Module *M = CloneModule(BD.Program);
// Convert list to set for fast lookup... // Convert list to set for fast lookup...
@ -153,7 +153,7 @@ public:
}; };
bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) { bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) {
// Clone the program to try hacking it appart... // Clone the program to try hacking it apart...
Module *M = CloneModule(BD.Program); Module *M = CloneModule(BD.Program);
// Convert list to set for fast lookup... // Convert list to set for fast lookup...

View File

@ -1,8 +1,8 @@
//===- OptimizerDriver.cpp - Allow BugPoint to run passes safely ----------===// //===- OptimizerDriver.cpp - Allow BugPoint to run passes safely ----------===//
// //
// This file defines an interface that allows bugpoint to run various passes // This file defines an interface that allows bugpoint to run various passes
// without the threat of a buggy pass corrupting bugpoint (of course bugpoint // without the threat of a buggy pass corrupting bugpoint (of course, bugpoint
// may have it's own bugs, but that's another story...). It acheives this by // may have its own bugs, but that's another story...). It achieves this by
// forking a copy of itself and having the child process do the optimizations. // forking a copy of itself and having the child process do the optimizations.
// If this client dies, we can always fork a new one. :) // If this client dies, we can always fork a new one. :)
// //
@ -95,7 +95,7 @@ static void RunChild(Module *Program,const std::vector<const PassInfo*> &Passes,
} }
/// runPasses - Run the specified passes on Program, outputting a bytecode file /// runPasses - Run the specified passes on Program, outputting a bytecode file
/// and writting the filename into OutputFile if successful. If the /// and writing the filename into OutputFile if successful. If the
/// optimizations fail for some reason (optimizer crashes), return true, /// optimizations fail for some reason (optimizer crashes), return true,
/// otherwise return false. If DeleteOutput is set to true, the bytecode is /// otherwise return false. If DeleteOutput is set to true, the bytecode is
/// deleted on success, and the filename string is undefined. This prints to /// deleted on success, and the filename string is undefined. This prints to

View File

@ -215,7 +215,8 @@ int main(int argc, char **argv, char **envp) {
// We always look first in the current directory when searching for libraries. // We always look first in the current directory when searching for libraries.
LibPaths.insert(LibPaths.begin(), "."); LibPaths.insert(LibPaths.begin(), ".");
// If the user specied an extra search path in their environment, respect it. // If the user specified an extra search path in their environment, respect
// it.
if (char *SearchPath = getenv("LLVM_LIB_SEARCH_PATH")) if (char *SearchPath = getenv("LLVM_LIB_SEARCH_PATH"))
LibPaths.push_back(SearchPath); LibPaths.push_back(SearchPath);

View File

@ -90,7 +90,7 @@ static inline bool Error(std::string *ErrorStr, const char *Message) {
// 1) Generate the header for the symbol table. This is a normal // 1) Generate the header for the symbol table. This is a normal
// archive member header, but it has a zero length name. // archive member header, but it has a zero length name.
// 2) For each archive member file, stat the file and parse the bytecode // 2) For each archive member file, stat the file and parse the bytecode
// Store cummulative offset (file size + header size). // Store cumulative offset (file size + header size).
// 3) Loop over all the symbols for the current member file, // 3) Loop over all the symbols for the current member file,
// add offset entry to offset vector, and add symbol name to its vector. // add offset entry to offset vector, and add symbol name to its vector.
// Note: The symbol name vector is a vector of chars to speed up calculating // Note: The symbol name vector is a vector of chars to speed up calculating
@ -206,7 +206,7 @@ bool WriteSymbolTable(std::ofstream &ArchiveFile) {
//Adjustment to offset to start files on even byte boundaries //Adjustment to offset to start files on even byte boundaries
unsigned adjust = 0; unsigned adjust = 0;
//Update offsets write symbol tabel to archive. //Update offsets write symbol table to archive.
for(unsigned i=0; i<offsets.size(); ++i) { for(unsigned i=0; i<offsets.size(); ++i) {
char output[4]; char output[4];
offsets[i] = offsets[i] + symbolTableSize + SARMAG; offsets[i] = offsets[i] + symbolTableSize + SARMAG;