MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / all

Method all

cranelift/codegen/src/ir/condcodes.rs:96–109  ·  view source on GitHub ↗

Returns a slice with all possible [IntCC] values.

()

Source from the content-addressed store, hash-verified

94impl IntCC {
95 /// Returns a slice with all possible [IntCC] values.
96 pub fn all() -> &'static [IntCC] {
97 &[
98 IntCC::Equal,
99 IntCC::NotEqual,
100 IntCC::SignedLessThan,
101 IntCC::SignedGreaterThanOrEqual,
102 IntCC::SignedGreaterThan,
103 IntCC::SignedLessThanOrEqual,
104 IntCC::UnsignedLessThan,
105 IntCC::UnsignedGreaterThanOrEqual,
106 IntCC::UnsignedGreaterThan,
107 IntCC::UnsignedLessThanOrEqual,
108 ]
109 }
110
111 /// Get the corresponding IntCC with the equal component removed.
112 /// For conditions without a zero component, this is a no-op.

Callers 15

compare_resultsMethod · 0.45
add_bindingsMethod · 0.45
at_first_entryMethod · 0.45
split_off_return_blockFunction · 0.45
shuffle_dup8_from_immMethod · 0.45
newMethod · 0.45
eqMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected