Lines Matching defs:isa
102 explicit Assembler(InstructionSet isa = kDefaultISA)
103 : isa_(isa),
112 VIXL_ASSERT(isa == A32);
115 VIXL_ASSERT(isa == T32);
120 explicit Assembler(size_t capacity, InstructionSet isa = kDefaultISA) = delete;
122 explicit Assembler(size_t capacity, InstructionSet isa = kDefaultISA)
124 isa_(isa),
131 VIXL_ASSERT(isa == A32);
133 VIXL_ASSERT(isa == T32);
139 Assembler(byte* buffer, size_t capacity, InstructionSet isa = kDefaultISA)
141 isa_(isa),
148 VIXL_ASSERT(isa == A32);
150 VIXL_ASSERT(isa == T32);
156 void UseInstructionSet(InstructionSet isa) {
158 USE(isa);
159 VIXL_ASSERT(isa == A32);
161 USE(isa);
162 VIXL_ASSERT(isa == T32);
164 VIXL_ASSERT((isa_ == isa) || (GetCursorOffset() == 0));
165 isa_ = isa;