mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Make code fit in 80 columns more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36765b0c3f
commit
51a9ad93af
@ -9,11 +9,6 @@
|
||||
// 7/02/01 - Vikram Adve - Created
|
||||
//***************************************************************************
|
||||
|
||||
|
||||
//************************** System Include Files **************************/
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
//*************************** User Include Files ***************************/
|
||||
|
||||
#include "llvm/Type.h"
|
||||
@ -48,37 +43,37 @@ struct BranchPattern {
|
||||
//************************* Forward Declarations ***************************/
|
||||
|
||||
|
||||
static MachineOpCode ChooseBprInstruction (const InstructionNode* instrNode);
|
||||
static MachineOpCode ChooseBprInstruction (const InstructionNode* instrNod);
|
||||
|
||||
static MachineOpCode ChooseBccInstruction (const InstructionNode* instrNode,
|
||||
bool& isFPBranch);
|
||||
static MachineOpCode ChooseBccInstruction (const InstructionNode* instrNode,
|
||||
bool& isFPBranch);
|
||||
|
||||
static MachineOpCode ChooseBpccInstruction (const InstructionNode* instrNode,
|
||||
const BinaryOperator* setCCInstr);
|
||||
static MachineOpCode ChooseBpccInstruction (const InstructionNode* instrNode,
|
||||
const BinaryOperator* setCCInst);
|
||||
|
||||
static MachineOpCode ChooseBfpccInstruction (const InstructionNode* instrNode,
|
||||
const BinaryOperator* setCCInstr);
|
||||
static MachineOpCode ChooseBfpccInstruction (const InstructionNode* instrNode,
|
||||
const BinaryOperator* setCCInst);
|
||||
|
||||
static MachineOpCode ChooseConvertToFloatInstr(const InstructionNode* instrNode,
|
||||
const Type* opType);
|
||||
static MachineOpCode ChooseConvertToFloatInstr(const InstructionNode* instrNode,
|
||||
const Type* opType);
|
||||
|
||||
static MachineOpCode ChooseConvertToIntInstr (const InstructionNode* instrNode,
|
||||
const Type* opType);
|
||||
static MachineOpCode ChooseConvertToIntInstr (const InstructionNode* instrNode,
|
||||
const Type* opType);
|
||||
|
||||
static MachineOpCode ChooseAddInstruction (const InstructionNode* instrNode);
|
||||
static MachineOpCode ChooseAddInstruction (const InstructionNode* instrNod);
|
||||
|
||||
static MachineOpCode ChooseSubInstruction (const InstructionNode* instrNode);
|
||||
static MachineOpCode ChooseSubInstruction (const InstructionNode* instrNod);
|
||||
|
||||
static MachineOpCode ChooseFcmpInstruction (const InstructionNode* instrNode);
|
||||
static MachineOpCode ChooseFcmpInstruction (const InstructionNode* instrNod);
|
||||
|
||||
static MachineOpCode ChooseMulInstruction (const InstructionNode* instrNode,
|
||||
bool checkCasts);
|
||||
static MachineOpCode ChooseMulInstruction (const InstructionNode* instrNode,
|
||||
bool checkCasts);
|
||||
|
||||
static MachineOpCode ChooseDivInstruction (const InstructionNode* instrNode);
|
||||
static MachineOpCode ChooseDivInstruction (const InstructionNode* instrNod);
|
||||
|
||||
static MachineOpCode ChooseLoadInstruction (const Type* resultType);
|
||||
static MachineOpCode ChooseLoadInstruction (const Type* resultType);
|
||||
|
||||
static MachineOpCode ChooseStoreInstruction (const Type* valueType);
|
||||
static MachineOpCode ChooseStoreInstruction (const Type* valueType);
|
||||
|
||||
static void SetOperandsForMemInstr (MachineInstr* minstr,
|
||||
const InstructionNode* vmInstrNode,
|
||||
|
Loading…
Reference in New Issue
Block a user