Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: syzygy/block_graph/basic_block_assembler.cc

Issue 2535563002: Added all code for integrity check transform (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | syzygy/experimental/experimental.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | syzygy/experimental/experimental.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698