mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
whitespace hygiene
--HG-- extra : convert_revision : f96ca24c15235dba3282e3649356b6a7acf5d2e2
This commit is contained in:
parent
09708715d6
commit
603d2206c9
@ -1529,7 +1529,7 @@ namespace nanojit
|
||||
|
||||
char* LInsPrinter::formatRef(RefBuf* buf, LIns *ref, bool showImmValue)
|
||||
{
|
||||
// Give 'ref' a name if it doesn't have one.
|
||||
// Give 'ref' a name if it doesn't have one.
|
||||
const char* name = lirNameMap->lookupName(ref);
|
||||
if (!name) {
|
||||
name = lirNameMap->createName(ref);
|
||||
|
@ -360,7 +360,7 @@ namespace nanojit
|
||||
return isCses[op] == 1;
|
||||
}
|
||||
inline bool isLiveOpcode(LOpcode op) {
|
||||
return
|
||||
return
|
||||
#if defined NANOJIT_64BIT
|
||||
op == LIR_liveq ||
|
||||
#endif
|
||||
@ -592,7 +592,7 @@ namespace nanojit
|
||||
Register reg:7;
|
||||
uint32_t inAr:1; // if 1, 'arIndex' is active
|
||||
uint32_t isResultLive:1; // if 1, the instruction's result is live
|
||||
|
||||
|
||||
uint32_t arIndex:14; // index into stack frame; displ is -4*arIndex
|
||||
|
||||
LOpcode opcode:8; // instruction's opcode
|
||||
@ -652,7 +652,7 @@ namespace nanojit
|
||||
// Generally, void instructions (statements) are always live and
|
||||
// non-void instructions (expressions) are live if used by another
|
||||
// live instruction. But there are some trickier cases.
|
||||
bool isLive() const {
|
||||
bool isLive() const {
|
||||
return isV() ||
|
||||
sharedFields.isResultLive ||
|
||||
(isCall() && !callInfo()->_isPure) || // impure calls are always live
|
||||
|
Loading…
Reference in New Issue
Block a user