mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-26 07:34:14 +00:00
Minor renaming
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4410 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6560b6b101
commit
33f53b554a
@ -36,9 +36,9 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// visitBasicBlock - This method is called when we are visiting a new basic
|
/// visitBasicBlock - This method is called when we are visiting a new basic
|
||||||
/// block. This simply creates a new MBasicBlock to emit code into and adds
|
/// block. This simply creates a new MachineBasicBlock to emit code into
|
||||||
/// it to the current MFunction. Subsequent visit* for instructions will be
|
/// and adds it to the current MachineFunction. Subsequent visit* for
|
||||||
/// invoked for all instructions in the basic block.
|
/// instructions will be invoked for all instructions in the basic block.
|
||||||
///
|
///
|
||||||
void visitBasicBlock(BasicBlock &LLVM_BB) {
|
void visitBasicBlock(BasicBlock &LLVM_BB) {
|
||||||
BB = new MachineBasicBlock();
|
BB = new MachineBasicBlock();
|
||||||
|
@ -36,9 +36,9 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// visitBasicBlock - This method is called when we are visiting a new basic
|
/// visitBasicBlock - This method is called when we are visiting a new basic
|
||||||
/// block. This simply creates a new MBasicBlock to emit code into and adds
|
/// block. This simply creates a new MachineBasicBlock to emit code into
|
||||||
/// it to the current MFunction. Subsequent visit* for instructions will be
|
/// and adds it to the current MachineFunction. Subsequent visit* for
|
||||||
/// invoked for all instructions in the basic block.
|
/// instructions will be invoked for all instructions in the basic block.
|
||||||
///
|
///
|
||||||
void visitBasicBlock(BasicBlock &LLVM_BB) {
|
void visitBasicBlock(BasicBlock &LLVM_BB) {
|
||||||
BB = new MachineBasicBlock();
|
BB = new MachineBasicBlock();
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//===- X86InstructionInfo.cpp - X86 Instruction Information ---------------===//
|
//===- X86InstructionInfo.cpp - X86 Instruction Information ---------------===//
|
||||||
//
|
//
|
||||||
// This file contains the X86 implementation of the MInstructionInfo class.
|
// This file contains the X86 implementation of the MachineInstrInfo class.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
// #1: Enum name - This ends up being the opcode symbol in the X86 namespace
|
// #1: Enum name - This ends up being the opcode symbol in the X86 namespace
|
||||||
// #2: Opcode name, as used by the gnu assembler
|
// #2: Opcode name, as used by the gnu assembler
|
||||||
// #3: Instruction Flags - This should be a field or'd together that contains
|
// #3: Instruction Flags - This should be a field or'd together that contains
|
||||||
// constants from the MInstructionInfo.h file.
|
// constants from the MachineInstrInfo.h file.
|
||||||
// #4: Target Specific Flags - Another bitfield containing X86 specific flags
|
// #4: Target Specific Flags - Another bitfield containing X86 specific flags
|
||||||
// that we are interested in for each instruction
|
// that we are interested in for each instruction
|
||||||
//
|
//
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//===- X86InstructionInfo.h - X86 Instruction Information ---------*-C++-*-===//
|
//===- X86InstructionInfo.h - X86 Instruction Information ---------*-C++-*-===//
|
||||||
//
|
//
|
||||||
// This file contains the X86 implementation of the MInstructionInfo class.
|
// This file contains the X86 implementation of the MachineInstrInfo class.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
@ -15,7 +15,7 @@ class X86InstructionInfo : public MachineInstrInfo {
|
|||||||
public:
|
public:
|
||||||
X86InstructionInfo();
|
X86InstructionInfo();
|
||||||
|
|
||||||
/// getRegisterInfo - MInstructionInfo is a superset of MRegister info. As
|
/// getRegisterInfo - MachineInstrInfo is a superset of MRegister info. As
|
||||||
/// such, whenever a client has an instance of instruction info, it should
|
/// such, whenever a client has an instance of instruction info, it should
|
||||||
/// always be able to get register info as well (through this method).
|
/// always be able to get register info as well (through this method).
|
||||||
///
|
///
|
||||||
|
Loading…
x
Reference in New Issue
Block a user