Minor tweaks.
This commit is contained in:
parent
f6f8be9080
commit
6b17ead43b
|
@ -37,7 +37,7 @@
|
|||
<div class="debugger-fnlist-body">
|
||||
<div class="debugger-fnlist-list">
|
||||
<table class="table table-hover">
|
||||
<tr ng-repeat="fn in functionList track by $index | filter:functionFilter | orderBy:'address'">
|
||||
<tr ng-repeat="fn in functionList track by $index | orderBy:'address'">
|
||||
<td><a xe-coderef="{{fn.address|hex32}}">{{fn.name}}</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -45,7 +45,7 @@
|
|||
</div>
|
||||
<div class="debugger-fnlist-footer">
|
||||
<div class="input-group input-group-sm">
|
||||
<input type="text" class="form-control" placeholder="Filter" ng-model="functionFilter" ui-escape="functionFilter = ''">
|
||||
<input type="text" class="form-control" placeholder="Filter" ng-model="functionFilter.$" ui-escape="functionFilter = ''">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -122,14 +122,13 @@
|
|||
<span class="value" tooltip="{{app.session.activeThread.context.fh[$index]}}">{{v|exp8}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!--
|
||||
<div class="debugger-tools-registers-container">
|
||||
<div ng-repeat="v in app.session.activeThread.context.v track by $index"
|
||||
class="debugger-tools-registers-entry vec">
|
||||
<span class="name">v{{$index}}</span> <span class="value">{{v}}</span>
|
||||
<span class="name">v{{$index}}</span>
|
||||
<span class="value">{{v}}</span>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -32,9 +32,9 @@ int InstrEmit_branch(
|
|||
// The docs say always, though...
|
||||
// Note that we do the update before we branch/call as we need it to
|
||||
// be correct for returns.
|
||||
Value* return_address = f.LoadConstant(cia + 4);
|
||||
f.SetReturnAddress(return_address);
|
||||
if (lk) {
|
||||
Value* return_address = f.LoadConstant(cia + 4);
|
||||
f.SetReturnAddress(return_address);
|
||||
f.StoreLR(return_address);
|
||||
}
|
||||
|
||||
|
|
|
@ -22,14 +22,20 @@ namespace alloy {
|
|||
namespace frontend {
|
||||
namespace ppc {
|
||||
|
||||
#define TRUNCATE_ADDRESSES 0
|
||||
|
||||
Value* CalculateEA(PPCFunctionBuilder& f, uint32_t ra, uint32_t rb) {
|
||||
#if TRUNCATE_ADDRESSES
|
||||
return f.ZeroExtend(f.Add(
|
||||
f.Truncate(f.LoadGPR(ra), INT32_TYPE),
|
||||
f.Truncate(f.LoadGPR(rb), INT32_TYPE)), INT64_TYPE);
|
||||
#else
|
||||
return f.Add(f.LoadGPR(ra), f.LoadGPR(rb));
|
||||
#endif // TRUNCATE_ADDRESSES
|
||||
}
|
||||
|
||||
Value* CalculateEA_0(PPCFunctionBuilder& f, uint32_t ra, uint32_t rb) {
|
||||
#if TRUNCATE_ADDRESSES
|
||||
if (ra) {
|
||||
return f.ZeroExtend(f.Add(
|
||||
f.Truncate(f.LoadGPR(ra), INT32_TYPE),
|
||||
|
@ -37,15 +43,27 @@ Value* CalculateEA_0(PPCFunctionBuilder& f, uint32_t ra, uint32_t rb) {
|
|||
} else {
|
||||
return f.ZeroExtend(f.Truncate(f.LoadGPR(rb), INT32_TYPE), INT64_TYPE);
|
||||
}
|
||||
#else
|
||||
if (ra) {
|
||||
return f.Add(f.LoadGPR(ra), f.LoadGPR(rb));
|
||||
} else {
|
||||
return f.LoadGPR(rb);
|
||||
}
|
||||
#endif // TRUNCATE_ADDRESSES
|
||||
}
|
||||
|
||||
Value* CalculateEA_i(PPCFunctionBuilder& f, uint32_t ra, uint64_t imm) {
|
||||
#if TRUNCATE_ADDRESSES
|
||||
return f.ZeroExtend(f.Add(
|
||||
f.Truncate(f.LoadGPR(ra), INT32_TYPE),
|
||||
f.LoadConstant((int32_t)imm)), INT64_TYPE);
|
||||
#else
|
||||
return f.Add(f.LoadGPR(ra), f.LoadConstant(imm));
|
||||
#endif // TRUNCATE_ADDRESSES
|
||||
}
|
||||
|
||||
Value* CalculateEA_0_i(PPCFunctionBuilder& f, uint32_t ra, uint64_t imm) {
|
||||
#if TRUNCATE_ADDRESSES
|
||||
if (ra) {
|
||||
return f.ZeroExtend(f.Add(
|
||||
f.Truncate(f.LoadGPR(ra), INT32_TYPE),
|
||||
|
@ -53,6 +71,13 @@ Value* CalculateEA_0_i(PPCFunctionBuilder& f, uint32_t ra, uint64_t imm) {
|
|||
} else {
|
||||
return f.ZeroExtend(f.LoadConstant((int32_t)imm), INT64_TYPE);
|
||||
}
|
||||
#else
|
||||
if (ra) {
|
||||
return f.Add(f.LoadGPR(ra), f.LoadConstant(imm));
|
||||
} else {
|
||||
return f.LoadConstant(imm);
|
||||
}
|
||||
#endif // TRUNCATE_ADDRESSES
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ void FunctionBuilder::Dump(StringBuffer* str) {
|
|||
while (block) {
|
||||
if (block == block_head_) {
|
||||
str->Append("<entry>:\n");
|
||||
} else {
|
||||
} else if (!block->label_head) {
|
||||
str->Append("<block%d>:\n", block_ordinal);
|
||||
}
|
||||
block_ordinal++;
|
||||
|
|
Loading…
Reference in New Issue