| OLD | NEW |
| 1 // Copyright 2012 Google Inc. All Rights Reserved. | 1 // Copyright 2012 Google Inc. All Rights Reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 DCHECK(dst.reference().IsValid()); | 235 DCHECK(dst.reference().IsValid()); |
| 236 Super::jmp(dst); | 236 Super::jmp(dst); |
| 237 } | 237 } |
| 238 | 238 |
| 239 void BasicBlockAssembler::jmp(const Operand& dst) { | 239 void BasicBlockAssembler::jmp(const Operand& dst) { |
| 240 const UntypedReference& ref = dst.displacement().reference(); | 240 const UntypedReference& ref = dst.displacement().reference(); |
| 241 DCHECK(!ref.IsValid() || dst.displacement().size() == assm::kSize32Bit); | 241 DCHECK(!ref.IsValid() || dst.displacement().size() == assm::kSize32Bit); |
| 242 Super::jmp(dst); | 242 Super::jmp(dst); |
| 243 } | 243 } |
| 244 | 244 |
| 245 void BasicBlockAssembler::jmp(const Register32& dst) { |
| 246 Super::jmp(dst); |
| 247 } |
| 248 |
| 245 void BasicBlockAssembler::j(ConditionCode code, const Immediate& dst) { | 249 void BasicBlockAssembler::j(ConditionCode code, const Immediate& dst) { |
| 246 DCHECK(dst.reference().IsValid()); | 250 DCHECK(dst.reference().IsValid()); |
| 247 Super::j(code, dst); | 251 Super::j(code, dst); |
| 248 } | 252 } |
| 249 | 253 |
| 250 } // namespace block_graph | 254 } // namespace block_graph |
| OLD | NEW |