Home
last modified time | relevance | path

Searched refs:OperandConstraint (Results 1 – 25 of 151) sorted by relevance

1234567

/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/codegen/meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/cranelift-codegen-meta-0.44.0/src/cdsl/
H A Drecipes.rs56 pub enum OperandConstraint { enum
64 fn into(self) -> OperandConstraint { in into() argument
65 OperandConstraint::RegClass(self) in into()
70 fn into(self) -> OperandConstraint { in into() argument
71 OperandConstraint::FixedReg(self) in into()
75 impl Into<OperandConstraint> for usize {
76 fn into(self) -> OperandConstraint { in into() argument
77 OperandConstraint::TiedInput(self) in into()
81 impl Into<OperandConstraint> for Stack {
82 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/cranelift-codegen-meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/cranelift-codegen-meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/cranelift-codegen-meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cranelift-codegen-meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/cranelift-codegen-meta/src/cdsl/
H A Drecipes.rs58 pub(crate) enum OperandConstraint { enum
66 fn into(self) -> OperandConstraint { in into() argument
67 OperandConstraint::RegClass(self) in into()
72 fn into(self) -> OperandConstraint { in into() argument
73 OperandConstraint::FixedReg(self) in into()
77 impl Into<OperandConstraint> for usize {
78 fn into(self) -> OperandConstraint { in into() argument
79 OperandConstraint::TiedInput(self) in into()
83 impl Into<OperandConstraint> for Stack {
84 fn into(self) -> OperandConstraint { in into() argument
[all …]
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/codegen/meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/www/firefox/firefox-99.0/third_party/rust/cranelift-codegen-meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/cranelift-codegen-meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/lang/rust/rustc-1.58.1-src/vendor/cranelift-codegen-meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cranelift-codegen-meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/cranelift-codegen-meta/src/
H A Dgen_binemit.rs8 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/cranelift-codegen-meta-0.44.0/src/
H A Dgen_binemit.rs9 use crate::cdsl::recipes::{EncodingRecipe, OperandConstraint, Recipes};
24 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
25 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
30 OperandConstraint::RegClass(_) | OperandConstraint::Stack(_) => true, in gen_recipe()
31 OperandConstraint::FixedReg(_) | OperandConstraint::TiedInput(_) => false, in gen_recipe()
110 args: &[OperandConstraint], in unwrap_values() argument
118 OperandConstraint::RegClass(_reg_class) => { in unwrap_values()
129 OperandConstraint::Stack(stack) => { in unwrap_values()
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/codegen/meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
851 OperandConstraint::RegClass(gpr), in define()
852 OperandConstraint::FixedReg(reg_rcx), in define()
913 OperandConstraint::RegClass(fpr), in define()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/cranelift-codegen-meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
851 OperandConstraint::RegClass(gpr), in define()
852 OperandConstraint::FixedReg(reg_rcx), in define()
913 OperandConstraint::RegClass(fpr), in define()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/cranelift-codegen-meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
851 OperandConstraint::RegClass(gpr), in define()
852 OperandConstraint::FixedReg(reg_rcx), in define()
913 OperandConstraint::RegClass(fpr), in define()
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/cranelift-codegen-meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
851 OperandConstraint::RegClass(gpr), in define()
852 OperandConstraint::FixedReg(reg_rcx), in define()
913 OperandConstraint::RegClass(fpr), in define()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cranelift-codegen-meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
851 OperandConstraint::RegClass(gpr), in define()
852 OperandConstraint::FixedReg(reg_rcx), in define()
913 OperandConstraint::RegClass(fpr), in define()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/
H A Dregister-allocator-verifier.h196 struct OperandConstraint { struct
208 OperandConstraint* operand_constraints_; argument
239 static void VerifyInput(const OperandConstraint& constraint);
240 static void VerifyTemp(const OperandConstraint& constraint);
241 static void VerifyOutput(const OperandConstraint& constraint);
244 OperandConstraint* constraint);
246 const OperandConstraint* constraint);
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/cranelift-codegen-meta/src/isa/x86/
H A Drecipes.rs125 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
126 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
130 OperandConstraint::RegClass(rc_index) => { in replace_nonrex_constraints()
147 constraints: Vec<OperandConstraint>, in replace_evex_constraints() argument
148 ) -> Vec<OperandConstraint> { in replace_evex_constraints() argument
152 OperandConstraint::RegClass(rc_index) => { in replace_evex_constraints()
157 OperandConstraint::RegClass(rc_index) in replace_evex_constraints()
850 OperandConstraint::RegClass(gpr), in define()
851 OperandConstraint::FixedReg(reg_rcx), in define()
869 OperandConstraint::RegClass(gpr), in define()
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/cranelift-codegen-meta-0.44.0/src/isa/x86/
H A Drecipes.rs139 constraints: Vec<OperandConstraint>, in replace_nonrex_constraints() argument
140 ) -> Vec<OperandConstraint> { in replace_nonrex_constraints() argument
800 OperandConstraint::RegClass(gpr), in define()
818 OperandConstraint::RegClass(gpr), in define()
835 OperandConstraint::RegClass(gpr), in define()
2567 OperandConstraint::RegClass(gpr), in define()
2568 OperandConstraint::RegClass(gpr), in define()
2585 OperandConstraint::RegClass(gpr), in define()
2603 OperandConstraint::TiedInput(0), in define()
2619 OperandConstraint::RegClass(gpr), in define()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/compiler/backend/
H A Dregister-allocator-verifier.h226 struct OperandConstraint { struct
238 OperandConstraint* operand_constraints_; argument
270 static void VerifyInput(const OperandConstraint& constraint);
271 static void VerifyTemp(const OperandConstraint& constraint);
272 static void VerifyOutput(const OperandConstraint& constraint);
275 OperandConstraint* constraint);
277 const OperandConstraint* constraint);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/backend/
H A Dregister-allocator-verifier.h221 struct OperandConstraint { struct
233 OperandConstraint* operand_constraints_; argument
265 static void VerifyInput(const OperandConstraint& constraint);
266 static void VerifyTemp(const OperandConstraint& constraint);
267 static void VerifyOutput(const OperandConstraint& constraint);
270 OperandConstraint* constraint);
272 const OperandConstraint* constraint);
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/backend/
H A Dregister-allocator-verifier.h226 struct OperandConstraint { struct
238 OperandConstraint* operand_constraints_; argument
270 static void VerifyInput(const OperandConstraint& constraint);
271 static void VerifyTemp(const OperandConstraint& constraint);
272 static void VerifyOutput(const OperandConstraint& constraint);
275 OperandConstraint* constraint);
277 const OperandConstraint* constraint);

1234567