Commit 2c70addc authored by zhengxing.li's avatar zhengxing.li Committed by Commit bot

X87: [turbofan] Add comments to CodeAssembler.

  port 40b5c1d4(r36842)

  original commit message:

BUG=

Review-Url: https://codereview.chromium.org/2080873003
Cr-Commit-Position: refs/heads/master@{#37124}
parent eef939b4
...@@ -606,6 +606,11 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( ...@@ -606,6 +606,11 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
case kArchTableSwitch: case kArchTableSwitch:
AssembleArchTableSwitch(instr); AssembleArchTableSwitch(instr);
break; break;
case kArchComment: {
Address comment_string = i.InputExternalReference(0).address();
__ RecordComment(reinterpret_cast<const char*>(comment_string));
break;
}
case kArchDebugBreak: case kArchDebugBreak:
__ int3(); __ int3();
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment