mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-13 08:26:02 +00:00
Implement DISABLE_INLINE for MSVC. This required changing the position in all
forward declaration and patching tblgen to emit it right. Patch by Amine Khaldi! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -64,22 +64,22 @@ public:
|
|||||||
|
|
||||||
/// ReplaceUses - replace all uses of the old node F with the use
|
/// ReplaceUses - replace all uses of the old node F with the use
|
||||||
/// of the new node T.
|
/// of the new node T.
|
||||||
void ReplaceUses(SDValue F, SDValue T) DISABLE_INLINE {
|
DISABLE_INLINE void ReplaceUses(SDValue F, SDValue T) {
|
||||||
ISelUpdater ISU(ISelPosition);
|
ISelUpdater ISU(ISelPosition);
|
||||||
CurDAG->ReplaceAllUsesOfValueWith(F, T, &ISU);
|
CurDAG->ReplaceAllUsesOfValueWith(F, T, &ISU);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ReplaceUses - replace all uses of the old nodes F with the use
|
/// ReplaceUses - replace all uses of the old nodes F with the use
|
||||||
/// of the new nodes T.
|
/// of the new nodes T.
|
||||||
void ReplaceUses(const SDValue *F, const SDValue *T,
|
DISABLE_INLINE void ReplaceUses(const SDValue *F, const SDValue *T,
|
||||||
unsigned Num) DISABLE_INLINE {
|
unsigned Num) {
|
||||||
ISelUpdater ISU(ISelPosition);
|
ISelUpdater ISU(ISelPosition);
|
||||||
CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num, &ISU);
|
CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num, &ISU);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ReplaceUses - replace all uses of the old node F with the use
|
/// ReplaceUses - replace all uses of the old node F with the use
|
||||||
/// of the new node T.
|
/// of the new node T.
|
||||||
void ReplaceUses(SDNode *F, SDNode *T) DISABLE_INLINE {
|
DISABLE_INLINE void ReplaceUses(SDNode *F, SDNode *T) {
|
||||||
ISelUpdater ISU(ISelPosition);
|
ISelUpdater ISU(ISelPosition);
|
||||||
CurDAG->ReplaceAllUsesWith(F, T, &ISU);
|
CurDAG->ReplaceAllUsesWith(F, T, &ISU);
|
||||||
}
|
}
|
||||||
|
@@ -52,6 +52,8 @@
|
|||||||
// method "not for inlining".
|
// method "not for inlining".
|
||||||
#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
|
#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
|
||||||
#define DISABLE_INLINE __attribute__((noinline))
|
#define DISABLE_INLINE __attribute__((noinline))
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
#define DISABLE_INLINE __declspec(noinline)
|
||||||
#else
|
#else
|
||||||
#define DISABLE_INLINE
|
#define DISABLE_INLINE
|
||||||
#endif
|
#endif
|
||||||
|
@@ -35,7 +35,7 @@ namespace llvm {
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
// Debuggers puts a breakpoint in this function.
|
// Debuggers puts a breakpoint in this function.
|
||||||
void DISABLE_INLINE __jit_debug_register_code() { }
|
DISABLE_INLINE void __jit_debug_register_code() { }
|
||||||
|
|
||||||
// We put information about the JITed function in this global, which the
|
// We put information about the JITed function in this global, which the
|
||||||
// debugger reads. Make sure to specify the version statically, because the
|
// debugger reads. Make sure to specify the version statically, because the
|
||||||
|
@@ -1786,11 +1786,7 @@ void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CallerCode += ");";
|
CallerCode += ");";
|
||||||
CalleeCode += ") ";
|
CalleeCode += ") {\n";
|
||||||
// Prevent emission routines from being inlined to reduce selection
|
|
||||||
// routines stack frame sizes.
|
|
||||||
CalleeCode += "DISABLE_INLINE ";
|
|
||||||
CalleeCode += "{\n";
|
|
||||||
|
|
||||||
for (std::vector<std::string>::const_reverse_iterator
|
for (std::vector<std::string>::const_reverse_iterator
|
||||||
I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
|
I = AddedInits.rbegin(), E = AddedInits.rend(); I != E; ++I)
|
||||||
@@ -1811,6 +1807,9 @@ void DAGISelEmitter::EmitInstructionSelector(raw_ostream &OS) {
|
|||||||
} else {
|
} else {
|
||||||
EmitFuncNum = EmitFunctions.size();
|
EmitFuncNum = EmitFunctions.size();
|
||||||
EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
|
EmitFunctions.insert(std::make_pair(CalleeCode, EmitFuncNum));
|
||||||
|
// Prevent emission routines from being inlined to reduce selection
|
||||||
|
// routines stack frame sizes.
|
||||||
|
OS << "DISABLE_INLINE ";
|
||||||
OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
|
OS << "SDNode *Emit_" << utostr(EmitFuncNum) << CalleeCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user