Subversion Repositories HelenOS-historic

Rev

Rev 902 | Rev 928 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 902 Rev 919
Line 61... Line 61...
61
 *
61
 *
62
 * @param va Virtual page address.
62
 * @param va Virtual page address.
63
 * @param asid Address space identifier.
63
 * @param asid Address space identifier.
64
 * @param entry The rest of TLB entry as required by TLB insertion format.
64
 * @param entry The rest of TLB entry as required by TLB insertion format.
65
 */
65
 */
66
void dtc_mapping_insert(__address va, asid_t asid, tlb_entry_t entry) {
66
void dtc_mapping_insert(__address va, asid_t asid, tlb_entry_t entry)
-
 
67
{
67
    tc_mapping_insert(va, asid, entry, true);
68
    tc_mapping_insert(va, asid, entry, true);
68
}
69
}
69
 
70
 
70
/** Insert data into instruction translation cache.
71
/** Insert data into instruction translation cache.
71
 *
72
 *
72
 * @param va Virtual page address.
73
 * @param va Virtual page address.
73
 * @param asid Address space identifier.
74
 * @param asid Address space identifier.
74
 * @param entry The rest of TLB entry as required by TLB insertion format.
75
 * @param entry The rest of TLB entry as required by TLB insertion format.
75
 */
76
 */
76
void itc_mapping_insert(__address va, asid_t asid, tlb_entry_t entry) {
77
void itc_mapping_insert(__address va, asid_t asid, tlb_entry_t entry)
-
 
78
{
77
    tc_mapping_insert(va, asid, entry, false);
79
    tc_mapping_insert(va, asid, entry, false);
78
}
80
}
79
 
81
 
80
/** Insert data into instruction or data translation cache.
82
/** Insert data into instruction or data translation cache.
81
 *
83
 *