-
Notifications
You must be signed in to change notification settings - Fork 123
AArch64 Information Flow #1018
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AArch64 Information Flow #1018
Changes from all commits
9da39fd
4efb42d
b6414ff
cb6f8fd
4bd1e0c
a0af1c6
1525485
a6e5018
daaf777
93394a5
5395db2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,6 +30,7 @@ definition domain_sep_inv :: "bool \<Rightarrow> 'a :: state_ext state \<Rightar | |
| \<and> \<not> cte_wp_at ((=) (IRQHandlerCap irq)) slot s | ||
| \<and> interrupt_states s irq \<noteq> IRQSignal | ||
| \<and> interrupt_states s irq \<noteq> IRQReserved | ||
| \<and> (irq \<in> non_kernel_IRQs \<longrightarrow> interrupt_states s irq = IRQInactive) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The commit for this says |
||
| \<and> interrupt_states s = interrupt_states st))" | ||
|
|
||
| definition domain_sep_inv_cap where | ||
|
|
@@ -59,6 +60,7 @@ lemma domain_sep_inv_def2: | |
| \<and> \<not> cte_wp_at ((=) (IRQHandlerCap irq)) slot s)) \<and> | ||
| (irqs \<or> (\<forall>irq. interrupt_states s irq \<noteq> IRQSignal | ||
| \<and> interrupt_states s irq \<noteq> IRQReserved | ||
| \<and> (irq \<in> non_kernel_IRQs \<longrightarrow> interrupt_states s irq = IRQInactive) | ||
| \<and> interrupt_states s = interrupt_states st)))" | ||
| by (fastforce simp: domain_sep_inv_def) | ||
|
|
||
|
|
@@ -90,7 +92,9 @@ lemma domain_sep_inv_wp: | |
| apply (rule disjI2) | ||
| apply simp | ||
| apply (intro allI conjI) | ||
| apply (erule_tac P1="\<lambda>x. x irq \<noteq> IRQSignal" in use_valid[OF _ irq_pres], assumption) | ||
| apply (erule_tac P1="\<lambda>x. x irq \<noteq> IRQSignal" in use_valid[OF _ irq_pres], assumption) | ||
| apply blast | ||
| apply (erule use_valid[OF _ irq_pres], assumption) | ||
| apply blast | ||
| apply (erule use_valid[OF _ irq_pres], assumption) | ||
| apply blast | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.