mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115923 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
218c98c284
commit
8b892ae3d6
@ -42,7 +42,7 @@ void CodeEmitterGen::reverseBits(std::vector<Record*> &Insts) {
|
|||||||
unsigned middle = (numBits + 1) / 2;
|
unsigned middle = (numBits + 1) / 2;
|
||||||
NewBI->setBit(middle, BI->getBit(middle));
|
NewBI->setBit(middle, BI->getBit(middle));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the bits in reversed order so that emitInstrOpBits will get the
|
// Update the bits in reversed order so that emitInstrOpBits will get the
|
||||||
// correct endianness.
|
// correct endianness.
|
||||||
R->getValue("Inst")->setValue(NewBI);
|
R->getValue("Inst")->setValue(NewBI);
|
||||||
@ -56,26 +56,26 @@ int CodeEmitterGen::getVariableBit(const std::string &VarName,
|
|||||||
BitsInit *BI, int bit) {
|
BitsInit *BI, int bit) {
|
||||||
if (VarBitInit *VBI = dynamic_cast<VarBitInit*>(BI->getBit(bit))) {
|
if (VarBitInit *VBI = dynamic_cast<VarBitInit*>(BI->getBit(bit))) {
|
||||||
TypedInit *TI = VBI->getVariable();
|
TypedInit *TI = VBI->getVariable();
|
||||||
|
|
||||||
if (VarInit *VI = dynamic_cast<VarInit*>(TI)) {
|
if (VarInit *VI = dynamic_cast<VarInit*>(TI)) {
|
||||||
if (VI->getName() == VarName) return VBI->getBitNum();
|
if (VI->getName() == VarName) return VBI->getBitNum();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void CodeEmitterGen::run(raw_ostream &o) {
|
void CodeEmitterGen::run(raw_ostream &o) {
|
||||||
CodeGenTarget Target;
|
CodeGenTarget Target;
|
||||||
std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
|
std::vector<Record*> Insts = Records.getAllDerivedDefinitions("Instruction");
|
||||||
|
|
||||||
// For little-endian instruction bit encodings, reverse the bit order
|
// For little-endian instruction bit encodings, reverse the bit order
|
||||||
if (Target.isLittleEndianEncoding()) reverseBits(Insts);
|
if (Target.isLittleEndianEncoding()) reverseBits(Insts);
|
||||||
|
|
||||||
EmitSourceFileHeader("Machine Code Emitter", o);
|
EmitSourceFileHeader("Machine Code Emitter", o);
|
||||||
std::string Namespace = Insts[0]->getValueAsString("Namespace") + "::";
|
std::string Namespace = Insts[0]->getValueAsString("Namespace") + "::";
|
||||||
|
|
||||||
const std::vector<const CodeGenInstruction*> &NumberedInstructions =
|
const std::vector<const CodeGenInstruction*> &NumberedInstructions =
|
||||||
Target.getInstructionsByEnumValue();
|
Target.getInstructionsByEnumValue();
|
||||||
|
|
||||||
@ -91,12 +91,12 @@ void CodeEmitterGen::run(raw_ostream &o) {
|
|||||||
IN != EN; ++IN) {
|
IN != EN; ++IN) {
|
||||||
const CodeGenInstruction *CGI = *IN;
|
const CodeGenInstruction *CGI = *IN;
|
||||||
Record *R = CGI->TheDef;
|
Record *R = CGI->TheDef;
|
||||||
|
|
||||||
if (R->getValueAsString("Namespace") == "TargetOpcode") {
|
if (R->getValueAsString("Namespace") == "TargetOpcode") {
|
||||||
o << " 0U,\n";
|
o << " 0U,\n";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
||||||
|
|
||||||
// Start by filling in fixed values...
|
// Start by filling in fixed values...
|
||||||
@ -109,10 +109,10 @@ void CodeEmitterGen::run(raw_ostream &o) {
|
|||||||
o << " " << Value << "U," << '\t' << "// " << R->getName() << "\n";
|
o << " " << Value << "U," << '\t' << "// " << R->getName() << "\n";
|
||||||
}
|
}
|
||||||
o << " 0U\n };\n";
|
o << " 0U\n };\n";
|
||||||
|
|
||||||
// Map to accumulate all the cases.
|
// Map to accumulate all the cases.
|
||||||
std::map<std::string, std::vector<std::string> > CaseMap;
|
std::map<std::string, std::vector<std::string> > CaseMap;
|
||||||
|
|
||||||
// Construct all cases statement for each opcode
|
// Construct all cases statement for each opcode
|
||||||
for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end();
|
for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end();
|
||||||
IC != EC; ++IC) {
|
IC != EC; ++IC) {
|
||||||
@ -125,7 +125,7 @@ void CodeEmitterGen::run(raw_ostream &o) {
|
|||||||
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
BitsInit *BI = R->getValueAsBitsInit("Inst");
|
||||||
const std::vector<RecordVal> &Vals = R->getValues();
|
const std::vector<RecordVal> &Vals = R->getValues();
|
||||||
CodeGenInstruction &CGI = Target.getInstruction(R);
|
CodeGenInstruction &CGI = Target.getInstruction(R);
|
||||||
|
|
||||||
// Loop over all of the fields in the instruction, determining which are the
|
// Loop over all of the fields in the instruction, determining which are the
|
||||||
// operands to the instruction.
|
// operands to the instruction.
|
||||||
unsigned op = 0;
|
unsigned op = 0;
|
||||||
@ -135,17 +135,17 @@ void CodeEmitterGen::run(raw_ostream &o) {
|
|||||||
// instead of doing it bit-by-bit, saving a lot in runtime cost.
|
// instead of doing it bit-by-bit, saving a lot in runtime cost.
|
||||||
const std::string &VarName = Vals[i].getName();
|
const std::string &VarName = Vals[i].getName();
|
||||||
bool gotOp = false;
|
bool gotOp = false;
|
||||||
|
|
||||||
for (int bit = BI->getNumBits()-1; bit >= 0; ) {
|
for (int bit = BI->getNumBits()-1; bit >= 0; ) {
|
||||||
int varBit = getVariableBit(VarName, BI, bit);
|
int varBit = getVariableBit(VarName, BI, bit);
|
||||||
|
|
||||||
if (varBit == -1) {
|
if (varBit == -1) {
|
||||||
--bit;
|
--bit;
|
||||||
} else {
|
} else {
|
||||||
int beginInstBit = bit;
|
int beginInstBit = bit;
|
||||||
int beginVarBit = varBit;
|
int beginVarBit = varBit;
|
||||||
int N = 1;
|
int N = 1;
|
||||||
|
|
||||||
for (--bit; bit >= 0;) {
|
for (--bit; bit >= 0;) {
|
||||||
varBit = getVariableBit(VarName, BI, bit);
|
varBit = getVariableBit(VarName, BI, bit);
|
||||||
if (varBit == -1 || varBit != (beginVarBit - N)) break;
|
if (varBit == -1 || varBit != (beginVarBit - N)) break;
|
||||||
@ -158,18 +158,18 @@ void CodeEmitterGen::run(raw_ostream &o) {
|
|||||||
/// emitter, skip it.
|
/// emitter, skip it.
|
||||||
while (CGI.isFlatOperandNotEmitted(op))
|
while (CGI.isFlatOperandNotEmitted(op))
|
||||||
++op;
|
++op;
|
||||||
|
|
||||||
Case += " // op: " + VarName + "\n"
|
Case += " // op: " + VarName + "\n"
|
||||||
+ " op = getMachineOpValue(MI, MI.getOperand("
|
+ " op = getMachineOpValue(MI, MI.getOperand("
|
||||||
+ utostr(op++) + "));\n";
|
+ utostr(op++) + "));\n";
|
||||||
gotOp = true;
|
gotOp = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned opMask = ~0U >> (32-N);
|
unsigned opMask = ~0U >> (32-N);
|
||||||
int opShift = beginVarBit - N + 1;
|
int opShift = beginVarBit - N + 1;
|
||||||
opMask <<= opShift;
|
opMask <<= opShift;
|
||||||
opShift = beginInstBit - beginVarBit;
|
opShift = beginInstBit - beginVarBit;
|
||||||
|
|
||||||
if (opShift > 0) {
|
if (opShift > 0) {
|
||||||
Case += " Value |= (op & " + utostr(opMask) + "U) << "
|
Case += " Value |= (op & " + utostr(opMask) + "U) << "
|
||||||
+ itostr(opShift) + ";\n";
|
+ itostr(opShift) + ";\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user