Skip to content

Commit 0fed7c0

Browse files
committed
C++/C#: Sync identical files
1 parent fa26eed commit 0fed7c0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ class ChiInstruction extends Instruction {
19641964
final Instruction getPartial() { result = getPartialOperand().getDef() }
19651965

19661966
/**
1967-
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`.
1967+
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`, relative to the start address of the total operand.
19681968
*/
19691969
final predicate getUpdatedInterval(int startBit, int endBit) {
19701970
Construction::getIntervalUpdatedByChi(this, startBit, endBit)

cpp/ql/src/semmle/code/cpp/ir/implementation/raw/Operand.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class NonPhiMemoryOperand extends NonPhiOperand, MemoryOperand, NonPhiMemoryOper
331331

332332
/**
333333
* Holds if the operand totally overlaps with its definition and consumes the
334-
* bit range `[startBitOffset, endBitOffset)`.
334+
* bit range `[startBitOffset, endBitOffset)` relative to the start address of the definition.
335335
*/
336336
predicate getUsedInterval(int startBitOffset, int endBitOffset) {
337337
Construction::getUsedInterval(this, startBitOffset, endBitOffset)

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ class ChiInstruction extends Instruction {
19641964
final Instruction getPartial() { result = getPartialOperand().getDef() }
19651965

19661966
/**
1967-
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`.
1967+
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`, relative to the start address of the total operand.
19681968
*/
19691969
final predicate getUpdatedInterval(int startBit, int endBit) {
19701970
Construction::getIntervalUpdatedByChi(this, startBit, endBit)

cpp/ql/src/semmle/code/cpp/ir/implementation/unaliased_ssa/Operand.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class NonPhiMemoryOperand extends NonPhiOperand, MemoryOperand, NonPhiMemoryOper
331331

332332
/**
333333
* Holds if the operand totally overlaps with its definition and consumes the
334-
* bit range `[startBitOffset, endBitOffset)`.
334+
* bit range `[startBitOffset, endBitOffset)` relative to the start address of the definition.
335335
*/
336336
predicate getUsedInterval(int startBitOffset, int endBitOffset) {
337337
Construction::getUsedInterval(this, startBitOffset, endBitOffset)

csharp/ql/src/experimental/ir/implementation/raw/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ class ChiInstruction extends Instruction {
19641964
final Instruction getPartial() { result = getPartialOperand().getDef() }
19651965

19661966
/**
1967-
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`.
1967+
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`, relative to the start address of the total operand.
19681968
*/
19691969
final predicate getUpdatedInterval(int startBit, int endBit) {
19701970
Construction::getIntervalUpdatedByChi(this, startBit, endBit)

csharp/ql/src/experimental/ir/implementation/raw/Operand.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class NonPhiMemoryOperand extends NonPhiOperand, MemoryOperand, NonPhiMemoryOper
331331

332332
/**
333333
* Holds if the operand totally overlaps with its definition and consumes the
334-
* bit range `[startBitOffset, endBitOffset)`.
334+
* bit range `[startBitOffset, endBitOffset)` relative to the start address of the definition.
335335
*/
336336
predicate getUsedInterval(int startBitOffset, int endBitOffset) {
337337
Construction::getUsedInterval(this, startBitOffset, endBitOffset)

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/Instruction.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ class ChiInstruction extends Instruction {
19641964
final Instruction getPartial() { result = getPartialOperand().getDef() }
19651965

19661966
/**
1967-
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`.
1967+
* Gets the bit range `[startBit, endBit)` updated by the partial operand of this `ChiInstruction`, relative to the start address of the total operand.
19681968
*/
19691969
final predicate getUpdatedInterval(int startBit, int endBit) {
19701970
Construction::getIntervalUpdatedByChi(this, startBit, endBit)

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/Operand.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class NonPhiMemoryOperand extends NonPhiOperand, MemoryOperand, NonPhiMemoryOper
331331

332332
/**
333333
* Holds if the operand totally overlaps with its definition and consumes the
334-
* bit range `[startBitOffset, endBitOffset)`.
334+
* bit range `[startBitOffset, endBitOffset)` relative to the start address of the definition.
335335
*/
336336
predicate getUsedInterval(int startBitOffset, int endBitOffset) {
337337
Construction::getUsedInterval(this, startBitOffset, endBitOffset)

0 commit comments

Comments
 (0)