Changeset 63568 in vbox
- Timestamp:
- Aug 16, 2016 2:07:39 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110223
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/apps/svnsync-vbox/main.c
r61907 r63568 1111 1111 #endif /* !VBOX */ 1112 1112 1113 /* TODO:It would be nice if we could set the dest repos UUID to be1113 /** @todo It would be nice if we could set the dest repos UUID to be 1114 1114 equal to the UUID of the source repos, at least optionally. That 1115 1115 way people could check out/log/diff using a local fast mirror, … … 1798 1798 db->ignore_everything = TRUE; 1799 1799 1800 /* TODO:copy over files in this directory which were already exported1800 /** @todo copy over files in this directory which were already exported 1801 1801 * due to inconsistent export settings (e.g. directory is not exported, 1802 1802 * but file in it is exported). */ … … 2582 2582 { 2583 2583 #ifdef VBOX 2584 /* TODOfix use of from/to revision numbers. */2584 /** @todo fix use of from/to revision numbers. */ 2585 2585 SVN_ERR(copy_revprops(from_session, to_session, 2586 2586 to_latest, to_latest, TRUE, pool)); -
trunk/src/bldprogs/scmrw.cpp
r63559 r63568 742 742 && (ch = pchLine[off + 4]) != ' ' 743 743 && ch != '\t' 744 && ch != ':' /* todo:*/745 && (ch != '*' || off + 5 > cchLine || pchLine[off + 5] != '/') /* todo*/744 && ch != ':' /** @todo */ 745 && (ch != '*' || off + 5 > cchLine || pchLine[off + 5] != '/') /** @todo */ 746 746 ) ) 747 747 { /* not a hit - likely */ } -
trunk/src/recompiler/VBoxRecompiler.c
r62472 r63568 854 854 case EXCP_EXECUTE_RAW: 855 855 case EXCP_EXECUTE_HM: 856 /** @todo :is it correct? No! */856 /** @todo is it correct? No! */ 857 857 rc = VINF_SUCCESS; 858 858 break; -
trunk/src/recompiler/exec.c
r60049 r63568 4499 4499 we have already translated the block once so it's probably ok. */ 4500 4500 tb_gen_code(env, pc, cs_base, flags, cflags); 4501 /* TODO:If env->pc != tb->pc (i.e. the faulting instruction was not4501 /** @todo If env->pc != tb->pc (i.e. the faulting instruction was not 4502 4502 the first in the TB) then we end up generating a whole new TB and 4503 4503 repeating the fault, which is horribly inefficient. -
trunk/src/recompiler/target-i386/translate.c
r60022 r63568 742 742 { 743 743 # if 1 744 /** @todo :once TCG codegen improves, we may want to use version744 /** @todo once TCG codegen improves, we may want to use version 745 745 from else version */ 746 746 gen_helper_check_external_event(); … … 760 760 | CPU_INTERRUPT_EXTERNAL_DMA 761 761 | CPU_INTERRUPT_EXTERNAL_HARD); 762 /** @todo :predict branch as taken */762 /** @todo predict branch as taken */ 763 763 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, skip_label); 764 764 tcg_temp_free(t0); -
trunk/src/recompiler/tcg/i386/tcg-target.c
r62230 r63568 1259 1259 int useReg2 = ((index & 3) == 3); 1260 1260 1261 /** @todo :should we make phys address accessors fastcalls - probably not a big deal */1261 /** @todo should we make phys address accessors fastcalls - probably not a big deal */ 1262 1262 /* out parameter (address), note that phys address is always 64-bit */ 1263 1263 AssertMsg(sizeof(RTGCPHYS) == 8, ("Physical address must be 64-bits, update caller\n"));
Note:
See TracChangeset
for help on using the changeset viewer.